2025-08-14T21:36:37.2217716Z Current runner version: '2.328.0' 2025-08-14T21:36:37.2226539Z Runner name: 'i-0bbe1d599543d2365' 2025-08-14T21:36:37.2227223Z Runner group name: 'Default' 2025-08-14T21:36:37.2227875Z Machine name: 'EC2AMAZ-VK08H34' 2025-08-14T21:36:37.2230097Z ##[group]GITHUB_TOKEN Permissions 2025-08-14T21:36:37.2232402Z Contents: read 2025-08-14T21:36:37.2232749Z Metadata: read 2025-08-14T21:36:37.2233087Z ##[endgroup] 2025-08-14T21:36:37.2235553Z Secret source: Actions 2025-08-14T21:36:37.2236061Z Prepare workflow directory 2025-08-14T21:36:38.0872543Z Prepare all required actions 2025-08-14T21:36:38.0912794Z Getting action download info 2025-08-14T21:36:38.3440395Z Download action repository 'pytorch/test-infra@main' (SHA:83f58f391e939c10dcb8cb6d745e4cefa3b98a84) 2025-08-14T21:38:39.6108718Z Download action repository 'pytorch/pytorch@main' (SHA:3be70dc30e893b552fc0f23ca06cd8f7949b6d08) 2025-08-14T21:48:36.2295087Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T21:48:36.4353039Z Download action repository 'seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-14T21:48:36.7678481Z Getting action download info 2025-08-14T21:48:36.9063355Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-14T21:48:37.1452242Z Uses: pytorch/pytorch/.github/workflows/_win-test.yml@refs/heads/main (1fc683cf17c8c673044538d10266c00f92987be2) 2025-08-14T21:48:37.1456302Z ##[group] Inputs 2025-08-14T21:48:37.1456609Z build-environment: win-vs2022-cpu-py3 2025-08-14T21:48:37.1457001Z cuda-version: cpu 2025-08-14T21:48:37.1458160Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:48:37.1459267Z sync-tag: 2025-08-14T21:48:37.1460060Z timeout-minutes: 240 2025-08-14T21:48:37.1460590Z disable-monitor: false 2025-08-14T21:48:37.1460868Z monitor-log-interval: 5 2025-08-14T21:48:37.1461138Z monitor-data-collect-interval: 1 2025-08-14T21:48:37.1461444Z ##[endgroup] 2025-08-14T21:48:37.1461869Z Complete job name: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:48:37.2120098Z ##[group]Run git config --global core.longpaths true 2025-08-14T21:48:37.2120681Z git config --global core.longpaths true 2025-08-14T21:48:37.2121029Z git config --global core.symlinks true 2025-08-14T21:48:37.2121325Z  2025-08-14T21:48:37.2121679Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-08-14T21:48:37.2122235Z # the directory on Windows and prevent GHA from checking out as reported 2025-08-14T21:48:37.2122743Z # in https://github.com/actions/checkout/issues/1018 2025-08-14T21:48:37.2123118Z git config --global core.fsmonitor false 2025-08-14T21:48:37.2146042Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:48:37.2146768Z env: 2025-08-14T21:48:37.2146977Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:37.2147206Z ##[endgroup] 2025-08-14T21:48:38.7711046Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-14T21:48:38.7711492Z env: 2025-08-14T21:48:38.7711693Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:38.7711919Z ##[endgroup] 2025-08-14T21:48:38.7855712Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T21:48:38.7856471Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T21:48:38.7857147Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-14T21:48:38.7858950Z # handle tool 2025-08-14T21:48:38.7859348Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-14T21:48:38.7859801Z Foreach ($process In $processes) { 2025-08-14T21:48:38.7860083Z  Try { 2025-08-14T21:48:38.7860626Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-14T21:48:38.7861315Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-14T21:48:38.7861710Z  } 2025-08-14T21:48:38.7861890Z  Catch { 2025-08-14T21:48:38.7862205Z  Write-Output "No leftover $process process, continuing" 2025-08-14T21:48:38.7862572Z  Write-Output $_ 2025-08-14T21:48:38.7862896Z  } 2025-08-14T21:48:38.7863081Z } 2025-08-14T21:48:38.7863248Z  2025-08-14T21:48:38.7863708Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-14T21:48:38.7864262Z # for hung processes 2025-08-14T21:48:38.7864533Z Foreach ($process In $processes) { 2025-08-14T21:48:38.7864800Z  Try { 2025-08-14T21:48:38.7865249Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-14T21:48:38.7865700Z  } 2025-08-14T21:48:38.7865923Z  Catch { 2025-08-14T21:48:38.7866143Z  Write-Output $_ 2025-08-14T21:48:38.7866363Z  } 2025-08-14T21:48:38.7866556Z } 2025-08-14T21:48:38.7866767Z  2025-08-14T21:48:38.7866948Z Try { 2025-08-14T21:48:38.7867181Z  # Print all the processes for debugging 2025-08-14T21:48:38.7867751Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-14T21:48:38.7868182Z } 2025-08-14T21:48:38.7868353Z Catch { 2025-08-14T21:48:38.7868749Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-14T21:48:38.7869201Z  Write-Output $_ 2025-08-14T21:48:38.7869421Z } 2025-08-14T21:48:38.7885747Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:48:38.7886209Z env: 2025-08-14T21:48:38.7886409Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:38.7886642Z ##[endgroup] 2025-08-14T21:48:39.1670254Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:48:39.1730100Z Finished 2025-08-14T21:48:39.2012646Z No leftover python process, continuing 2025-08-14T21:48:39.2451996Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-14T21:48:39.2452957Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:9 char:5 2025-08-14T21:48:39.2453611Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:48:39.2454094Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2454683Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-14T21:48:39.2455612Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:48:39.2456453Z 2025-08-14T21:48:39.2474763Z No leftover ninja process, continuing 2025-08-14T21:48:39.2479822Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-14T21:48:39.2480530Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:9 char:5 2025-08-14T21:48:39.2481141Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:48:39.2481545Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2482070Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-14T21:48:39.2483715Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:48:39.2484393Z 2025-08-14T21:48:39.2494140Z No leftover cl process, continuing 2025-08-14T21:48:39.2504200Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-14T21:48:39.2504903Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:9 char:5 2025-08-14T21:48:39.2505469Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:48:39.2505875Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2506381Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-14T21:48:39.2507186Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:48:39.2507849Z 2025-08-14T21:48:39.2515866Z No leftover nvcc process, continuing 2025-08-14T21:48:39.2525609Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-14T21:48:39.2526281Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:9 char:5 2025-08-14T21:48:39.2526848Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:48:39.2527281Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2527750Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-14T21:48:39.2528591Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:48:39.2529174Z 2025-08-14T21:48:39.2555169Z No leftover sccache process, continuing 2025-08-14T21:48:39.2565000Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-14T21:48:39.2565705Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:9 char:5 2025-08-14T21:48:39.2566284Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:48:39.2566677Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2567197Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-14T21:48:39.2568073Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:48:39.2568656Z 2025-08-14T21:48:39.2576653Z No leftover git process, continuing 2025-08-14T21:48:39.2586162Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-14T21:48:39.2586839Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:9 char:5 2025-08-14T21:48:39.2587394Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:48:39.2587818Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2588296Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-14T21:48:39.2589086Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:48:39.2589688Z 2025-08-14T21:48:39.2934803Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:48:39.2935713Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:48:39.2936343Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:48:39.2936813Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:21 char:6 2025-08-14T21:48:39.2937385Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:48:39.2937806Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2938391Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:48:39.2939084Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:48:39.2939633Z 2025-08-14T21:48:39.2960138Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:48:39.2961013Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:48:39.2961614Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:48:39.2962099Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:21 char:6 2025-08-14T21:48:39.2962658Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:48:39.2963085Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2963600Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:48:39.2964298Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:48:39.2964843Z 2025-08-14T21:48:39.2986397Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:48:39.2987270Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:48:39.2987875Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:48:39.2988354Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:21 char:6 2025-08-14T21:48:39.2988912Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:48:39.2989346Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.2989770Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:48:39.2990456Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:48:39.2991016Z 2025-08-14T21:48:39.3014814Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:48:39.3015675Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:48:39.3016259Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:48:39.3016745Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:21 char:6 2025-08-14T21:48:39.3017307Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:48:39.3017732Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.3018166Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:48:39.3018844Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:48:39.3019407Z 2025-08-14T21:48:39.3046513Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:48:39.3047413Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:48:39.3048228Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:48:39.3048699Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:21 char:6 2025-08-14T21:48:39.3049273Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:48:39.3049701Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.3050139Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:48:39.3050820Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:48:39.3051371Z 2025-08-14T21:48:39.3074456Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:48:39.3075281Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:48:39.3075914Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:48:39.3076449Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:21 char:6 2025-08-14T21:48:39.3076992Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:48:39.3077426Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.3077851Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:48:39.3078539Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:48:39.3079088Z 2025-08-14T21:48:39.3101735Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:48:39.3102584Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:48:39.3103161Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:48:39.3103635Z At C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1:21 char:6 2025-08-14T21:48:39.3104200Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:48:39.3104619Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:48:39.3105052Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:48:39.3105771Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:48:39.3106368Z 2025-08-14T21:48:39.4978629Z Caption CommandLine ProcessId 2025-08-14T21:48:39.4979263Z 2025-08-14T21:48:39.4979589Z System Idle Process 0 2025-08-14T21:48:39.4980012Z 2025-08-14T21:48:39.4980703Z System 4 2025-08-14T21:48:39.4981106Z 2025-08-14T21:48:39.4981762Z Registry 168 2025-08-14T21:48:39.4982166Z 2025-08-14T21:48:39.4982940Z smss.exe 408 2025-08-14T21:48:39.4984221Z 2025-08-14T21:48:39.4984497Z csrss.exe 524 2025-08-14T21:48:39.4984874Z 2025-08-14T21:48:39.4985164Z csrss.exe 600 2025-08-14T21:48:39.4985562Z 2025-08-14T21:48:39.4986354Z wininit.exe 652 2025-08-14T21:48:39.4986758Z 2025-08-14T21:48:39.4987570Z winlogon.exe winlogon.exe 672 2025-08-14T21:48:39.4988062Z 2025-08-14T21:48:39.4988542Z services.exe 744 2025-08-14T21:48:39.4988953Z 2025-08-14T21:48:39.4990314Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-14T21:48:39.4990813Z 2025-08-14T21:48:39.4991336Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-14T21:48:39.4992222Z 2025-08-14T21:48:39.4992669Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-14T21:48:39.4993219Z 2025-08-14T21:48:39.4993637Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-14T21:48:39.4994151Z 2025-08-14T21:48:39.4994522Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-08-14T21:48:39.4995015Z 2025-08-14T21:48:39.4995657Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-08-14T21:48:39.4996186Z 2025-08-14T21:48:39.4996648Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-08-14T21:48:39.4997201Z 2025-08-14T21:48:39.4997756Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 460 2025-08-14T21:48:39.4998340Z 2025-08-14T21:48:39.4999391Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-08-14T21:48:39.5000130Z 2025-08-14T21:48:39.5000434Z dwm.exe "dwm.exe" 1136 2025-08-14T21:48:39.5000897Z 2025-08-14T21:48:39.5001492Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1232 2025-08-14T21:48:39.5002167Z 2025-08-14T21:48:39.5002632Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1292 2025-08-14T21:48:39.5003199Z 2025-08-14T21:48:39.5003657Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1356 2025-08-14T21:48:39.5004199Z 2025-08-14T21:48:39.5004756Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1372 2025-08-14T21:48:39.5005453Z 2025-08-14T21:48:39.5006997Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1428 2025-08-14T21:48:39.5007710Z 2025-08-14T21:48:39.5009523Z 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 1452 2025-08-14T21:48:39.5011481Z 2025-08-14T21:48:39.5012158Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1480 2025-08-14T21:48:39.5012733Z 2025-08-14T21:48:39.5013231Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1548 2025-08-14T21:48:39.5013913Z 2025-08-14T21:48:39.5014551Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1628 2025-08-14T21:48:39.5015244Z 2025-08-14T21:48:39.5015700Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1712 2025-08-14T21:48:39.5016270Z 2025-08-14T21:48:39.5016724Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1720 2025-08-14T21:48:39.5017403Z 2025-08-14T21:48:39.5017909Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1728 2025-08-14T21:48:39.5018510Z 2025-08-14T21:48:39.5019037Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1828 2025-08-14T21:48:39.5019615Z 2025-08-14T21:48:39.5020238Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1872 2025-08-14T21:48:39.5020869Z 2025-08-14T21:48:39.5021373Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1880 2025-08-14T21:48:39.5021966Z 2025-08-14T21:48:39.5022947Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1952 2025-08-14T21:48:39.5023614Z 2025-08-14T21:48:39.5024112Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2016 2025-08-14T21:48:39.5024701Z 2025-08-14T21:48:39.5025251Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1100 2025-08-14T21:48:39.5025876Z 2025-08-14T21:48:39.5026519Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1700 2025-08-14T21:48:39.5027243Z 2025-08-14T21:48:39.5027781Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2124 2025-08-14T21:48:39.5028417Z 2025-08-14T21:48:39.5029057Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2192 2025-08-14T21:48:39.5029789Z 2025-08-14T21:48:39.5030332Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2368 2025-08-14T21:48:39.5030906Z 2025-08-14T21:48:39.5031456Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2408 2025-08-14T21:48:39.5032138Z 2025-08-14T21:48:39.5032622Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2452 2025-08-14T21:48:39.5033194Z 2025-08-14T21:48:39.5033582Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2636 2025-08-14T21:48:39.5034088Z 2025-08-14T21:48:39.5034643Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2724 2025-08-14T21:48:39.5035290Z 2025-08-14T21:48:39.5035850Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2740 2025-08-14T21:48:39.5036518Z 2025-08-14T21:48:39.5037083Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2748 2025-08-14T21:48:39.5037768Z 2025-08-14T21:48:39.5038234Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2756 2025-08-14T21:48:39.5038801Z 2025-08-14T21:48:39.5039365Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2764 2025-08-14T21:48:39.5039985Z 2025-08-14T21:48:39.5040542Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2772 2025-08-14T21:48:39.5041272Z 2025-08-14T21:48:39.5041780Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2780 2025-08-14T21:48:39.5042358Z 2025-08-14T21:48:39.5042879Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2796 2025-08-14T21:48:39.5043451Z 2025-08-14T21:48:39.5044081Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3008 2025-08-14T21:48:39.5044808Z 2025-08-14T21:48:39.5045284Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3032 2025-08-14T21:48:39.5045880Z 2025-08-14T21:48:39.5046276Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3064 2025-08-14T21:48:39.5046865Z 2025-08-14T21:48:39.5047550Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 2224 2025-08-14T21:48:39.5048304Z 2025-08-14T21:48:39.5048845Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3080 2025-08-14T21:48:39.5049421Z 2025-08-14T21:48:39.5050022Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3536 2025-08-14T21:48:39.5050800Z 2025-08-14T21:48:39.5051213Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3648 2025-08-14T21:48:39.5051731Z 2025-08-14T21:48:39.5052296Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3148 2025-08-14T21:48:39.5053063Z 2025-08-14T21:48:39.5053551Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 1704 2025-08-14T21:48:39.5054179Z 2025-08-14T21:48:39.5055852Z 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 664 2025-08-14T21:48:39.5057603Z 2025-08-14T21:48:39.5058338Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 912 2025-08-14T21:48:39.5059253Z 2025-08-14T21:48:39.5059691Z vds.exe C:\Windows\System32\vds.exe 1636 2025-08-14T21:48:39.5060176Z 2025-08-14T21:48:39.5060727Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3572 2025-08-14T21:48:39.5061398Z 2025-08-14T21:48:39.5061790Z msdtc.exe C:\Windows\System32\msdtc.exe 4416 2025-08-14T21:48:39.5062258Z 2025-08-14T21:48:39.5062820Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4564 2025-08-14T21:48:39.5063477Z 2025-08-14T21:48:39.5063934Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4108 2025-08-14T21:48:39.5064539Z 2025-08-14T21:48:39.5065172Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 1492 2025-08-14T21:48:39.5065869Z 2025-08-14T21:48:39.5066430Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2868 2025-08-14T21:48:39.5067090Z 2025-08-14T21:48:39.5067563Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2136 2025-08-14T21:48:39.5068148Z 2025-08-14T21:48:39.5068732Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3944 2025-08-14T21:48:39.5069350Z 2025-08-14T21:48:39.5069876Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 2732 2025-08-14T21:48:39.5070668Z 2025-08-14T21:48:39.5071187Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 4928 2025-08-14T21:48:39.5071793Z 2025-08-14T21:48:39.5072487Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3248 2025-08-14T21:48:39.5073278Z 2025-08-14T21:48:39.5074841Z 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 2828 2025-08-14T21:48:39.5076631Z 2025-08-14T21:48:39.5077049Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1444 2025-08-14T21:48:39.5077550Z 2025-08-14T21:48:39.5078160Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1388 2025-08-14T21:48:39.5078867Z 2025-08-14T21:48:39.5079314Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4764 2025-08-14T21:48:39.5079875Z 2025-08-14T21:48:39.5080428Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 3384 2025-08-14T21:48:39.5081011Z 2025-08-14T21:48:39.5081498Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 2040 2025-08-14T21:48:39.5082212Z 2025-08-14T21:48:39.5082750Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 1792 2025-08-14T21:48:39.5083327Z 2025-08-14T21:48:39.5083734Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4544 2025-08-14T21:48:39.5084228Z 2025-08-14T21:48:39.5084756Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2144 2104 2480 2025-08-14T21:48:39.5085369Z 2025-08-14T21:48:39.5085774Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3600 2025-08-14T21:48:39.5086278Z 2025-08-14T21:48:39.5086694Z taskhostw.exe taskhostw.exe /RuntimeWide 4000 2025-08-14T21:48:39.5087183Z 2025-08-14T21:48:39.5087851Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1020 3776 2025-08-14T21:48:39.5088630Z 2025-08-14T21:48:39.5089027Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4164 2025-08-14T21:48:39.5089536Z 2025-08-14T21:48:39.5090115Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:580 1852 2025-08-14T21:48:39.5090859Z 2025-08-14T21:48:39.5091258Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4428 2025-08-14T21:48:39.5091761Z 2025-08-14T21:48:39.5092321Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 2392 2025-08-14T21:48:39.5092971Z 2025-08-14T21:48:39.5093612Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 2896 2025-08-14T21:48:39.5094393Z 2025-08-14T21:48:39.5095051Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 716 2025-08-14T21:48:39.5095772Z 2025-08-14T21:48:39.5096574Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent b80 -InterruptEvent 0 -NGENProcess bd0 -Pipe b58 -Comment "NGen Worker Process" 4556 2025-08-14T21:48:39.5097474Z 2025-08-14T21:48:39.5098338Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\db5aadab-882b-43ad-aacd-0d316d751dd4.ps1'" 2060 2025-08-14T21:48:39.5099279Z 2025-08-14T21:48:39.5099908Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 3260 2025-08-14T21:48:39.5101314Z 2025-08-14T21:48:39.5101747Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4720 2025-08-14T21:48:39.5102272Z 2025-08-14T21:48:39.5102277Z 2025-08-14T21:48:39.5102282Z 2025-08-14T21:48:39.5372536Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-08-14T21:48:39.5372957Z with: 2025-08-14T21:48:39.5373590Z github-secret: *** 2025-08-14T21:48:39.5376002Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start tests locally, change working folder to \actions-runner\_work\pytorch\pytorch\test, Activate miniconda and Visual Studio environment and set PYTHON_PATH, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build 2025-08-14T21:48:39.5378316Z activate-with-label: false 2025-08-14T21:48:39.5378563Z label: with-ssh 2025-08-14T21:48:39.5378874Z remove-existing-keys: true 2025-08-14T21:48:39.5379173Z fail-silently: true 2025-08-14T21:48:39.5379372Z env: 2025-08-14T21:48:39.5379557Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:39.5379774Z ##[endgroup] 2025-08-14T21:48:39.6892866Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-08-14T21:48:39.6895036Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-08-14T21:48:39.7118685Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-14T21:48:39.7119087Z with: 2025-08-14T21:48:39.7119274Z no-sudo: true 2025-08-14T21:48:39.7119479Z submodules: recursive 2025-08-14T21:48:39.7119686Z fetch-depth: 0 2025-08-14T21:48:39.7119875Z env: 2025-08-14T21:48:39.7120045Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:39.7120269Z ##[endgroup] 2025-08-14T21:48:39.7199484Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T21:48:39.7200462Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T21:48:39.7220321Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:48:39.7220761Z env: 2025-08-14T21:48:39.7220955Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:39.7221192Z ##[endgroup] 2025-08-14T21:48:39.7595719Z ##[group]Run # Use all available CPUs for fetching 2025-08-14T21:48:39.7596180Z # Use all available CPUs for fetching 2025-08-14T21:48:39.7596481Z cd "${GITHUB_WORKSPACE}" 2025-08-14T21:48:39.7596832Z git config --global fetch.parallel 0 2025-08-14T21:48:39.7597209Z git config --global submodule.fetchJobs 0 2025-08-14T21:48:39.7597558Z  2025-08-14T21:48:39.7597903Z # Clean workspace. The default checkout action should also do this, but 2025-08-14T21:48:39.7598371Z # do it here as well just in case 2025-08-14T21:48:39.7598697Z if [[ -d .git ]]; then 2025-08-14T21:48:39.7598980Z  if [ -z "${NO_SUDO}" ]; then 2025-08-14T21:48:39.7599297Z  sudo git clean -ffdx 2025-08-14T21:48:39.7599535Z  else 2025-08-14T21:48:39.7599774Z  git clean -ffdx 2025-08-14T21:48:39.7600028Z  fi 2025-08-14T21:48:39.7600376Z fi 2025-08-14T21:48:39.7619252Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:48:39.7619756Z env: 2025-08-14T21:48:39.7619934Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:39.7620171Z NO_SUDO: true 2025-08-14T21:48:39.7620359Z ##[endgroup] 2025-08-14T21:48:39.8499006Z ##[group]Run actions/checkout@v4 2025-08-14T21:48:39.8499276Z with: 2025-08-14T21:48:39.8499524Z ref: 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:48:39.8499822Z fetch-depth: 0 2025-08-14T21:48:39.8500033Z submodules: recursive 2025-08-14T21:48:39.8500247Z show-progress: false 2025-08-14T21:48:39.8500478Z repository: pytorch/pytorch 2025-08-14T21:48:39.8500833Z token: *** 2025-08-14T21:48:39.8501038Z ssh-strict: true 2025-08-14T21:48:39.8501232Z ssh-user: git 2025-08-14T21:48:39.8501454Z persist-credentials: true 2025-08-14T21:48:39.8501682Z clean: true 2025-08-14T21:48:39.8501895Z sparse-checkout-cone-mode: true 2025-08-14T21:48:39.8502181Z fetch-tags: false 2025-08-14T21:48:39.8502379Z lfs: false 2025-08-14T21:48:39.8502573Z set-safe-directory: true 2025-08-14T21:48:39.8502791Z env: 2025-08-14T21:48:39.8502975Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:48:39.8503187Z ##[endgroup] 2025-08-14T21:48:39.9799806Z Syncing repository: pytorch/pytorch 2025-08-14T21:48:39.9801071Z ##[group]Getting Git version info 2025-08-14T21:48:39.9801469Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:48:39.9896131Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-14T21:48:40.0105195Z git version 2.49.0.windows.1 2025-08-14T21:48:40.0149230Z ##[endgroup] 2025-08-14T21:48:40.0160381Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\03733333-8570-4974-bd2f-b1311b4370b1\.gitconfig' 2025-08-14T21:48:40.0178152Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\03733333-8570-4974-bd2f-b1311b4370b1' before making global git config changes 2025-08-14T21:48:40.0180503Z Adding repository directory to the temporary git global config as a safe directory 2025-08-14T21:48:40.0188252Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:48:40.0418097Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:48:40.0424362Z ##[group]Initializing the repository 2025-08-14T21:48:40.0434375Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:48:40.5501488Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-08-14T21:48:40.5548865Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-08-14T21:48:40.5800097Z ##[endgroup] 2025-08-14T21:48:40.5800493Z ##[group]Disabling automatic garbage collection 2025-08-14T21:48:40.5812347Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-08-14T21:48:40.6039651Z ##[endgroup] 2025-08-14T21:48:40.6040017Z ##[group]Setting up auth 2025-08-14T21:48:40.6054095Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-14T21:48:40.6283733Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-08-14T21:48:41.3682293Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-14T21:48:41.3962306Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-08-14T21:48:41.7948048Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-14T21:48:41.8182532Z ##[endgroup] 2025-08-14T21:48:41.8182965Z ##[group]Fetching the repository 2025-08-14T21:48:41.8197052Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-08-14T21:49:35.2819247Z From https://github.com/pytorch/pytorch 2025-08-14T21:49:35.2819830Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-08-14T21:49:35.2820431Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-08-14T21:49:35.2821092Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-08-14T21:49:35.2821744Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-08-14T21:49:35.2822449Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-08-14T21:49:35.2823161Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-08-14T21:49:35.2823750Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-08-14T21:49:35.2824310Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-08-14T21:49:35.2824835Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-08-14T21:49:35.2825351Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-08-14T21:49:35.2825917Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-08-14T21:49:35.2826599Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-08-14T21:49:35.2827238Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-08-14T21:49:35.2827742Z * [new branch] addVllmPin -> origin/addVllmPin 2025-08-14T21:49:35.2829075Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-08-14T21:49:35.2829614Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-08-14T21:49:35.2830097Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-08-14T21:49:35.2830655Z * [new branch] addsimde -> origin/addsimde 2025-08-14T21:49:35.2831127Z * [new branch] addvllpinnedfile -> origin/addvllpinnedfile 2025-08-14T21:49:35.2831713Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-08-14T21:49:35.2832254Z * [new branch] adi/skip_slow_tests -> origin/adi/skip_slow_tests 2025-08-14T21:49:35.2832732Z * [new branch] adi/test -> origin/adi/test 2025-08-14T21:49:35.2833174Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-08-14T21:49:35.2833671Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-08-14T21:49:35.2834176Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-08-14T21:49:35.2834683Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-08-14T21:49:35.2835191Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-08-14T21:49:35.2835670Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-08-14T21:49:35.2836204Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-08-14T21:49:35.2836754Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-08-14T21:49:35.2837323Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-08-14T21:49:35.2837839Z * [new branch] alt-disable -> origin/alt-disable 2025-08-14T21:49:35.2838537Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-08-14T21:49:35.2839156Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-08-14T21:49:35.2839818Z * [new branch] angelayi/assert_tensor_metadata_device -> origin/angelayi/assert_tensor_metadata_device 2025-08-14T21:49:35.2840452Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-08-14T21:49:35.2840983Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-08-14T21:49:35.2841605Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-08-14T21:49:35.2842239Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-08-14T21:49:35.2842805Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-08-14T21:49:35.2843454Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-08-14T21:49:35.2843954Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-08-14T21:49:35.2844422Z * [new branch] angelayi/docs -> origin/angelayi/docs 2025-08-14T21:49:35.2844891Z * [new branch] angelayi/docs2 -> origin/angelayi/docs2 2025-08-14T21:49:35.2845363Z * [new branch] angelayi/fix_pt2 -> origin/angelayi/fix_pt2 2025-08-14T21:49:35.3243235Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-08-14T21:49:35.3243820Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-08-14T21:49:35.3244338Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-08-14T21:49:35.3245344Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-08-14T21:49:35.3245888Z * [new branch] angelayi/save_error -> origin/angelayi/save_error 2025-08-14T21:49:35.3246398Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-08-14T21:49:35.3246989Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-08-14T21:49:35.3247677Z * [new branch] angelayi/tensor_nn_module_meta -> origin/angelayi/tensor_nn_module_meta 2025-08-14T21:49:35.3248258Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-08-14T21:49:35.3248749Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-08-14T21:49:35.3249248Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-08-14T21:49:35.3249778Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-08-14T21:49:35.3250370Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-08-14T21:49:35.3251018Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-08-14T21:49:35.3251591Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-08-14T21:49:35.3252088Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-08-14T21:49:35.3252626Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-08-14T21:49:35.3253148Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-08-14T21:49:35.3253632Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-08-14T21:49:35.3254107Z * [new branch] atalman-patch-8 -> origin/atalman-patch-8 2025-08-14T21:49:35.3254654Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-08-14T21:49:35.3255320Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-08-14T21:49:35.3255827Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-08-14T21:49:35.3256349Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-08-14T21:49:35.3256989Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-08-14T21:49:35.3257605Z * [new branch] backupvllm -> origin/backupvllm 2025-08-14T21:49:35.3258048Z * [new branch] base/1.5 -> origin/base/1.5 2025-08-14T21:49:35.3258635Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-08-14T21:49:35.3259289Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-08-14T21:49:35.3259878Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-08-14T21:49:35.3260635Z * [new branch] benjaminglass1/mark-large-tensor-tests-serial -> origin/benjaminglass1/mark-large-tensor-tests-serial 2025-08-14T21:49:35.3261373Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-08-14T21:49:35.3261876Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-08-14T21:49:35.3262346Z * [new branch] bf/cg-log -> origin/bf/cg-log 2025-08-14T21:49:35.3262802Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-08-14T21:49:35.3263309Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-08-14T21:49:35.3263799Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-08-14T21:49:35.3264483Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-08-14T21:49:35.3265565Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-08-14T21:49:35.3266414Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-08-14T21:49:35.3267014Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-08-14T21:49:35.3267611Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-08-14T21:49:35.3268163Z * [new branch] bf/improve-kernel-bench -> origin/bf/improve-kernel-bench 2025-08-14T21:49:35.3268709Z * [new branch] bf/kernel-benchmark -> origin/bf/kernel-benchmark 2025-08-14T21:49:35.3269218Z * [new branch] bf/partition-doc -> origin/bf/partition-doc 2025-08-14T21:49:35.3688394Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-08-14T21:49:35.3689026Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-08-14T21:49:35.3689577Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-08-14T21:49:35.3690114Z * [new branch] bf/skip-asserts -> origin/bf/skip-asserts 2025-08-14T21:49:35.3690573Z * [new branch] bf16adamw -> origin/bf16adamw 2025-08-14T21:49:35.3691092Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-08-14T21:49:35.3691682Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-08-14T21:49:35.3692246Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-08-14T21:49:35.3692809Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-08-14T21:49:35.3693510Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-08-14T21:49:35.3694068Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-08-14T21:49:35.3694643Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-08-14T21:49:35.3695197Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-08-14T21:49:35.3695817Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-08-14T21:49:35.3696420Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-08-14T21:49:35.3696975Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-08-14T21:49:35.3697548Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-08-14T21:49:35.3698114Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-08-14T21:49:35.3698710Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-08-14T21:49:35.3699273Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-08-14T21:49:35.3699835Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-08-14T21:49:35.3700403Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-08-14T21:49:35.3700932Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-08-14T21:49:35.3701431Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-08-14T21:49:35.3701976Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-08-14T21:49:35.3703017Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-08-14T21:49:35.3703598Z * [new branch] brister/flatten_contig -> origin/brister/flatten_contig 2025-08-14T21:49:35.3704143Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-08-14T21:49:35.3704796Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-08-14T21:49:35.3705364Z * [new branch] c57382a49 -> origin/c57382a49 2025-08-14T21:49:35.3705812Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-08-14T21:49:35.3706278Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-08-14T21:49:35.3707207Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-08-14T21:49:35.3708286Z * [new branch] camyll/test_precommit_hooks_lintrunner -> origin/camyll/test_precommit_hooks_lintrunner 2025-08-14T21:49:35.3709056Z * [new branch] camyllh/cherrypick-151547-for-release28 -> origin/camyllh/cherrypick-151547-for-release28 2025-08-14T21:49:35.3709762Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-08-14T21:49:35.3710493Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-08-14T21:49:35.3711234Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-08-14T21:49:35.3711983Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-08-14T21:49:35.3712715Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-08-14T21:49:35.3713563Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4044255Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4045012Z * [new branch] cherry-pick-156876-by-pytorch_bot_bot_ -> origin/cherry-pick-156876-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4045769Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4046516Z * [new branch] cherry-pick-157014-by-pytorch_bot_bot_ -> origin/cherry-pick-157014-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4047251Z * [new branch] cherry-pick-157179-by-pytorch_bot_bot_ -> origin/cherry-pick-157179-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4048064Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4048886Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4049717Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4050467Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4051203Z * [new branch] cherry-pick-157600-by-pytorch_bot_bot_ -> origin/cherry-pick-157600-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4051960Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4052712Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4053463Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4054302Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4055134Z * [new branch] cherry-pick-157985-by-pytorch_bot_bot_ -> origin/cherry-pick-157985-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4055912Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4056638Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4057370Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4058092Z * [new branch] cherry-pick-158295-by-pytorch_bot_bot_ -> origin/cherry-pick-158295-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4058818Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4059562Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4060285Z * [new branch] cherry-pick-158572-by-pytorch_bot_bot_ -> origin/cherry-pick-158572-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4060947Z * [new branch] cherry-pick-158595 -> origin/cherry-pick-158595 2025-08-14T21:49:35.4061653Z * [new branch] cherry-pick-159181-by-pytorch_bot_bot_ -> origin/cherry-pick-159181-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4062392Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4063136Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-08-14T21:49:35.4063762Z * [new branch] cherry-pick-PR-158746 -> origin/cherry-pick-PR-158746 2025-08-14T21:49:35.4064557Z * [new branch] cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc -> origin/cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc 2025-08-14T21:49:35.4065401Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-08-14T21:49:35.4065926Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-08-14T21:49:35.4066489Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-08-14T21:49:35.4067124Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-08-14T21:49:35.4067679Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-08-14T21:49:35.4068115Z * [new branch] cleantest1 -> origin/cleantest1 2025-08-14T21:49:35.4068621Z * [new branch] codex-testing -> origin/codex-testing 2025-08-14T21:49:35.4069413Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-08-14T21:49:35.4070305Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-08-14T21:49:35.4438981Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-08-14T21:49:35.4439813Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-08-14T21:49:35.4440632Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-08-14T21:49:35.4441343Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-08-14T21:49:35.4442288Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-08-14T21:49:35.4443304Z * [new branch] codex/verify-torch-output-and-log-results -> origin/codex/verify-torch-output-and-log-results 2025-08-14T21:49:35.4444118Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-08-14T21:49:35.4444751Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-08-14T21:49:35.4445250Z * [new branch] context_test -> origin/context_test 2025-08-14T21:49:35.4445718Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-08-14T21:49:35.4446202Z * [new branch] copilot/fix-159257 -> origin/copilot/fix-159257 2025-08-14T21:49:35.4446656Z * [new branch] copy_graph -> origin/copy_graph 2025-08-14T21:49:35.4447123Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-08-14T21:49:35.4447686Z * [new branch] csl/3_proc_sm -> origin/csl/3_proc_sm 2025-08-14T21:49:35.4448273Z * [new branch] csl/add_file_merge_conflict_csv -> origin/csl/add_file_merge_conflict_csv 2025-08-14T21:49:35.4448832Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-08-14T21:49:35.4449362Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-08-14T21:49:35.4449899Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-08-14T21:49:35.4450443Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-08-14T21:49:35.4450991Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-08-14T21:49:35.4451534Z * [new branch] csl/executorch_docker_fail -> origin/csl/executorch_docker_fail 2025-08-14T21:49:35.4452060Z * [new branch] csl/fix_check_alerts -> origin/csl/fix_check_alerts 2025-08-14T21:49:35.4452622Z * [new branch] csl/katex -> origin/csl/katex 2025-08-14T21:49:35.4453077Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-08-14T21:49:35.4453761Z * [new branch] csl/lintrunner_changed_files_removed -> origin/csl/lintrunner_changed_files_removed 2025-08-14T21:49:35.4454488Z * [new branch] csl/lintrunner_changed_files_removed_test -> origin/csl/lintrunner_changed_files_removed_test 2025-08-14T21:49:35.4455130Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-08-14T21:49:35.4455615Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-08-14T21:49:35.4456102Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-08-14T21:49:35.4456604Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-08-14T21:49:35.4457085Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-08-14T21:49:35.4457643Z * [new branch] csl/remove_unused_docker_images -> origin/csl/remove_unused_docker_images 2025-08-14T21:49:35.4458176Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-08-14T21:49:35.4458775Z * [new branch] csl/rocm_upload_artifacts_while_running -> origin/csl/rocm_upload_artifacts_while_running 2025-08-14T21:49:35.4459463Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-08-14T21:49:35.4459909Z * [new branch] csl/td_dynamo -> origin/csl/td_dynamo 2025-08-14T21:49:35.4460436Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-08-14T21:49:35.4460980Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-08-14T21:49:35.4461450Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-08-14T21:49:35.4461997Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-08-14T21:49:35.4462461Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-08-14T21:49:35.4462940Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-08-14T21:49:35.4463441Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-08-14T21:49:35.4879781Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-08-14T21:49:35.4880281Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-08-14T21:49:35.4880754Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-08-14T21:49:35.4881229Z * [new branch] d4l3k/wait_stream -> origin/d4l3k/wait_stream 2025-08-14T21:49:35.4881752Z * [new branch] dcp-safetensor-test-fix -> origin/dcp-safetensor-test-fix 2025-08-14T21:49:35.4882264Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-08-14T21:49:35.4882715Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-08-14T21:49:35.4883382Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-08-14T21:49:35.4884118Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-08-14T21:49:35.4884749Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-08-14T21:49:35.4885375Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-08-14T21:49:35.4885902Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-08-14T21:49:35.4886365Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-08-14T21:49:35.4887060Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-08-14T21:49:35.4887597Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-08-14T21:49:35.4888164Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-08-14T21:49:35.4888844Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-08-14T21:49:35.4889513Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-08-14T21:49:35.4890043Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-08-14T21:49:35.4890590Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-08-14T21:49:35.4891173Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-08-14T21:49:35.4891686Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-08-14T21:49:35.4892183Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-08-14T21:49:35.4892640Z * [new branch] disable -> origin/disable 2025-08-14T21:49:35.4893214Z * [new branch] divyanshk-log-api-usage-datapipes-1 -> origin/divyanshk-log-api-usage-datapipes-1 2025-08-14T21:49:35.4893818Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-08-14T21:49:35.4894317Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-08-14T21:49:35.4894854Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-08-14T21:49:35.4895429Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-08-14T21:49:35.4895998Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-08-14T21:49:35.4897148Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-08-14T21:49:35.4897715Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-08-14T21:49:35.4898193Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-08-14T21:49:35.4898644Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-08-14T21:49:35.4899086Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-08-14T21:49:35.4899598Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-08-14T21:49:35.4900138Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-08-14T21:49:35.4900780Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-08-14T21:49:35.4901544Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-08-14T21:49:35.4902275Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-08-14T21:49:35.4902958Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-08-14T21:49:35.4903623Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-08-14T21:49:35.4904362Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-08-14T21:49:35.4905138Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-08-14T21:49:35.5283897Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-08-14T21:49:35.5284625Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-08-14T21:49:35.5285371Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-08-14T21:49:35.5286022Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-08-14T21:49:35.5286624Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-08-14T21:49:35.5287394Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-08-14T21:49:35.5288110Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-08-14T21:49:35.5288693Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-08-14T21:49:35.5289408Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-08-14T21:49:35.5290122Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-08-14T21:49:35.5290748Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-08-14T21:49:35.5291411Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-08-14T21:49:35.5292133Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-08-14T21:49:35.5292894Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-08-14T21:49:35.5293654Z * [new branch] exclamaforte/update-pandas-numpy-ci -> origin/exclamaforte/update-pandas-numpy-ci 2025-08-14T21:49:35.5294322Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-08-14T21:49:35.5294813Z * [new branch] exec -> origin/exec 2025-08-14T21:49:35.5295377Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-08-14T21:49:35.5295879Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-08-14T21:49:35.5296369Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-08-14T21:49:35.5296838Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-08-14T21:49:35.5297302Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-08-14T21:49:35.5297769Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-08-14T21:49:35.5298222Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-08-14T21:49:35.5298691Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-08-14T21:49:35.5299142Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-08-14T21:49:35.5299616Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-08-14T21:49:35.5300089Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-08-14T21:49:35.5300539Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-08-14T21:49:35.5301004Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-08-14T21:49:35.5301460Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-08-14T21:49:35.5301928Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-08-14T21:49:35.5302396Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-08-14T21:49:35.5302856Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-08-14T21:49:35.5303314Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-08-14T21:49:35.5303863Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-08-14T21:49:35.5304330Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-08-14T21:49:35.5304794Z * [new branch] export-D78047846 -> origin/export-D78047846 2025-08-14T21:49:35.5305259Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-08-14T21:49:35.5305723Z * [new branch] export-D78363609 -> origin/export-D78363609 2025-08-14T21:49:35.5306180Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-08-14T21:49:35.5306663Z * [new branch] export-D78431075 -> origin/export-D78431075 2025-08-14T21:49:35.5307116Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-08-14T21:49:35.5307582Z * [new branch] export-D78458745 -> origin/export-D78458745 2025-08-14T21:49:35.5308052Z * [new branch] export-D78524147 -> origin/export-D78524147 2025-08-14T21:49:35.5698687Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-08-14T21:49:35.5699206Z * [new branch] export-D78588406 -> origin/export-D78588406 2025-08-14T21:49:35.5699675Z * [new branch] export-D78691422 -> origin/export-D78691422 2025-08-14T21:49:35.5700146Z * [new branch] export-D78758466 -> origin/export-D78758466 2025-08-14T21:49:35.5700612Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-08-14T21:49:35.5701073Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-08-14T21:49:35.5701531Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-08-14T21:49:35.5701989Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-08-14T21:49:35.5702590Z * [new branch] export-D78894142 -> origin/export-D78894142 2025-08-14T21:49:35.5703062Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-08-14T21:49:35.5703518Z * [new branch] export-D78907485 -> origin/export-D78907485 2025-08-14T21:49:35.5703989Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-08-14T21:49:35.5704455Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-08-14T21:49:35.5704945Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-08-14T21:49:35.5705424Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-08-14T21:49:35.5705893Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-08-14T21:49:35.5706373Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-08-14T21:49:35.5706846Z * [new branch] export-D78957974 -> origin/export-D78957974 2025-08-14T21:49:35.5707324Z * [new branch] export-D78979812 -> origin/export-D78979812 2025-08-14T21:49:35.5707788Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-08-14T21:49:35.5708268Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-08-14T21:49:35.5708749Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-08-14T21:49:35.5709214Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-08-14T21:49:35.5709692Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-08-14T21:49:35.5710154Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-08-14T21:49:35.5710632Z * [new branch] export-D79647167 -> origin/export-D79647167 2025-08-14T21:49:35.5711214Z * [new branch] export-D79751098 -> origin/export-D79751098 2025-08-14T21:49:35.5711676Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-08-14T21:49:35.5712161Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-08-14T21:49:35.5712686Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-08-14T21:49:35.5713192Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-08-14T21:49:35.5714071Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-08-14T21:49:35.5714904Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-08-14T21:49:35.5715406Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-08-14T21:49:35.5715861Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-08-14T21:49:35.5716335Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-08-14T21:49:35.5716734Z * [new branch] fca -> origin/fca 2025-08-14T21:49:35.5717141Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-08-14T21:49:35.5717544Z * [new branch] fca5 -> origin/fca5 2025-08-14T21:49:35.5718053Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-08-14T21:49:35.5719035Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-08-14T21:49:35.5719792Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-08-14T21:49:35.5720628Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-08-14T21:49:35.5721392Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-08-14T21:49:35.5721897Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-08-14T21:49:35.5722391Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-08-14T21:49:35.5722872Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-08-14T21:49:35.8071464Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-08-14T21:49:35.8072064Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-08-14T21:49:35.8072625Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-08-14T21:49:35.8073143Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-08-14T21:49:35.8073654Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-08-14T21:49:35.8074224Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-08-14T21:49:35.8074758Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-08-14T21:49:35.8075375Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-08-14T21:49:35.8075875Z * [new branch] fix -> origin/fix 2025-08-14T21:49:35.8076368Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-08-14T21:49:35.8076910Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-08-14T21:49:35.8077385Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-08-14T21:49:35.8077900Z * [new branch] fix-distributed-warning -> origin/fix-distributed-warning 2025-08-14T21:49:35.8078488Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-08-14T21:49:35.8079221Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-08-14T21:49:35.8079742Z * [new branch] fix_153389 -> origin/fix_153389 2025-08-14T21:49:35.8080168Z * [new branch] fixes-triage -> origin/fixes-triage 2025-08-14T21:49:35.8080645Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-08-14T21:49:35.8081160Z * [new branch] flex-flash -> origin/flex-flash 2025-08-14T21:49:35.8081688Z * [new branch] flex-lowering -> origin/flex-lowering 2025-08-14T21:49:35.8082137Z * [new branch] flex-warning -> origin/flex-warning 2025-08-14T21:49:35.8082652Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-08-14T21:49:35.8083176Z * [new branch] flex_flash -> origin/flex_flash 2025-08-14T21:49:35.8083690Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-08-14T21:49:35.8084321Z * [new branch] fmassa/try_fix_ac_tag_propagation -> origin/fmassa/try_fix_ac_tag_propagation 2025-08-14T21:49:35.8084875Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-08-14T21:49:35.8085322Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-08-14T21:49:35.8085752Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-08-14T21:49:35.8086250Z * [new branch] fx_cpp -> origin/fx_cpp 2025-08-14T21:49:35.8086669Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-08-14T21:49:35.8087180Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-08-14T21:49:35.8087857Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-08-14T21:49:35.8088337Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-08-14T21:49:35.8088784Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-08-14T21:49:35.8089225Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-08-14T21:49:35.8089737Z * [new branch] gh/ColinPeppler/72/base -> origin/gh/ColinPeppler/72/base 2025-08-14T21:49:35.8090286Z * [new branch] gh/ColinPeppler/72/head -> origin/gh/ColinPeppler/72/head 2025-08-14T21:49:35.8090833Z * [new branch] gh/ColinPeppler/72/orig -> origin/gh/ColinPeppler/72/orig 2025-08-14T21:49:35.8091364Z * [new branch] gh/ColinPeppler/77/base -> origin/gh/ColinPeppler/77/base 2025-08-14T21:49:35.8091907Z * [new branch] gh/ColinPeppler/77/head -> origin/gh/ColinPeppler/77/head 2025-08-14T21:49:35.8092442Z * [new branch] gh/ColinPeppler/77/orig -> origin/gh/ColinPeppler/77/orig 2025-08-14T21:49:35.8093032Z * [new branch] gh/ColinPeppler/78/base -> origin/gh/ColinPeppler/78/base 2025-08-14T21:49:35.8093618Z * [new branch] gh/ColinPeppler/78/head -> origin/gh/ColinPeppler/78/head 2025-08-14T21:49:35.8094204Z * [new branch] gh/ColinPeppler/78/orig -> origin/gh/ColinPeppler/78/orig 2025-08-14T21:49:35.8094727Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-08-14T21:49:35.8095220Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-08-14T21:49:35.8095724Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-08-14T21:49:35.8547372Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-08-14T21:49:35.8547896Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-08-14T21:49:35.8548578Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-08-14T21:49:35.8549134Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-08-14T21:49:35.8549628Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-08-14T21:49:35.8550180Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-08-14T21:49:35.8550759Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-08-14T21:49:35.8551259Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-08-14T21:49:35.8551773Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-08-14T21:49:35.8552296Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-08-14T21:49:35.8552876Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-08-14T21:49:35.8553339Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-08-14T21:49:35.8553857Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-08-14T21:49:35.8554365Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-08-14T21:49:35.8554846Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-08-14T21:49:35.8555320Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-08-14T21:49:35.8555788Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-08-14T21:49:35.8556263Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-08-14T21:49:35.8556722Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-08-14T21:49:35.8557750Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-08-14T21:49:35.8558260Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-08-14T21:49:35.8558730Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-08-14T21:49:35.8559218Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-08-14T21:49:35.8559686Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-08-14T21:49:35.8560174Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-08-14T21:49:35.8560642Z * [new branch] gh/H-Huang/192/base -> origin/gh/H-Huang/192/base 2025-08-14T21:49:35.8561118Z * [new branch] gh/H-Huang/192/head -> origin/gh/H-Huang/192/head 2025-08-14T21:49:35.8561590Z * [new branch] gh/H-Huang/192/orig -> origin/gh/H-Huang/192/orig 2025-08-14T21:49:35.8562074Z * [new branch] gh/H-Huang/195/base -> origin/gh/H-Huang/195/base 2025-08-14T21:49:35.8562571Z * [new branch] gh/H-Huang/195/head -> origin/gh/H-Huang/195/head 2025-08-14T21:49:35.8563042Z * [new branch] gh/H-Huang/195/orig -> origin/gh/H-Huang/195/orig 2025-08-14T21:49:35.8563555Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-08-14T21:49:35.8564045Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-08-14T21:49:35.8564508Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-08-14T21:49:35.8564984Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-08-14T21:49:35.8565455Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-08-14T21:49:35.8565991Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-08-14T21:49:35.8566569Z * [new branch] gh/H-Huang/198/base -> origin/gh/H-Huang/198/base 2025-08-14T21:49:35.8567040Z * [new branch] gh/H-Huang/198/head -> origin/gh/H-Huang/198/head 2025-08-14T21:49:35.8567510Z * [new branch] gh/H-Huang/198/orig -> origin/gh/H-Huang/198/orig 2025-08-14T21:49:35.8567982Z * [new branch] gh/H-Huang/199/base -> origin/gh/H-Huang/199/base 2025-08-14T21:49:35.8568456Z * [new branch] gh/H-Huang/199/head -> origin/gh/H-Huang/199/head 2025-08-14T21:49:35.8568924Z * [new branch] gh/H-Huang/199/orig -> origin/gh/H-Huang/199/orig 2025-08-14T21:49:35.8569385Z * [new branch] gh/H-Huang/200/base -> origin/gh/H-Huang/200/base 2025-08-14T21:49:35.8569851Z * [new branch] gh/H-Huang/200/head -> origin/gh/H-Huang/200/head 2025-08-14T21:49:35.8570329Z * [new branch] gh/H-Huang/200/orig -> origin/gh/H-Huang/200/orig 2025-08-14T21:49:35.8570804Z * [new branch] gh/H-Huang/201/base -> origin/gh/H-Huang/201/base 2025-08-14T21:49:35.8974744Z * [new branch] gh/H-Huang/201/head -> origin/gh/H-Huang/201/head 2025-08-14T21:49:35.8975251Z * [new branch] gh/H-Huang/201/orig -> origin/gh/H-Huang/201/orig 2025-08-14T21:49:35.8975740Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-08-14T21:49:35.8976208Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-08-14T21:49:35.8976684Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-08-14T21:49:35.8977156Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-08-14T21:49:35.8977626Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-08-14T21:49:35.8978262Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-08-14T21:49:35.8978792Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-08-14T21:49:35.8979283Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-08-14T21:49:35.8979757Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-08-14T21:49:35.8980241Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-08-14T21:49:35.8980713Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-08-14T21:49:35.8981185Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-08-14T21:49:35.8981651Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-08-14T21:49:35.8982122Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-08-14T21:49:35.8982592Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-08-14T21:49:35.8983071Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-08-14T21:49:35.8983531Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-08-14T21:49:35.8984047Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-08-14T21:49:35.8984566Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-08-14T21:49:35.8985040Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-08-14T21:49:35.8985519Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-08-14T21:49:35.8985987Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-08-14T21:49:35.8986453Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-08-14T21:49:35.8987601Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-08-14T21:49:35.8988072Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-08-14T21:49:35.8988553Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-08-14T21:49:35.8989027Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-08-14T21:49:35.8989543Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-08-14T21:49:35.8990188Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-08-14T21:49:35.8990726Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-08-14T21:49:35.8991271Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-08-14T21:49:35.8991816Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-08-14T21:49:35.8992361Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-08-14T21:49:35.8992904Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-08-14T21:49:35.8993435Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-08-14T21:49:35.8993976Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-08-14T21:49:35.8994505Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-08-14T21:49:35.8995052Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-08-14T21:49:35.8995635Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-08-14T21:49:35.8996225Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-08-14T21:49:35.8996857Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-08-14T21:49:35.8997395Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-08-14T21:49:35.8997947Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-08-14T21:49:35.8998482Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-08-14T21:49:35.9410779Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-08-14T21:49:35.9411342Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-08-14T21:49:35.9411912Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-08-14T21:49:35.9412459Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-08-14T21:49:35.9413016Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-08-14T21:49:35.9413555Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-08-14T21:49:35.9414088Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-08-14T21:49:35.9414635Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-08-14T21:49:35.9415177Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-08-14T21:49:35.9415713Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-08-14T21:49:35.9416253Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-08-14T21:49:35.9416784Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-08-14T21:49:35.9417521Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-08-14T21:49:35.9418147Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-08-14T21:49:35.9418731Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-08-14T21:49:35.9419394Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-08-14T21:49:35.9420006Z * [new branch] gh/IvanKobzarev/129/base -> origin/gh/IvanKobzarev/129/base 2025-08-14T21:49:35.9420629Z * [new branch] gh/IvanKobzarev/129/head -> origin/gh/IvanKobzarev/129/head 2025-08-14T21:49:35.9421211Z * [new branch] gh/IvanKobzarev/129/orig -> origin/gh/IvanKobzarev/129/orig 2025-08-14T21:49:35.9421742Z * [new branch] gh/IvanKobzarev/130/base -> origin/gh/IvanKobzarev/130/base 2025-08-14T21:49:35.9422286Z * [new branch] gh/IvanKobzarev/130/head -> origin/gh/IvanKobzarev/130/head 2025-08-14T21:49:35.9422833Z * [new branch] gh/IvanKobzarev/130/orig -> origin/gh/IvanKobzarev/130/orig 2025-08-14T21:49:35.9423381Z * [new branch] gh/IvanKobzarev/131/base -> origin/gh/IvanKobzarev/131/base 2025-08-14T21:49:35.9423914Z * [new branch] gh/IvanKobzarev/131/head -> origin/gh/IvanKobzarev/131/head 2025-08-14T21:49:35.9424453Z * [new branch] gh/IvanKobzarev/131/orig -> origin/gh/IvanKobzarev/131/orig 2025-08-14T21:49:35.9425090Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-08-14T21:49:35.9425693Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-08-14T21:49:35.9426257Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-08-14T21:49:35.9426848Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-08-14T21:49:35.9428023Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-08-14T21:49:35.9428613Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-08-14T21:49:35.9429223Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-08-14T21:49:35.9429806Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-08-14T21:49:35.9430402Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-08-14T21:49:35.9430993Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-08-14T21:49:35.9431577Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-08-14T21:49:35.9432174Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-08-14T21:49:35.9432748Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-08-14T21:49:35.9433371Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-08-14T21:49:35.9433964Z * [new branch] gh/NikhilAPatel/16/base -> origin/gh/NikhilAPatel/16/base 2025-08-14T21:49:35.9434525Z * [new branch] gh/NikhilAPatel/16/head -> origin/gh/NikhilAPatel/16/head 2025-08-14T21:49:35.9435139Z * [new branch] gh/NikhilAPatel/16/orig -> origin/gh/NikhilAPatel/16/orig 2025-08-14T21:49:35.9435700Z * [new branch] gh/NikhilAPatel/18/base -> origin/gh/NikhilAPatel/18/base 2025-08-14T21:49:35.9436277Z * [new branch] gh/NikhilAPatel/18/head -> origin/gh/NikhilAPatel/18/head 2025-08-14T21:49:35.9436888Z * [new branch] gh/NikhilAPatel/18/orig -> origin/gh/NikhilAPatel/18/orig 2025-08-14T21:49:35.9896972Z * [new branch] gh/NikhilAPatel/19/base -> origin/gh/NikhilAPatel/19/base 2025-08-14T21:49:35.9897827Z * [new branch] gh/NikhilAPatel/19/head -> origin/gh/NikhilAPatel/19/head 2025-08-14T21:49:35.9898409Z * [new branch] gh/NikhilAPatel/19/orig -> origin/gh/NikhilAPatel/19/orig 2025-08-14T21:49:35.9899014Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-08-14T21:49:35.9899697Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-08-14T21:49:35.9900296Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-08-14T21:49:35.9900888Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-08-14T21:49:35.9901488Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-08-14T21:49:35.9902039Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-08-14T21:49:35.9902625Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-08-14T21:49:35.9903185Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-08-14T21:49:35.9903772Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-08-14T21:49:35.9904349Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-08-14T21:49:35.9904881Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-08-14T21:49:35.9905486Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-08-14T21:49:35.9906031Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-08-14T21:49:35.9906558Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-08-14T21:49:35.9907111Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-08-14T21:49:35.9907703Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-08-14T21:49:35.9908257Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-08-14T21:49:35.9908763Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-08-14T21:49:35.9909283Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-08-14T21:49:35.9909804Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-08-14T21:49:35.9910303Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-08-14T21:49:35.9910820Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-08-14T21:49:35.9911356Z * [new branch] gh/PaliC/15/base -> origin/gh/PaliC/15/base 2025-08-14T21:49:35.9911964Z * [new branch] gh/PaliC/15/head -> origin/gh/PaliC/15/head 2025-08-14T21:49:35.9912492Z * [new branch] gh/PaliC/15/orig -> origin/gh/PaliC/15/orig 2025-08-14T21:49:35.9912975Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-08-14T21:49:35.9913530Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-08-14T21:49:35.9914021Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-08-14T21:49:35.9914536Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-08-14T21:49:35.9915075Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-08-14T21:49:35.9915569Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-08-14T21:49:35.9916081Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-08-14T21:49:35.9916590Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-08-14T21:49:35.9917294Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-08-14T21:49:35.9917808Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-08-14T21:49:35.9918321Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-08-14T21:49:35.9918845Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-08-14T21:49:35.9919338Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-08-14T21:49:35.9919865Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-08-14T21:49:35.9920377Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-08-14T21:49:35.9920863Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-08-14T21:49:35.9921393Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-08-14T21:49:35.9921889Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-08-14T21:49:35.9922457Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-08-14T21:49:35.9923029Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-08-14T21:49:36.0348583Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-08-14T21:49:36.0349185Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-08-14T21:49:36.0349711Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-08-14T21:49:36.0350253Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-08-14T21:49:36.0350782Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-08-14T21:49:36.0351289Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-08-14T21:49:36.0351963Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-08-14T21:49:36.0352455Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-08-14T21:49:36.0353001Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-08-14T21:49:36.0353518Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-08-14T21:49:36.0354039Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-08-14T21:49:36.0354650Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-08-14T21:49:36.0355203Z * [new branch] gh/PaulZhang12/18/base -> origin/gh/PaulZhang12/18/base 2025-08-14T21:49:36.0355775Z * [new branch] gh/PaulZhang12/18/head -> origin/gh/PaulZhang12/18/head 2025-08-14T21:49:36.0356384Z * [new branch] gh/PaulZhang12/18/orig -> origin/gh/PaulZhang12/18/orig 2025-08-14T21:49:36.0356940Z * [new branch] gh/PaulZhang12/19/base -> origin/gh/PaulZhang12/19/base 2025-08-14T21:49:36.0357509Z * [new branch] gh/PaulZhang12/19/head -> origin/gh/PaulZhang12/19/head 2025-08-14T21:49:36.0358108Z * [new branch] gh/PaulZhang12/19/orig -> origin/gh/PaulZhang12/19/orig 2025-08-14T21:49:36.0358652Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-08-14T21:49:36.0359211Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-08-14T21:49:36.0359826Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-08-14T21:49:36.0360421Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-08-14T21:49:36.0360976Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-08-14T21:49:36.0377235Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-08-14T21:49:36.0377971Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-08-14T21:49:36.0378518Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-08-14T21:49:36.0379040Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-08-14T21:49:36.0379683Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-08-14T21:49:36.0380224Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-08-14T21:49:36.0380776Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-08-14T21:49:36.0381351Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-08-14T21:49:36.0381909Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-08-14T21:49:36.0382494Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-08-14T21:49:36.0383059Z * [new branch] gh/Sidharth123-cpu/42/base -> origin/gh/Sidharth123-cpu/42/base 2025-08-14T21:49:36.0383620Z * [new branch] gh/Sidharth123-cpu/42/head -> origin/gh/Sidharth123-cpu/42/head 2025-08-14T21:49:36.0384200Z * [new branch] gh/Sidharth123-cpu/42/orig -> origin/gh/Sidharth123-cpu/42/orig 2025-08-14T21:49:36.0384760Z * [new branch] gh/Sidharth123-cpu/43/base -> origin/gh/Sidharth123-cpu/43/base 2025-08-14T21:49:36.0385381Z * [new branch] gh/Sidharth123-cpu/43/head -> origin/gh/Sidharth123-cpu/43/head 2025-08-14T21:49:36.0385983Z * [new branch] gh/Sidharth123-cpu/43/orig -> origin/gh/Sidharth123-cpu/43/orig 2025-08-14T21:49:36.0386565Z * [new branch] gh/Sidharth123-cpu/44/base -> origin/gh/Sidharth123-cpu/44/base 2025-08-14T21:49:36.0387235Z * [new branch] gh/Sidharth123-cpu/44/head -> origin/gh/Sidharth123-cpu/44/head 2025-08-14T21:49:36.0387798Z * [new branch] gh/Sidharth123-cpu/44/orig -> origin/gh/Sidharth123-cpu/44/orig 2025-08-14T21:49:36.0388370Z * [new branch] gh/Sidharth123-cpu/45/base -> origin/gh/Sidharth123-cpu/45/base 2025-08-14T21:49:36.0388929Z * [new branch] gh/Sidharth123-cpu/45/head -> origin/gh/Sidharth123-cpu/45/head 2025-08-14T21:49:36.0389504Z * [new branch] gh/Sidharth123-cpu/45/orig -> origin/gh/Sidharth123-cpu/45/orig 2025-08-14T21:49:36.0809660Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-08-14T21:49:36.0810240Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-08-14T21:49:36.0810787Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-08-14T21:49:36.0811331Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-08-14T21:49:36.0811876Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-08-14T21:49:36.0812411Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-08-14T21:49:36.0812929Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-08-14T21:49:36.0813519Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-08-14T21:49:36.0814091Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-08-14T21:49:36.0814605Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-08-14T21:49:36.0815141Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-08-14T21:49:36.0815655Z * [new branch] gh/StrongerXi/135/base -> origin/gh/StrongerXi/135/base 2025-08-14T21:49:36.0816333Z * [new branch] gh/StrongerXi/135/head -> origin/gh/StrongerXi/135/head 2025-08-14T21:49:36.0816868Z * [new branch] gh/StrongerXi/135/orig -> origin/gh/StrongerXi/135/orig 2025-08-14T21:49:36.0817398Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-08-14T21:49:36.0817936Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-08-14T21:49:36.0818456Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-08-14T21:49:36.0818989Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-08-14T21:49:36.0819589Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-08-14T21:49:36.0820124Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-08-14T21:49:36.0820655Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-08-14T21:49:36.0821186Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-08-14T21:49:36.0821723Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-08-14T21:49:36.0822239Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-08-14T21:49:36.0822769Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-08-14T21:49:36.0823292Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-08-14T21:49:36.0823800Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-08-14T21:49:36.0824322Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-08-14T21:49:36.0824869Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-08-14T21:49:36.0825520Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-08-14T21:49:36.0826022Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-08-14T21:49:36.0826510Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-08-14T21:49:36.0827009Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-08-14T21:49:36.0827493Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-08-14T21:49:36.0827999Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-08-14T21:49:36.0828504Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-08-14T21:49:36.0828994Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-08-14T21:49:36.0829513Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-08-14T21:49:36.0830016Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-08-14T21:49:36.0830572Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-08-14T21:49:36.0831114Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-08-14T21:49:36.0831626Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-08-14T21:49:36.0832130Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-08-14T21:49:36.0832619Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-08-14T21:49:36.0833128Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-08-14T21:49:36.0833622Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-08-14T21:49:36.0834128Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-08-14T21:49:36.1250971Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-08-14T21:49:36.1251485Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-08-14T21:49:36.1251992Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-08-14T21:49:36.1252487Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-08-14T21:49:36.1252997Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-08-14T21:49:36.1253503Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-08-14T21:49:36.1254001Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-08-14T21:49:36.1254510Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-08-14T21:49:36.1254997Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-08-14T21:49:36.1255505Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-08-14T21:49:36.1256008Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-08-14T21:49:36.1256494Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-08-14T21:49:36.1256990Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-08-14T21:49:36.1257502Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-08-14T21:49:36.1257987Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-08-14T21:49:36.1258484Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-08-14T21:49:36.1258965Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-08-14T21:49:36.1259587Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-08-14T21:49:36.1260077Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-08-14T21:49:36.1260581Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-08-14T21:49:36.1261086Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-08-14T21:49:36.1261575Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-08-14T21:49:36.1262072Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-08-14T21:49:36.1262554Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-08-14T21:49:36.1263055Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-08-14T21:49:36.1263560Z * [new branch] gh/XilunWu/154/base -> origin/gh/XilunWu/154/base 2025-08-14T21:49:36.1264064Z * [new branch] gh/XilunWu/154/head -> origin/gh/XilunWu/154/head 2025-08-14T21:49:36.1264556Z * [new branch] gh/XilunWu/154/orig -> origin/gh/XilunWu/154/orig 2025-08-14T21:49:36.1265036Z * [new branch] gh/XilunWu/156/base -> origin/gh/XilunWu/156/base 2025-08-14T21:49:36.1265546Z * [new branch] gh/XilunWu/156/head -> origin/gh/XilunWu/156/head 2025-08-14T21:49:36.1266049Z * [new branch] gh/XilunWu/156/orig -> origin/gh/XilunWu/156/orig 2025-08-14T21:49:36.1266535Z * [new branch] gh/XilunWu/157/base -> origin/gh/XilunWu/157/base 2025-08-14T21:49:36.1267040Z * [new branch] gh/XilunWu/157/head -> origin/gh/XilunWu/157/head 2025-08-14T21:49:36.1267523Z * [new branch] gh/XilunWu/157/orig -> origin/gh/XilunWu/157/orig 2025-08-14T21:49:36.1268005Z * [new branch] gh/XilunWu/158/base -> origin/gh/XilunWu/158/base 2025-08-14T21:49:36.1268595Z * [new branch] gh/XilunWu/158/head -> origin/gh/XilunWu/158/head 2025-08-14T21:49:36.1269087Z * [new branch] gh/XilunWu/158/orig -> origin/gh/XilunWu/158/orig 2025-08-14T21:49:36.1269600Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-08-14T21:49:36.1270094Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-08-14T21:49:36.1270574Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-08-14T21:49:36.1271079Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-08-14T21:49:36.1271568Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-08-14T21:49:36.1272071Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-08-14T21:49:36.1272569Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-08-14T21:49:36.1273060Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-08-14T21:49:36.1273559Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-08-14T21:49:36.1274043Z * [new branch] gh/XilunWu/162/base -> origin/gh/XilunWu/162/base 2025-08-14T21:49:36.1682892Z * [new branch] gh/XilunWu/162/head -> origin/gh/XilunWu/162/head 2025-08-14T21:49:36.1683471Z * [new branch] gh/XilunWu/162/orig -> origin/gh/XilunWu/162/orig 2025-08-14T21:49:36.1683974Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-08-14T21:49:36.1684537Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-08-14T21:49:36.1685036Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-08-14T21:49:36.1685693Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-08-14T21:49:36.1686221Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-08-14T21:49:36.1686716Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-08-14T21:49:36.1687235Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-08-14T21:49:36.1687748Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-08-14T21:49:36.1688249Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-08-14T21:49:36.1688763Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-08-14T21:49:36.1689267Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-08-14T21:49:36.1689786Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-08-14T21:49:36.1690306Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-08-14T21:49:36.1690820Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-08-14T21:49:36.1691327Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-08-14T21:49:36.1691826Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-08-14T21:49:36.1692330Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-08-14T21:49:36.1692828Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-08-14T21:49:36.1693346Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-08-14T21:49:36.1693871Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-08-14T21:49:36.1694378Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-08-14T21:49:36.1694992Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-08-14T21:49:36.1695505Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-08-14T21:49:36.1696032Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-08-14T21:49:36.1696556Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-08-14T21:49:36.1697065Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-08-14T21:49:36.1697587Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-08-14T21:49:36.1698094Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-08-14T21:49:36.1698613Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-08-14T21:49:36.1699142Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-08-14T21:49:36.1699650Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-08-14T21:49:36.1700175Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-08-14T21:49:36.1700684Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-08-14T21:49:36.1701204Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-08-14T21:49:36.1701705Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-08-14T21:49:36.1702224Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-08-14T21:49:36.1702750Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-08-14T21:49:36.1703260Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-08-14T21:49:36.1703869Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-08-14T21:49:36.1704379Z * [new branch] gh/XuehaiPan/283/base -> origin/gh/XuehaiPan/283/base 2025-08-14T21:49:36.1704903Z * [new branch] gh/XuehaiPan/283/head -> origin/gh/XuehaiPan/283/head 2025-08-14T21:49:36.1705423Z * [new branch] gh/XuehaiPan/283/orig -> origin/gh/XuehaiPan/283/orig 2025-08-14T21:49:36.1705932Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-08-14T21:49:36.1706453Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-08-14T21:49:36.2099686Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-08-14T21:49:36.2100275Z * [new branch] gh/XuehaiPan/328/base -> origin/gh/XuehaiPan/328/base 2025-08-14T21:49:36.2100828Z * [new branch] gh/XuehaiPan/328/head -> origin/gh/XuehaiPan/328/head 2025-08-14T21:49:36.2101333Z * [new branch] gh/XuehaiPan/328/orig -> origin/gh/XuehaiPan/328/orig 2025-08-14T21:49:36.2101843Z * [new branch] gh/XuehaiPan/339/base -> origin/gh/XuehaiPan/339/base 2025-08-14T21:49:36.2102355Z * [new branch] gh/XuehaiPan/339/head -> origin/gh/XuehaiPan/339/head 2025-08-14T21:49:36.2102855Z * [new branch] gh/XuehaiPan/339/orig -> origin/gh/XuehaiPan/339/orig 2025-08-14T21:49:36.2103379Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-08-14T21:49:36.2103985Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-08-14T21:49:36.2104549Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-08-14T21:49:36.2105053Z * [new branch] gh/XuehaiPan/344/base -> origin/gh/XuehaiPan/344/base 2025-08-14T21:49:36.2105711Z * [new branch] gh/XuehaiPan/344/head -> origin/gh/XuehaiPan/344/head 2025-08-14T21:49:36.2106233Z * [new branch] gh/XuehaiPan/344/orig -> origin/gh/XuehaiPan/344/orig 2025-08-14T21:49:36.2106741Z * [new branch] gh/XuehaiPan/345/base -> origin/gh/XuehaiPan/345/base 2025-08-14T21:49:36.2107254Z * [new branch] gh/XuehaiPan/345/head -> origin/gh/XuehaiPan/345/head 2025-08-14T21:49:36.2107751Z * [new branch] gh/XuehaiPan/345/orig -> origin/gh/XuehaiPan/345/orig 2025-08-14T21:49:36.2108261Z * [new branch] gh/XuehaiPan/346/base -> origin/gh/XuehaiPan/346/base 2025-08-14T21:49:36.2108773Z * [new branch] gh/XuehaiPan/346/head -> origin/gh/XuehaiPan/346/head 2025-08-14T21:49:36.2109272Z * [new branch] gh/XuehaiPan/346/orig -> origin/gh/XuehaiPan/346/orig 2025-08-14T21:49:36.2109823Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-08-14T21:49:36.2110415Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-08-14T21:49:36.2110926Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-08-14T21:49:36.2111420Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-08-14T21:49:36.2111922Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-08-14T21:49:36.2112431Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-08-14T21:49:36.2112927Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-08-14T21:49:36.2113436Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-08-14T21:49:36.2113932Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-08-14T21:49:36.2114533Z * [new branch] gh/XuehaiPan/352/base -> origin/gh/XuehaiPan/352/base 2025-08-14T21:49:36.2115045Z * [new branch] gh/XuehaiPan/352/head -> origin/gh/XuehaiPan/352/head 2025-08-14T21:49:36.2115592Z * [new branch] gh/XuehaiPan/352/orig -> origin/gh/XuehaiPan/352/orig 2025-08-14T21:49:36.2116136Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-08-14T21:49:36.2116679Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-08-14T21:49:36.2117183Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-08-14T21:49:36.2117686Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-08-14T21:49:36.2118186Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-08-14T21:49:36.2118704Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-08-14T21:49:36.2119211Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-08-14T21:49:36.2119723Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-08-14T21:49:36.2120224Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-08-14T21:49:36.2120733Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-08-14T21:49:36.2121239Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-08-14T21:49:36.2121734Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-08-14T21:49:36.2122235Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-08-14T21:49:36.2122734Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-08-14T21:49:36.2123246Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-08-14T21:49:36.2517083Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-08-14T21:49:36.2517611Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-08-14T21:49:36.2518127Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-08-14T21:49:36.2518645Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-08-14T21:49:36.2519150Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-08-14T21:49:36.2519708Z * [new branch] gh/XuehaiPan/368/base -> origin/gh/XuehaiPan/368/base 2025-08-14T21:49:36.2520252Z * [new branch] gh/XuehaiPan/368/head -> origin/gh/XuehaiPan/368/head 2025-08-14T21:49:36.2520757Z * [new branch] gh/XuehaiPan/368/orig -> origin/gh/XuehaiPan/368/orig 2025-08-14T21:49:36.2521267Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-08-14T21:49:36.2521769Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-08-14T21:49:36.2522276Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-08-14T21:49:36.2522774Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-08-14T21:49:36.2523284Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-08-14T21:49:36.2523779Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-08-14T21:49:36.2524361Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-08-14T21:49:36.2524868Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-08-14T21:49:36.2525420Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-08-14T21:49:36.2526108Z * [new branch] gh/XuehaiPan/372/base -> origin/gh/XuehaiPan/372/base 2025-08-14T21:49:36.2526614Z * [new branch] gh/XuehaiPan/372/head -> origin/gh/XuehaiPan/372/head 2025-08-14T21:49:36.2527130Z * [new branch] gh/XuehaiPan/372/orig -> origin/gh/XuehaiPan/372/orig 2025-08-14T21:49:36.2527645Z * [new branch] gh/XuehaiPan/373/base -> origin/gh/XuehaiPan/373/base 2025-08-14T21:49:36.2528149Z * [new branch] gh/XuehaiPan/373/head -> origin/gh/XuehaiPan/373/head 2025-08-14T21:49:36.2528660Z * [new branch] gh/XuehaiPan/373/orig -> origin/gh/XuehaiPan/373/orig 2025-08-14T21:49:36.2529165Z * [new branch] gh/XuehaiPan/374/base -> origin/gh/XuehaiPan/374/base 2025-08-14T21:49:36.2529686Z * [new branch] gh/XuehaiPan/374/head -> origin/gh/XuehaiPan/374/head 2025-08-14T21:49:36.2530201Z * [new branch] gh/XuehaiPan/374/orig -> origin/gh/XuehaiPan/374/orig 2025-08-14T21:49:36.2530697Z * [new branch] gh/XuehaiPan/375/base -> origin/gh/XuehaiPan/375/base 2025-08-14T21:49:36.2531249Z * [new branch] gh/XuehaiPan/375/head -> origin/gh/XuehaiPan/375/head 2025-08-14T21:49:36.2531789Z * [new branch] gh/XuehaiPan/375/orig -> origin/gh/XuehaiPan/375/orig 2025-08-14T21:49:36.2532296Z * [new branch] gh/XuehaiPan/376/base -> origin/gh/XuehaiPan/376/base 2025-08-14T21:49:36.2532806Z * [new branch] gh/XuehaiPan/376/head -> origin/gh/XuehaiPan/376/head 2025-08-14T21:49:36.2533301Z * [new branch] gh/XuehaiPan/376/orig -> origin/gh/XuehaiPan/376/orig 2025-08-14T21:49:36.2533812Z * [new branch] gh/XuehaiPan/377/base -> origin/gh/XuehaiPan/377/base 2025-08-14T21:49:36.2534305Z * [new branch] gh/XuehaiPan/377/head -> origin/gh/XuehaiPan/377/head 2025-08-14T21:49:36.2534906Z * [new branch] gh/XuehaiPan/377/orig -> origin/gh/XuehaiPan/377/orig 2025-08-14T21:49:36.2535427Z * [new branch] gh/XuehaiPan/378/base -> origin/gh/XuehaiPan/378/base 2025-08-14T21:49:36.2535932Z * [new branch] gh/XuehaiPan/378/head -> origin/gh/XuehaiPan/378/head 2025-08-14T21:49:36.2536440Z * [new branch] gh/XuehaiPan/378/orig -> origin/gh/XuehaiPan/378/orig 2025-08-14T21:49:36.2536984Z * [new branch] gh/XuehaiPan/379/base -> origin/gh/XuehaiPan/379/base 2025-08-14T21:49:36.2537540Z * [new branch] gh/XuehaiPan/379/head -> origin/gh/XuehaiPan/379/head 2025-08-14T21:49:36.2538036Z * [new branch] gh/XuehaiPan/379/orig -> origin/gh/XuehaiPan/379/orig 2025-08-14T21:49:36.2538555Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-08-14T21:49:36.2539087Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-08-14T21:49:36.2539606Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-08-14T21:49:36.2540127Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-08-14T21:49:36.2540642Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-08-14T21:49:36.2990637Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-08-14T21:49:36.2991205Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-08-14T21:49:36.2991746Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-08-14T21:49:36.2992279Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-08-14T21:49:36.2992797Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-08-14T21:49:36.2993525Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-08-14T21:49:36.2994063Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-08-14T21:49:36.2994634Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-08-14T21:49:36.2995202Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-08-14T21:49:36.2995713Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-08-14T21:49:36.2996236Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-08-14T21:49:36.2996765Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-08-14T21:49:36.2997273Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-08-14T21:49:36.2997798Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-08-14T21:49:36.2998312Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-08-14T21:49:36.2998835Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-08-14T21:49:36.2999346Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-08-14T21:49:36.2999871Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-08-14T21:49:36.3000446Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-08-14T21:49:36.3001002Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-08-14T21:49:36.3001514Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-08-14T21:49:36.3002006Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-08-14T21:49:36.3002610Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-08-14T21:49:36.3003118Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-08-14T21:49:36.3003616Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-08-14T21:49:36.3004212Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-08-14T21:49:36.3004921Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-08-14T21:49:36.3005772Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-08-14T21:49:36.3006608Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-08-14T21:49:36.3007280Z * [new branch] gh/alexsamardzic/7/base -> origin/gh/alexsamardzic/7/base 2025-08-14T21:49:36.3007842Z * [new branch] gh/alexsamardzic/7/head -> origin/gh/alexsamardzic/7/head 2025-08-14T21:49:36.3008376Z * [new branch] gh/alexsamardzic/7/orig -> origin/gh/alexsamardzic/7/orig 2025-08-14T21:49:36.3008915Z * [new branch] gh/alexsamardzic/8/base -> origin/gh/alexsamardzic/8/base 2025-08-14T21:49:36.3009454Z * [new branch] gh/alexsamardzic/8/head -> origin/gh/alexsamardzic/8/head 2025-08-14T21:49:36.3009986Z * [new branch] gh/alexsamardzic/8/orig -> origin/gh/alexsamardzic/8/orig 2025-08-14T21:49:36.3010506Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-08-14T21:49:36.3010985Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-08-14T21:49:36.3011511Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-08-14T21:49:36.3012163Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-08-14T21:49:36.3012672Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-08-14T21:49:36.3013183Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-08-14T21:49:36.3013686Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-08-14T21:49:36.3014199Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-08-14T21:49:36.3014709Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-08-14T21:49:36.3433101Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-08-14T21:49:36.3433632Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-08-14T21:49:36.3434133Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-08-14T21:49:36.3434660Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-08-14T21:49:36.3435177Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-08-14T21:49:36.3435676Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-08-14T21:49:36.3436198Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-08-14T21:49:36.3436695Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-08-14T21:49:36.3437205Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-08-14T21:49:36.3437716Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-08-14T21:49:36.3438216Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-08-14T21:49:36.3438729Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-08-14T21:49:36.3439354Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-08-14T21:49:36.3439868Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-08-14T21:49:36.3440367Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-08-14T21:49:36.3440884Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-08-14T21:49:36.3441394Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-08-14T21:49:36.3441898Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-08-14T21:49:36.3442416Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-08-14T21:49:36.3442925Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-08-14T21:49:36.3443456Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-08-14T21:49:36.3444056Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-08-14T21:49:36.3444564Z * [new branch] gh/andyanwang/33/base -> origin/gh/andyanwang/33/base 2025-08-14T21:49:36.3445076Z * [new branch] gh/andyanwang/33/head -> origin/gh/andyanwang/33/head 2025-08-14T21:49:36.3445579Z * [new branch] gh/andyanwang/33/orig -> origin/gh/andyanwang/33/orig 2025-08-14T21:49:36.3446092Z * [new branch] gh/andyanwang/34/base -> origin/gh/andyanwang/34/base 2025-08-14T21:49:36.3446612Z * [new branch] gh/andyanwang/34/head -> origin/gh/andyanwang/34/head 2025-08-14T21:49:36.3447120Z * [new branch] gh/andyanwang/34/orig -> origin/gh/andyanwang/34/orig 2025-08-14T21:49:36.3447625Z * [new branch] gh/andyanwang/35/base -> origin/gh/andyanwang/35/base 2025-08-14T21:49:36.3448224Z * [new branch] gh/andyanwang/35/head -> origin/gh/andyanwang/35/head 2025-08-14T21:49:36.3448740Z * [new branch] gh/andyanwang/35/orig -> origin/gh/andyanwang/35/orig 2025-08-14T21:49:36.3449258Z * [new branch] gh/andyanwang/36/base -> origin/gh/andyanwang/36/base 2025-08-14T21:49:36.3449756Z * [new branch] gh/andyanwang/36/head -> origin/gh/andyanwang/36/head 2025-08-14T21:49:36.3450266Z * [new branch] gh/andyanwang/36/orig -> origin/gh/andyanwang/36/orig 2025-08-14T21:49:36.3450770Z * [new branch] gh/andyanwang/37/base -> origin/gh/andyanwang/37/base 2025-08-14T21:49:36.3451281Z * [new branch] gh/andyanwang/37/head -> origin/gh/andyanwang/37/head 2025-08-14T21:49:36.3451788Z * [new branch] gh/andyanwang/37/orig -> origin/gh/andyanwang/37/orig 2025-08-14T21:49:36.3452294Z * [new branch] gh/andyanwang/38/base -> origin/gh/andyanwang/38/base 2025-08-14T21:49:36.3452808Z * [new branch] gh/andyanwang/38/head -> origin/gh/andyanwang/38/head 2025-08-14T21:49:36.3453307Z * [new branch] gh/andyanwang/38/orig -> origin/gh/andyanwang/38/orig 2025-08-14T21:49:36.3453821Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-08-14T21:49:36.3454329Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-08-14T21:49:36.3454829Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-08-14T21:49:36.3455345Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-08-14T21:49:36.3455851Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-08-14T21:49:36.3456354Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-08-14T21:49:36.3456954Z * [new branch] gh/andyanwang/40/base -> origin/gh/andyanwang/40/base 2025-08-14T21:49:36.3877716Z * [new branch] gh/andyanwang/40/head -> origin/gh/andyanwang/40/head 2025-08-14T21:49:36.3878261Z * [new branch] gh/andyanwang/40/orig -> origin/gh/andyanwang/40/orig 2025-08-14T21:49:36.3878768Z * [new branch] gh/angelayi/102/base -> origin/gh/angelayi/102/base 2025-08-14T21:49:36.3879276Z * [new branch] gh/angelayi/102/head -> origin/gh/angelayi/102/head 2025-08-14T21:49:36.3879813Z * [new branch] gh/angelayi/102/orig -> origin/gh/angelayi/102/orig 2025-08-14T21:49:36.3880363Z * [new branch] gh/angelayi/103/base -> origin/gh/angelayi/103/base 2025-08-14T21:49:36.3880860Z * [new branch] gh/angelayi/103/head -> origin/gh/angelayi/103/head 2025-08-14T21:49:36.3881352Z * [new branch] gh/angelayi/103/orig -> origin/gh/angelayi/103/orig 2025-08-14T21:49:36.3881862Z * [new branch] gh/angelayi/104/base -> origin/gh/angelayi/104/base 2025-08-14T21:49:36.3882355Z * [new branch] gh/angelayi/104/head -> origin/gh/angelayi/104/head 2025-08-14T21:49:36.3882854Z * [new branch] gh/angelayi/104/orig -> origin/gh/angelayi/104/orig 2025-08-14T21:49:36.3883348Z * [new branch] gh/angelayi/105/base -> origin/gh/angelayi/105/base 2025-08-14T21:49:36.3883896Z * [new branch] gh/angelayi/105/head -> origin/gh/angelayi/105/head 2025-08-14T21:49:36.3884390Z * [new branch] gh/angelayi/105/orig -> origin/gh/angelayi/105/orig 2025-08-14T21:49:36.3884878Z * [new branch] gh/angelayi/106/base -> origin/gh/angelayi/106/base 2025-08-14T21:49:36.3885378Z * [new branch] gh/angelayi/106/head -> origin/gh/angelayi/106/head 2025-08-14T21:49:36.3886098Z * [new branch] gh/angelayi/106/orig -> origin/gh/angelayi/106/orig 2025-08-14T21:49:36.3886596Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-08-14T21:49:36.3887098Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-08-14T21:49:36.3887594Z * [new branch] gh/angelayi/108/base -> origin/gh/angelayi/108/base 2025-08-14T21:49:36.3888101Z * [new branch] gh/angelayi/108/head -> origin/gh/angelayi/108/head 2025-08-14T21:49:36.3888603Z * [new branch] gh/angelayi/108/orig -> origin/gh/angelayi/108/orig 2025-08-14T21:49:36.3889095Z * [new branch] gh/angelayi/109/base -> origin/gh/angelayi/109/base 2025-08-14T21:49:36.3889599Z * [new branch] gh/angelayi/109/head -> origin/gh/angelayi/109/head 2025-08-14T21:49:36.3890093Z * [new branch] gh/angelayi/109/orig -> origin/gh/angelayi/109/orig 2025-08-14T21:49:36.3890611Z * [new branch] gh/angelayi/110/base -> origin/gh/angelayi/110/base 2025-08-14T21:49:36.3891101Z * [new branch] gh/angelayi/110/head -> origin/gh/angelayi/110/head 2025-08-14T21:49:36.3891662Z * [new branch] gh/angelayi/110/orig -> origin/gh/angelayi/110/orig 2025-08-14T21:49:36.3892175Z * [new branch] gh/angelayi/97/base -> origin/gh/angelayi/97/base 2025-08-14T21:49:36.3892663Z * [new branch] gh/angelayi/97/head -> origin/gh/angelayi/97/head 2025-08-14T21:49:36.3893148Z * [new branch] gh/angelayi/97/orig -> origin/gh/angelayi/97/orig 2025-08-14T21:49:36.3893621Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-08-14T21:49:36.3894074Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-08-14T21:49:36.3894533Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-08-14T21:49:36.3895129Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-08-14T21:49:36.3895655Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-08-14T21:49:36.3896166Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-08-14T21:49:36.3896697Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-08-14T21:49:36.3897259Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-08-14T21:49:36.3897818Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-08-14T21:49:36.3898338Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-08-14T21:49:36.3898846Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-08-14T21:49:36.3899370Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-08-14T21:49:36.3899887Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-08-14T21:49:36.3900394Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-08-14T21:49:36.3900906Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-08-14T21:49:36.4299300Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-08-14T21:49:36.4299874Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-08-14T21:49:36.4300406Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-08-14T21:49:36.4300922Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-08-14T21:49:36.4301454Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-08-14T21:49:36.4302103Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-08-14T21:49:36.4302669Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-08-14T21:49:36.4303197Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-08-14T21:49:36.4303707Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-08-14T21:49:36.4304222Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-08-14T21:49:36.4304742Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-08-14T21:49:36.4305252Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-08-14T21:49:36.4305772Z * [new branch] gh/anijain2305/811/base -> origin/gh/anijain2305/811/base 2025-08-14T21:49:36.4306300Z * [new branch] gh/anijain2305/811/head -> origin/gh/anijain2305/811/head 2025-08-14T21:49:36.4306825Z * [new branch] gh/anijain2305/811/orig -> origin/gh/anijain2305/811/orig 2025-08-14T21:49:36.4307344Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-08-14T21:49:36.4307855Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-08-14T21:49:36.4308378Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-08-14T21:49:36.4308887Z * [new branch] gh/anijain2305/813/base -> origin/gh/anijain2305/813/base 2025-08-14T21:49:36.4309408Z * [new branch] gh/anijain2305/813/head -> origin/gh/anijain2305/813/head 2025-08-14T21:49:36.4309922Z * [new branch] gh/anijain2305/813/orig -> origin/gh/anijain2305/813/orig 2025-08-14T21:49:36.4310430Z * [new branch] gh/anijain2305/814/base -> origin/gh/anijain2305/814/base 2025-08-14T21:49:36.4311585Z * [new branch] gh/anijain2305/814/head -> origin/gh/anijain2305/814/head 2025-08-14T21:49:36.4312099Z * [new branch] gh/anijain2305/814/orig -> origin/gh/anijain2305/814/orig 2025-08-14T21:49:36.4312624Z * [new branch] gh/anijain2305/815/base -> origin/gh/anijain2305/815/base 2025-08-14T21:49:36.4313134Z * [new branch] gh/anijain2305/815/head -> origin/gh/anijain2305/815/head 2025-08-14T21:49:36.4313648Z * [new branch] gh/anijain2305/815/orig -> origin/gh/anijain2305/815/orig 2025-08-14T21:49:36.4314163Z * [new branch] gh/anijain2305/816/base -> origin/gh/anijain2305/816/base 2025-08-14T21:49:36.4314675Z * [new branch] gh/anijain2305/816/head -> origin/gh/anijain2305/816/head 2025-08-14T21:49:36.4315188Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-08-14T21:49:36.4315702Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-08-14T21:49:36.4316218Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-08-14T21:49:36.4316736Z * [new branch] gh/anijain2305/818/base -> origin/gh/anijain2305/818/base 2025-08-14T21:49:36.4317246Z * [new branch] gh/anijain2305/818/head -> origin/gh/anijain2305/818/head 2025-08-14T21:49:36.4317761Z * [new branch] gh/anijain2305/818/orig -> origin/gh/anijain2305/818/orig 2025-08-14T21:49:36.4318266Z * [new branch] gh/anijain2305/819/base -> origin/gh/anijain2305/819/base 2025-08-14T21:49:36.4318781Z * [new branch] gh/anijain2305/819/head -> origin/gh/anijain2305/819/head 2025-08-14T21:49:36.4319295Z * [new branch] gh/anijain2305/819/orig -> origin/gh/anijain2305/819/orig 2025-08-14T21:49:36.4319801Z * [new branch] gh/anijain2305/820/base -> origin/gh/anijain2305/820/base 2025-08-14T21:49:36.4320406Z * [new branch] gh/anijain2305/820/head -> origin/gh/anijain2305/820/head 2025-08-14T21:49:36.4320918Z * [new branch] gh/anijain2305/820/orig -> origin/gh/anijain2305/820/orig 2025-08-14T21:49:36.4321450Z * [new branch] gh/anijain2305/821/base -> origin/gh/anijain2305/821/base 2025-08-14T21:49:36.4321971Z * [new branch] gh/anijain2305/821/head -> origin/gh/anijain2305/821/head 2025-08-14T21:49:36.4322481Z * [new branch] gh/anijain2305/821/orig -> origin/gh/anijain2305/821/orig 2025-08-14T21:49:36.4323003Z * [new branch] gh/anijain2305/822/base -> origin/gh/anijain2305/822/base 2025-08-14T21:49:36.4703513Z * [new branch] gh/anijain2305/822/head -> origin/gh/anijain2305/822/head 2025-08-14T21:49:36.4704083Z * [new branch] gh/anijain2305/822/orig -> origin/gh/anijain2305/822/orig 2025-08-14T21:49:36.4704642Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-08-14T21:49:36.4705183Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-08-14T21:49:36.4705702Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-08-14T21:49:36.4706226Z * [new branch] gh/anijain2305/824/base -> origin/gh/anijain2305/824/base 2025-08-14T21:49:36.4706747Z * [new branch] gh/anijain2305/824/head -> origin/gh/anijain2305/824/head 2025-08-14T21:49:36.4707269Z * [new branch] gh/anijain2305/824/orig -> origin/gh/anijain2305/824/orig 2025-08-14T21:49:36.4707794Z * [new branch] gh/anijain2305/825/base -> origin/gh/anijain2305/825/base 2025-08-14T21:49:36.4708306Z * [new branch] gh/anijain2305/825/head -> origin/gh/anijain2305/825/head 2025-08-14T21:49:36.4708831Z * [new branch] gh/anijain2305/825/orig -> origin/gh/anijain2305/825/orig 2025-08-14T21:49:36.4709497Z * [new branch] gh/anijain2305/826/base -> origin/gh/anijain2305/826/base 2025-08-14T21:49:36.4710021Z * [new branch] gh/anijain2305/826/head -> origin/gh/anijain2305/826/head 2025-08-14T21:49:36.4710535Z * [new branch] gh/anijain2305/826/orig -> origin/gh/anijain2305/826/orig 2025-08-14T21:49:36.4711055Z * [new branch] gh/anijain2305/827/base -> origin/gh/anijain2305/827/base 2025-08-14T21:49:36.4711579Z * [new branch] gh/anijain2305/827/head -> origin/gh/anijain2305/827/head 2025-08-14T21:49:36.4712083Z * [new branch] gh/anijain2305/827/orig -> origin/gh/anijain2305/827/orig 2025-08-14T21:49:36.4712602Z * [new branch] gh/anijain2305/828/base -> origin/gh/anijain2305/828/base 2025-08-14T21:49:36.4713115Z * [new branch] gh/anijain2305/828/head -> origin/gh/anijain2305/828/head 2025-08-14T21:49:36.4713645Z * [new branch] gh/anijain2305/828/orig -> origin/gh/anijain2305/828/orig 2025-08-14T21:49:36.4714159Z * [new branch] gh/anijain2305/829/base -> origin/gh/anijain2305/829/base 2025-08-14T21:49:36.4714679Z * [new branch] gh/anijain2305/829/head -> origin/gh/anijain2305/829/head 2025-08-14T21:49:36.4715193Z * [new branch] gh/anijain2305/829/orig -> origin/gh/anijain2305/829/orig 2025-08-14T21:49:36.4715702Z * [new branch] gh/anijain2305/830/base -> origin/gh/anijain2305/830/base 2025-08-14T21:49:36.4716216Z * [new branch] gh/anijain2305/830/head -> origin/gh/anijain2305/830/head 2025-08-14T21:49:36.4716727Z * [new branch] gh/anijain2305/830/orig -> origin/gh/anijain2305/830/orig 2025-08-14T21:49:36.4717235Z * [new branch] gh/anijain2305/831/base -> origin/gh/anijain2305/831/base 2025-08-14T21:49:36.4718613Z * [new branch] gh/anijain2305/831/head -> origin/gh/anijain2305/831/head 2025-08-14T21:49:36.4719365Z * [new branch] gh/anijain2305/831/orig -> origin/gh/anijain2305/831/orig 2025-08-14T21:49:36.4719908Z * [new branch] gh/anijain2305/832/base -> origin/gh/anijain2305/832/base 2025-08-14T21:49:36.4720437Z * [new branch] gh/anijain2305/832/head -> origin/gh/anijain2305/832/head 2025-08-14T21:49:36.4720958Z * [new branch] gh/anijain2305/832/orig -> origin/gh/anijain2305/832/orig 2025-08-14T21:49:36.4721474Z * [new branch] gh/anijain2305/833/base -> origin/gh/anijain2305/833/base 2025-08-14T21:49:36.4721990Z * [new branch] gh/anijain2305/833/head -> origin/gh/anijain2305/833/head 2025-08-14T21:49:36.4722507Z * [new branch] gh/anijain2305/833/orig -> origin/gh/anijain2305/833/orig 2025-08-14T21:49:36.4723025Z * [new branch] gh/anijain2305/834/base -> origin/gh/anijain2305/834/base 2025-08-14T21:49:36.4723616Z * [new branch] gh/anijain2305/834/head -> origin/gh/anijain2305/834/head 2025-08-14T21:49:36.4724146Z * [new branch] gh/anijain2305/834/orig -> origin/gh/anijain2305/834/orig 2025-08-14T21:49:36.4724654Z * [new branch] gh/anijain2305/835/base -> origin/gh/anijain2305/835/base 2025-08-14T21:49:36.4725186Z * [new branch] gh/anijain2305/835/head -> origin/gh/anijain2305/835/head 2025-08-14T21:49:36.4725701Z * [new branch] gh/anijain2305/835/orig -> origin/gh/anijain2305/835/orig 2025-08-14T21:49:36.4726225Z * [new branch] gh/anijain2305/836/base -> origin/gh/anijain2305/836/base 2025-08-14T21:49:36.4726747Z * [new branch] gh/anijain2305/836/head -> origin/gh/anijain2305/836/head 2025-08-14T21:49:36.4727261Z * [new branch] gh/anijain2305/836/orig -> origin/gh/anijain2305/836/orig 2025-08-14T21:49:36.4727785Z * [new branch] gh/anijain2305/837/base -> origin/gh/anijain2305/837/base 2025-08-14T21:49:36.5133120Z * [new branch] gh/anijain2305/837/head -> origin/gh/anijain2305/837/head 2025-08-14T21:49:36.5133673Z * [new branch] gh/anijain2305/837/orig -> origin/gh/anijain2305/837/orig 2025-08-14T21:49:36.5134198Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-08-14T21:49:36.5134710Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-08-14T21:49:36.5135237Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-08-14T21:49:36.5135773Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-08-14T21:49:36.5136289Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-08-14T21:49:36.5136808Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-08-14T21:49:36.5137339Z * [new branch] gh/anijain2305/840/base -> origin/gh/anijain2305/840/base 2025-08-14T21:49:36.5137863Z * [new branch] gh/anijain2305/840/head -> origin/gh/anijain2305/840/head 2025-08-14T21:49:36.5138381Z * [new branch] gh/anijain2305/840/orig -> origin/gh/anijain2305/840/orig 2025-08-14T21:49:36.5138897Z * [new branch] gh/anijain2305/841/base -> origin/gh/anijain2305/841/base 2025-08-14T21:49:36.5139412Z * [new branch] gh/anijain2305/841/head -> origin/gh/anijain2305/841/head 2025-08-14T21:49:36.5139925Z * [new branch] gh/anijain2305/841/orig -> origin/gh/anijain2305/841/orig 2025-08-14T21:49:36.5140440Z * [new branch] gh/anijain2305/842/base -> origin/gh/anijain2305/842/base 2025-08-14T21:49:36.5140960Z * [new branch] gh/anijain2305/842/head -> origin/gh/anijain2305/842/head 2025-08-14T21:49:36.5141619Z * [new branch] gh/anijain2305/842/orig -> origin/gh/anijain2305/842/orig 2025-08-14T21:49:36.5142145Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-08-14T21:49:36.5142659Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-08-14T21:49:36.5143185Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-08-14T21:49:36.5143709Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-08-14T21:49:36.5144224Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-08-14T21:49:36.5144746Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-08-14T21:49:36.5145258Z * [new branch] gh/anijain2305/845/base -> origin/gh/anijain2305/845/base 2025-08-14T21:49:36.5145774Z * [new branch] gh/anijain2305/845/head -> origin/gh/anijain2305/845/head 2025-08-14T21:49:36.5146295Z * [new branch] gh/anijain2305/845/orig -> origin/gh/anijain2305/845/orig 2025-08-14T21:49:36.5146820Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-08-14T21:49:36.5147349Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-08-14T21:49:36.5147861Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-08-14T21:49:36.5148386Z * [new branch] gh/anijain2305/847/base -> origin/gh/anijain2305/847/base 2025-08-14T21:49:36.5148896Z * [new branch] gh/anijain2305/847/head -> origin/gh/anijain2305/847/head 2025-08-14T21:49:36.5149412Z * [new branch] gh/anijain2305/847/orig -> origin/gh/anijain2305/847/orig 2025-08-14T21:49:36.5150068Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-08-14T21:49:36.5150691Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-08-14T21:49:36.5151214Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-08-14T21:49:36.5151721Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-08-14T21:49:36.5152231Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-08-14T21:49:36.5152741Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-08-14T21:49:36.5153249Z * [new branch] gh/ankitageorge/10/base -> origin/gh/ankitageorge/10/base 2025-08-14T21:49:36.5153784Z * [new branch] gh/ankitageorge/10/head -> origin/gh/ankitageorge/10/head 2025-08-14T21:49:36.5154313Z * [new branch] gh/ankitageorge/10/orig -> origin/gh/ankitageorge/10/orig 2025-08-14T21:49:36.5154855Z * [new branch] gh/ankitageorge/12/base -> origin/gh/ankitageorge/12/base 2025-08-14T21:49:36.5155394Z * [new branch] gh/ankitageorge/12/head -> origin/gh/ankitageorge/12/head 2025-08-14T21:49:36.5155919Z * [new branch] gh/ankitageorge/12/orig -> origin/gh/ankitageorge/12/orig 2025-08-14T21:49:36.5156451Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-08-14T21:49:36.5591807Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-08-14T21:49:36.5592457Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-08-14T21:49:36.5593110Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-08-14T21:49:36.5593722Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-08-14T21:49:36.5594297Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-08-14T21:49:36.5595045Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-08-14T21:49:36.5595682Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-08-14T21:49:36.5596279Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-08-14T21:49:36.5596897Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-08-14T21:49:36.5597442Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-08-14T21:49:36.5597966Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-08-14T21:49:36.5598508Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-08-14T21:49:36.5599042Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-08-14T21:49:36.5599573Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-08-14T21:49:36.5600121Z * [new branch] gh/ankitageorge/18/base -> origin/gh/ankitageorge/18/base 2025-08-14T21:49:36.5600649Z * [new branch] gh/ankitageorge/18/head -> origin/gh/ankitageorge/18/head 2025-08-14T21:49:36.5601181Z * [new branch] gh/ankitageorge/18/orig -> origin/gh/ankitageorge/18/orig 2025-08-14T21:49:36.5601720Z * [new branch] gh/ankitageorge/19/base -> origin/gh/ankitageorge/19/base 2025-08-14T21:49:36.5602295Z * [new branch] gh/ankitageorge/19/head -> origin/gh/ankitageorge/19/head 2025-08-14T21:49:36.5602949Z * [new branch] gh/ankitageorge/19/orig -> origin/gh/ankitageorge/19/orig 2025-08-14T21:49:36.5603632Z * [new branch] gh/ankitageorge/20/base -> origin/gh/ankitageorge/20/base 2025-08-14T21:49:36.5604226Z * [new branch] gh/ankitageorge/20/head -> origin/gh/ankitageorge/20/head 2025-08-14T21:49:36.5604964Z * [new branch] gh/ankitageorge/20/orig -> origin/gh/ankitageorge/20/orig 2025-08-14T21:49:36.5605605Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-08-14T21:49:36.5606197Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-08-14T21:49:36.5606818Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-08-14T21:49:36.5607432Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-08-14T21:49:36.5608003Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-08-14T21:49:36.5608549Z * [new branch] gh/anshul-si/10/base -> origin/gh/anshul-si/10/base 2025-08-14T21:49:36.5609154Z * [new branch] gh/anshul-si/10/head -> origin/gh/anshul-si/10/head 2025-08-14T21:49:36.5609693Z * [new branch] gh/anshul-si/10/orig -> origin/gh/anshul-si/10/orig 2025-08-14T21:49:36.5610298Z * [new branch] gh/anshul-si/11/base -> origin/gh/anshul-si/11/base 2025-08-14T21:49:36.5610851Z * [new branch] gh/anshul-si/11/head -> origin/gh/anshul-si/11/head 2025-08-14T21:49:36.5611453Z * [new branch] gh/anshul-si/11/orig -> origin/gh/anshul-si/11/orig 2025-08-14T21:49:36.5611959Z * [new branch] gh/anshul-si/12/base -> origin/gh/anshul-si/12/base 2025-08-14T21:49:36.5612455Z * [new branch] gh/anshul-si/12/head -> origin/gh/anshul-si/12/head 2025-08-14T21:49:36.5612955Z * [new branch] gh/anshul-si/12/orig -> origin/gh/anshul-si/12/orig 2025-08-14T21:49:36.5613445Z * [new branch] gh/anshul-si/13/base -> origin/gh/anshul-si/13/base 2025-08-14T21:49:36.5613953Z * [new branch] gh/anshul-si/13/head -> origin/gh/anshul-si/13/head 2025-08-14T21:49:36.5614540Z * [new branch] gh/anshul-si/13/orig -> origin/gh/anshul-si/13/orig 2025-08-14T21:49:36.5615046Z * [new branch] gh/anshul-si/14/base -> origin/gh/anshul-si/14/base 2025-08-14T21:49:36.5615566Z * [new branch] gh/anshul-si/14/head -> origin/gh/anshul-si/14/head 2025-08-14T21:49:36.5616062Z * [new branch] gh/anshul-si/14/orig -> origin/gh/anshul-si/14/orig 2025-08-14T21:49:36.5616610Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-08-14T21:49:36.5617170Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-08-14T21:49:36.5617752Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-08-14T21:49:36.6023476Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-08-14T21:49:36.6024052Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-08-14T21:49:36.6024587Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-08-14T21:49:36.6025098Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-08-14T21:49:36.6025591Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-08-14T21:49:36.6026101Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-08-14T21:49:36.6026600Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-08-14T21:49:36.6027083Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-08-14T21:49:36.6027571Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-08-14T21:49:36.6029071Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-08-14T21:49:36.6029569Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-08-14T21:49:36.6030233Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-08-14T21:49:36.6030728Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-08-14T21:49:36.6031225Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-08-14T21:49:36.6031713Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-08-14T21:49:36.6032201Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-08-14T21:49:36.6032684Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-08-14T21:49:36.6033185Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-08-14T21:49:36.6034678Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-08-14T21:49:36.6035179Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-08-14T21:49:36.6035674Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-08-14T21:49:36.6036160Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-08-14T21:49:36.6036646Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-08-14T21:49:36.6037140Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-08-14T21:49:36.6037623Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-08-14T21:49:36.6038107Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-08-14T21:49:36.6038588Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-08-14T21:49:36.6039652Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-08-14T21:49:36.6040674Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-08-14T21:49:36.6041168Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-08-14T21:49:36.6041666Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-08-14T21:49:36.6042155Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-08-14T21:49:36.6042644Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-08-14T21:49:36.6043202Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-08-14T21:49:36.6043685Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-08-14T21:49:36.6044182Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-08-14T21:49:36.6044670Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-08-14T21:49:36.6046187Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-08-14T21:49:36.6046689Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-08-14T21:49:36.6047184Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-08-14T21:49:36.6047675Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-08-14T21:49:36.6048159Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-08-14T21:49:36.6048644Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-08-14T21:49:36.6049125Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-08-14T21:49:36.6049615Z * [new branch] gh/anshul-si/6/base -> origin/gh/anshul-si/6/base 2025-08-14T21:49:36.6050099Z * [new branch] gh/anshul-si/6/head -> origin/gh/anshul-si/6/head 2025-08-14T21:49:36.6464760Z * [new branch] gh/anshul-si/6/orig -> origin/gh/anshul-si/6/orig 2025-08-14T21:49:36.6465333Z * [new branch] gh/anshul-si/7/base -> origin/gh/anshul-si/7/base 2025-08-14T21:49:36.6465827Z * [new branch] gh/anshul-si/7/head -> origin/gh/anshul-si/7/head 2025-08-14T21:49:36.6467293Z * [new branch] gh/anshul-si/7/orig -> origin/gh/anshul-si/7/orig 2025-08-14T21:49:36.6467811Z * [new branch] gh/anshul-si/8/base -> origin/gh/anshul-si/8/base 2025-08-14T21:49:36.6468305Z * [new branch] gh/anshul-si/8/head -> origin/gh/anshul-si/8/head 2025-08-14T21:49:36.6468801Z * [new branch] gh/anshul-si/8/orig -> origin/gh/anshul-si/8/orig 2025-08-14T21:49:36.6469291Z * [new branch] gh/anshul-si/9/base -> origin/gh/anshul-si/9/base 2025-08-14T21:49:36.6469786Z * [new branch] gh/anshul-si/9/head -> origin/gh/anshul-si/9/head 2025-08-14T21:49:36.6470286Z * [new branch] gh/anshul-si/9/orig -> origin/gh/anshul-si/9/orig 2025-08-14T21:49:36.6470777Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-08-14T21:49:36.6471292Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-08-14T21:49:36.6471788Z * [new branch] gh/aorenste/235/base -> origin/gh/aorenste/235/base 2025-08-14T21:49:36.6473266Z * [new branch] gh/aorenste/235/head -> origin/gh/aorenste/235/head 2025-08-14T21:49:36.6473781Z * [new branch] gh/aorenste/235/orig -> origin/gh/aorenste/235/orig 2025-08-14T21:49:36.6474280Z * [new branch] gh/aorenste/236/base -> origin/gh/aorenste/236/base 2025-08-14T21:49:36.6474779Z * [new branch] gh/aorenste/236/head -> origin/gh/aorenste/236/head 2025-08-14T21:49:36.6475416Z * [new branch] gh/aorenste/236/orig -> origin/gh/aorenste/236/orig 2025-08-14T21:49:36.6475924Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-08-14T21:49:36.6476436Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-08-14T21:49:36.6476932Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-08-14T21:49:36.6477436Z * [new branch] gh/aorenste/238/base -> origin/gh/aorenste/238/base 2025-08-14T21:49:36.6478929Z * [new branch] gh/aorenste/238/head -> origin/gh/aorenste/238/head 2025-08-14T21:49:36.6479436Z * [new branch] gh/aorenste/238/orig -> origin/gh/aorenste/238/orig 2025-08-14T21:49:36.6479939Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-08-14T21:49:36.6480430Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-08-14T21:49:36.6480930Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-08-14T21:49:36.6481405Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-08-14T21:49:36.6481888Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-08-14T21:49:36.6482373Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-08-14T21:49:36.6482910Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-08-14T21:49:36.6483397Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-08-14T21:49:36.6484870Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-08-14T21:49:36.6485359Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-08-14T21:49:36.6485846Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-08-14T21:49:36.6486456Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-08-14T21:49:36.6486953Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-08-14T21:49:36.6487437Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-08-14T21:49:36.6487921Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-08-14T21:49:36.6488406Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-08-14T21:49:36.6488896Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-08-14T21:49:36.6490371Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-08-14T21:49:36.6490857Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-08-14T21:49:36.6491401Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-08-14T21:49:36.6491958Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-08-14T21:49:36.6492519Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-08-14T21:49:36.6493068Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-08-14T21:49:36.6915463Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-08-14T21:49:36.6916074Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-08-14T21:49:36.6916633Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-08-14T21:49:36.6917179Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-08-14T21:49:36.6917804Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-08-14T21:49:36.6918498Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-08-14T21:49:36.6919063Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-08-14T21:49:36.6920242Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-08-14T21:49:36.6921218Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-08-14T21:49:36.6921790Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-08-14T21:49:36.6922344Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-08-14T21:49:36.6922983Z * [new branch] gh/benjaminglass1/94/base -> origin/gh/benjaminglass1/94/base 2025-08-14T21:49:36.6923533Z * [new branch] gh/benjaminglass1/94/head -> origin/gh/benjaminglass1/94/head 2025-08-14T21:49:36.6924100Z * [new branch] gh/benjaminglass1/94/orig -> origin/gh/benjaminglass1/94/orig 2025-08-14T21:49:36.6924661Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-08-14T21:49:36.6925204Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-08-14T21:49:36.6926759Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-08-14T21:49:36.6927310Z * [new branch] gh/benjaminglass1/96/base -> origin/gh/benjaminglass1/96/base 2025-08-14T21:49:36.6927877Z * [new branch] gh/benjaminglass1/96/head -> origin/gh/benjaminglass1/96/head 2025-08-14T21:49:36.6928433Z * [new branch] gh/benjaminglass1/96/orig -> origin/gh/benjaminglass1/96/orig 2025-08-14T21:49:36.6928982Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-08-14T21:49:36.6929657Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-08-14T21:49:36.6930206Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-08-14T21:49:36.6930763Z * [new branch] gh/benjaminglass1/98/base -> origin/gh/benjaminglass1/98/base 2025-08-14T21:49:36.6932295Z * [new branch] gh/benjaminglass1/98/head -> origin/gh/benjaminglass1/98/head 2025-08-14T21:49:36.6932852Z * [new branch] gh/benjaminglass1/98/orig -> origin/gh/benjaminglass1/98/orig 2025-08-14T21:49:36.6933397Z * [new branch] gh/bobrenjc93/478/base -> origin/gh/bobrenjc93/478/base 2025-08-14T21:49:36.6933911Z * [new branch] gh/bobrenjc93/478/head -> origin/gh/bobrenjc93/478/head 2025-08-14T21:49:36.6934426Z * [new branch] gh/bobrenjc93/478/orig -> origin/gh/bobrenjc93/478/orig 2025-08-14T21:49:36.6934931Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-08-14T21:49:36.6935444Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-08-14T21:49:36.6935951Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-08-14T21:49:36.6936452Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-08-14T21:49:36.6937529Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-08-14T21:49:36.6938451Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-08-14T21:49:36.6938960Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-08-14T21:49:36.6939477Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-08-14T21:49:36.6939978Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-08-14T21:49:36.6940591Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-08-14T21:49:36.6941096Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-08-14T21:49:36.6941614Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-08-14T21:49:36.6942125Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-08-14T21:49:36.6942636Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-08-14T21:49:36.6944139Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-08-14T21:49:36.6944653Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-08-14T21:49:36.7328126Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-08-14T21:49:36.7328719Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-08-14T21:49:36.7329264Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-08-14T21:49:36.7329794Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-08-14T21:49:36.7330313Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-08-14T21:49:36.7330825Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-08-14T21:49:36.7331340Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-08-14T21:49:36.7331845Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-08-14T21:49:36.7332359Z * [new branch] gh/bobrenjc93/534/base -> origin/gh/bobrenjc93/534/base 2025-08-14T21:49:36.7332875Z * [new branch] gh/bobrenjc93/534/head -> origin/gh/bobrenjc93/534/head 2025-08-14T21:49:36.7333535Z * [new branch] gh/bobrenjc93/534/orig -> origin/gh/bobrenjc93/534/orig 2025-08-14T21:49:36.7334064Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-08-14T21:49:36.7334571Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-08-14T21:49:36.7335095Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-08-14T21:49:36.7335615Z * [new branch] gh/bobrenjc93/536/base -> origin/gh/bobrenjc93/536/base 2025-08-14T21:49:36.7336123Z * [new branch] gh/bobrenjc93/536/head -> origin/gh/bobrenjc93/536/head 2025-08-14T21:49:36.7336632Z * [new branch] gh/bobrenjc93/536/orig -> origin/gh/bobrenjc93/536/orig 2025-08-14T21:49:36.7337136Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-08-14T21:49:36.7337656Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-08-14T21:49:36.7338167Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-08-14T21:49:36.7338677Z * [new branch] gh/bobrenjc93/538/base -> origin/gh/bobrenjc93/538/base 2025-08-14T21:49:36.7339196Z * [new branch] gh/bobrenjc93/538/head -> origin/gh/bobrenjc93/538/head 2025-08-14T21:49:36.7339704Z * [new branch] gh/bobrenjc93/538/orig -> origin/gh/bobrenjc93/538/orig 2025-08-14T21:49:36.7340217Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-08-14T21:49:36.7340722Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-08-14T21:49:36.7341241Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-08-14T21:49:36.7341759Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-08-14T21:49:36.7342355Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-08-14T21:49:36.7342893Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-08-14T21:49:36.7343402Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-08-14T21:49:36.7343919Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-08-14T21:49:36.7344437Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-08-14T21:49:36.7344935Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-08-14T21:49:36.7345446Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-08-14T21:49:36.7345948Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-08-14T21:49:36.7346459Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-08-14T21:49:36.7346981Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-08-14T21:49:36.7347487Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-08-14T21:49:36.7347998Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-08-14T21:49:36.7348506Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-08-14T21:49:36.7349015Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-08-14T21:49:36.7349529Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-08-14T21:49:36.7350037Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-08-14T21:49:36.7350561Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-08-14T21:49:36.7351152Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-08-14T21:49:36.7814527Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-08-14T21:49:36.7815117Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-08-14T21:49:36.7815632Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-08-14T21:49:36.7816154Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-08-14T21:49:36.7816656Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-08-14T21:49:36.7817170Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-08-14T21:49:36.7817731Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-08-14T21:49:36.7818288Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-08-14T21:49:36.7818820Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-08-14T21:49:36.7819322Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-08-14T21:49:36.7819833Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-08-14T21:49:36.7820386Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-08-14T21:49:36.7820922Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-08-14T21:49:36.7821427Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-08-14T21:49:36.7821873Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-08-14T21:49:36.7822320Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-08-14T21:49:36.7822773Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-08-14T21:49:36.7823400Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-08-14T21:49:36.7823898Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-08-14T21:49:36.7824338Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-08-14T21:49:36.7824792Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-08-14T21:49:36.7825244Z * [new branch] gh/c00w/50/base -> origin/gh/c00w/50/base 2025-08-14T21:49:36.7825688Z * [new branch] gh/c00w/50/head -> origin/gh/c00w/50/head 2025-08-14T21:49:36.7826135Z * [new branch] gh/c00w/50/orig -> origin/gh/c00w/50/orig 2025-08-14T21:49:36.7826574Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-08-14T21:49:36.7827014Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-08-14T21:49:36.7827463Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-08-14T21:49:36.7827899Z * [new branch] gh/c00w/52/base -> origin/gh/c00w/52/base 2025-08-14T21:49:36.7828350Z * [new branch] gh/c00w/52/head -> origin/gh/c00w/52/head 2025-08-14T21:49:36.7828784Z * [new branch] gh/c00w/52/orig -> origin/gh/c00w/52/orig 2025-08-14T21:49:36.7829272Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-08-14T21:49:36.7829752Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-08-14T21:49:36.7830198Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-08-14T21:49:36.7830642Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-08-14T21:49:36.7831078Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-08-14T21:49:36.7831611Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-08-14T21:49:36.7832088Z * [new branch] gh/chenmillie/1/base -> origin/gh/chenmillie/1/base 2025-08-14T21:49:36.7832610Z * [new branch] gh/chenmillie/1/head -> origin/gh/chenmillie/1/head 2025-08-14T21:49:36.7833128Z * [new branch] gh/chenmillie/1/orig -> origin/gh/chenmillie/1/orig 2025-08-14T21:49:36.7833622Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-08-14T21:49:36.7834102Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-08-14T21:49:36.7834571Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-08-14T21:49:36.7835169Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-08-14T21:49:36.7835705Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-08-14T21:49:36.7836237Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-08-14T21:49:36.7836770Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-08-14T21:49:36.7837297Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-08-14T21:49:36.8257269Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-08-14T21:49:36.8257826Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-08-14T21:49:36.8258356Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-08-14T21:49:36.8258903Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-08-14T21:49:36.8259436Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-08-14T21:49:36.8260109Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-08-14T21:49:36.8260648Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-08-14T21:49:36.8261178Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-08-14T21:49:36.8261713Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-08-14T21:49:36.8262285Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-08-14T21:49:36.8262858Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-08-14T21:49:36.8263411Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-08-14T21:49:36.8263935Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-08-14T21:49:36.8264470Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-08-14T21:49:36.8264995Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-08-14T21:49:36.8265535Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-08-14T21:49:36.8266069Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-08-14T21:49:36.8266597Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-08-14T21:49:36.8267133Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-08-14T21:49:36.8267656Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-08-14T21:49:36.8268189Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-08-14T21:49:36.8268720Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-08-14T21:49:36.8269336Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-08-14T21:49:36.8269879Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-08-14T21:49:36.8270416Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-08-14T21:49:36.8270955Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-08-14T21:49:36.8271492Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-08-14T21:49:36.8272128Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-08-14T21:49:36.8272697Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-08-14T21:49:36.8273291Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-08-14T21:49:36.8273892Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-08-14T21:49:36.8274494Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-08-14T21:49:36.8275087Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-08-14T21:49:36.8275664Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-08-14T21:49:36.8276259Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-08-14T21:49:36.8276822Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-08-14T21:49:36.8277406Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-08-14T21:49:36.8278006Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-08-14T21:49:36.8278569Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-08-14T21:49:36.8279249Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-08-14T21:49:36.8279826Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-08-14T21:49:36.8280418Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-08-14T21:49:36.8281012Z * [new branch] gh/coconutruben/26/base -> origin/gh/coconutruben/26/base 2025-08-14T21:49:36.8281582Z * [new branch] gh/coconutruben/26/head -> origin/gh/coconutruben/26/head 2025-08-14T21:49:36.8296866Z * [new branch] gh/coconutruben/26/orig -> origin/gh/coconutruben/26/orig 2025-08-14T21:49:36.8693033Z * [new branch] gh/coconutruben/27/base -> origin/gh/coconutruben/27/base 2025-08-14T21:49:36.8693628Z * [new branch] gh/coconutruben/27/head -> origin/gh/coconutruben/27/head 2025-08-14T21:49:36.8694200Z * [new branch] gh/coconutruben/27/orig -> origin/gh/coconutruben/27/orig 2025-08-14T21:49:36.8694768Z * [new branch] gh/codingwithsurya/10/base -> origin/gh/codingwithsurya/10/base 2025-08-14T21:49:36.8695362Z * [new branch] gh/codingwithsurya/10/head -> origin/gh/codingwithsurya/10/head 2025-08-14T21:49:36.8695940Z * [new branch] gh/codingwithsurya/10/orig -> origin/gh/codingwithsurya/10/orig 2025-08-14T21:49:36.8696523Z * [new branch] gh/codingwithsurya/11/base -> origin/gh/codingwithsurya/11/base 2025-08-14T21:49:36.8697103Z * [new branch] gh/codingwithsurya/11/head -> origin/gh/codingwithsurya/11/head 2025-08-14T21:49:36.8697676Z * [new branch] gh/codingwithsurya/11/orig -> origin/gh/codingwithsurya/11/orig 2025-08-14T21:49:36.8698258Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-08-14T21:49:36.8698824Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-08-14T21:49:36.8699539Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-08-14T21:49:36.8700118Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-08-14T21:49:36.8700681Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-08-14T21:49:36.8701260Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-08-14T21:49:36.8701842Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-08-14T21:49:36.8702412Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-08-14T21:49:36.8702981Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-08-14T21:49:36.8703552Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-08-14T21:49:36.8704128Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-08-14T21:49:36.8704689Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-08-14T21:49:36.8705261Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-08-14T21:49:36.8705835Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-08-14T21:49:36.8706393Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-08-14T21:49:36.8706970Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-08-14T21:49:36.8707541Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-08-14T21:49:36.8708170Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-08-14T21:49:36.8708903Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-08-14T21:49:36.8709477Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-08-14T21:49:36.8710056Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-08-14T21:49:36.8710622Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-08-14T21:49:36.8711191Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-08-14T21:49:36.8711770Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-08-14T21:49:36.8712337Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-08-14T21:49:36.8712910Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-08-14T21:49:36.8713482Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-08-14T21:49:36.8714056Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-08-14T21:49:36.8714626Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-08-14T21:49:36.8715185Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-08-14T21:49:36.8715755Z * [new branch] gh/codingwithsurya/8/base -> origin/gh/codingwithsurya/8/base 2025-08-14T21:49:36.8716326Z * [new branch] gh/codingwithsurya/8/head -> origin/gh/codingwithsurya/8/head 2025-08-14T21:49:36.8716893Z * [new branch] gh/codingwithsurya/8/orig -> origin/gh/codingwithsurya/8/orig 2025-08-14T21:49:36.8717464Z * [new branch] gh/codingwithsurya/9/base -> origin/gh/codingwithsurya/9/base 2025-08-14T21:49:36.8718027Z * [new branch] gh/codingwithsurya/9/head -> origin/gh/codingwithsurya/9/head 2025-08-14T21:49:36.9139877Z * [new branch] gh/codingwithsurya/9/orig -> origin/gh/codingwithsurya/9/orig 2025-08-14T21:49:36.9140518Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-08-14T21:49:36.9141147Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-08-14T21:49:36.9141724Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-08-14T21:49:36.9142327Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-08-14T21:49:36.9142899Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-08-14T21:49:36.9143456Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-08-14T21:49:36.9143974Z * [new branch] gh/colinchan15/4/base -> origin/gh/colinchan15/4/base 2025-08-14T21:49:36.9144507Z * [new branch] gh/colinchan15/4/head -> origin/gh/colinchan15/4/head 2025-08-14T21:49:36.9145019Z * [new branch] gh/colinchan15/5/base -> origin/gh/colinchan15/5/base 2025-08-14T21:49:36.9145545Z * [new branch] gh/colinchan15/5/head -> origin/gh/colinchan15/5/head 2025-08-14T21:49:36.9146053Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-08-14T21:49:36.9146580Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-08-14T21:49:36.9147126Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-08-14T21:49:36.9147691Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-08-14T21:49:36.9148300Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-08-14T21:49:36.9148894Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-08-14T21:49:36.9149660Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-08-14T21:49:36.9150223Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-08-14T21:49:36.9150773Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-08-14T21:49:36.9151334Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-08-14T21:49:36.9151890Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-08-14T21:49:36.9152449Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-08-14T21:49:36.9153000Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-08-14T21:49:36.9153544Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-08-14T21:49:36.9154105Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-08-14T21:49:36.9154700Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-08-14T21:49:36.9155339Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-08-14T21:49:36.9155893Z * [new branch] gh/davidberard98/389/base -> origin/gh/davidberard98/389/base 2025-08-14T21:49:36.9156435Z * [new branch] gh/davidberard98/389/head -> origin/gh/davidberard98/389/head 2025-08-14T21:49:36.9156986Z * [new branch] gh/davidberard98/389/orig -> origin/gh/davidberard98/389/orig 2025-08-14T21:49:36.9157530Z * [new branch] gh/davidberard98/390/base -> origin/gh/davidberard98/390/base 2025-08-14T21:49:36.9158089Z * [new branch] gh/davidberard98/390/head -> origin/gh/davidberard98/390/head 2025-08-14T21:49:36.9158728Z * [new branch] gh/davidberard98/390/orig -> origin/gh/davidberard98/390/orig 2025-08-14T21:49:36.9159282Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-08-14T21:49:36.9159834Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-08-14T21:49:36.9160378Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-08-14T21:49:36.9161128Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-08-14T21:49:36.9161985Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-08-14T21:49:36.9162634Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-08-14T21:49:36.9163183Z * [new branch] gh/davidberard98/393/base -> origin/gh/davidberard98/393/base 2025-08-14T21:49:36.9163729Z * [new branch] gh/davidberard98/393/head -> origin/gh/davidberard98/393/head 2025-08-14T21:49:36.9164294Z * [new branch] gh/davidberard98/393/orig -> origin/gh/davidberard98/393/orig 2025-08-14T21:49:36.9164837Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-08-14T21:49:36.9165392Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-08-14T21:49:36.9722190Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-08-14T21:49:36.9722793Z * [new branch] gh/davidberard98/395/base -> origin/gh/davidberard98/395/base 2025-08-14T21:49:36.9723360Z * [new branch] gh/davidberard98/395/head -> origin/gh/davidberard98/395/head 2025-08-14T21:49:36.9723913Z * [new branch] gh/davidberard98/395/orig -> origin/gh/davidberard98/395/orig 2025-08-14T21:49:36.9724476Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-08-14T21:49:36.9725182Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-08-14T21:49:36.9725726Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-08-14T21:49:36.9726281Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-08-14T21:49:36.9726832Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-08-14T21:49:36.9727383Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-08-14T21:49:36.9727932Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-08-14T21:49:36.9728478Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-08-14T21:49:36.9729027Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-08-14T21:49:36.9729570Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-08-14T21:49:36.9730099Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-08-14T21:49:36.9730621Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-08-14T21:49:36.9731135Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-08-14T21:49:36.9731648Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-08-14T21:49:36.9732157Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-08-14T21:49:36.9732677Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-08-14T21:49:36.9733188Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-08-14T21:49:36.9733724Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-08-14T21:49:36.9734974Z * [new branch] gh/desertfire/590/base -> origin/gh/desertfire/590/base 2025-08-14T21:49:36.9735499Z * [new branch] gh/desertfire/590/head -> origin/gh/desertfire/590/head 2025-08-14T21:49:36.9736022Z * [new branch] gh/desertfire/590/orig -> origin/gh/desertfire/590/orig 2025-08-14T21:49:36.9736541Z * [new branch] gh/desertfire/591/base -> origin/gh/desertfire/591/base 2025-08-14T21:49:36.9737051Z * [new branch] gh/desertfire/591/head -> origin/gh/desertfire/591/head 2025-08-14T21:49:36.9737568Z * [new branch] gh/desertfire/591/orig -> origin/gh/desertfire/591/orig 2025-08-14T21:49:36.9738078Z * [new branch] gh/desertfire/592/base -> origin/gh/desertfire/592/base 2025-08-14T21:49:36.9738599Z * [new branch] gh/desertfire/592/head -> origin/gh/desertfire/592/head 2025-08-14T21:49:36.9739129Z * [new branch] gh/desertfire/592/orig -> origin/gh/desertfire/592/orig 2025-08-14T21:49:36.9739641Z * [new branch] gh/desertfire/593/base -> origin/gh/desertfire/593/base 2025-08-14T21:49:36.9740155Z * [new branch] gh/desertfire/593/head -> origin/gh/desertfire/593/head 2025-08-14T21:49:36.9740667Z * [new branch] gh/desertfire/593/orig -> origin/gh/desertfire/593/orig 2025-08-14T21:49:36.9741187Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-08-14T21:49:36.9741700Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-08-14T21:49:36.9742217Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-08-14T21:49:36.9742735Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-08-14T21:49:36.9743245Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-08-14T21:49:36.9743852Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-08-14T21:49:36.9744370Z * [new branch] gh/desertfire/596/base -> origin/gh/desertfire/596/base 2025-08-14T21:49:36.9744894Z * [new branch] gh/desertfire/596/head -> origin/gh/desertfire/596/head 2025-08-14T21:49:36.9745424Z * [new branch] gh/desertfire/596/orig -> origin/gh/desertfire/596/orig 2025-08-14T21:49:36.9745941Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-08-14T21:49:36.9746464Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-08-14T21:49:37.0241884Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-08-14T21:49:37.0242429Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-08-14T21:49:37.0242940Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-08-14T21:49:37.0243463Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-08-14T21:49:37.0244036Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-08-14T21:49:37.0244706Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-08-14T21:49:37.0245220Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-08-14T21:49:37.0245732Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-08-14T21:49:37.0246228Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-08-14T21:49:37.0246732Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-08-14T21:49:37.0247220Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-08-14T21:49:37.0247869Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-08-14T21:49:37.0248406Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-08-14T21:49:37.0248915Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-08-14T21:49:37.0249414Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-08-14T21:49:37.0249898Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-08-14T21:49:37.0250391Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-08-14T21:49:37.0250883Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-08-14T21:49:37.0251376Z * [new branch] gh/drisspg/158/base -> origin/gh/drisspg/158/base 2025-08-14T21:49:37.0251861Z * [new branch] gh/drisspg/158/head -> origin/gh/drisspg/158/head 2025-08-14T21:49:37.0252407Z * [new branch] gh/drisspg/158/orig -> origin/gh/drisspg/158/orig 2025-08-14T21:49:37.0252890Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-08-14T21:49:37.0253386Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-08-14T21:49:37.0253963Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-08-14T21:49:37.0254535Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-08-14T21:49:37.0255094Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-08-14T21:49:37.0255575Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-08-14T21:49:37.0256063Z * [new branch] gh/drisspg/168/base -> origin/gh/drisspg/168/base 2025-08-14T21:49:37.0256539Z * [new branch] gh/drisspg/168/head -> origin/gh/drisspg/168/head 2025-08-14T21:49:37.0262917Z * [new branch] gh/drisspg/168/orig -> origin/gh/drisspg/168/orig 2025-08-14T21:49:37.0263814Z * [new branch] gh/drisspg/169/base -> origin/gh/drisspg/169/base 2025-08-14T21:49:37.0264323Z * [new branch] gh/drisspg/169/head -> origin/gh/drisspg/169/head 2025-08-14T21:49:37.0264830Z * [new branch] gh/drisspg/169/orig -> origin/gh/drisspg/169/orig 2025-08-14T21:49:37.0265311Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-08-14T21:49:37.0265809Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-08-14T21:49:37.0266292Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-08-14T21:49:37.0266774Z * [new branch] gh/drisspg/171/base -> origin/gh/drisspg/171/base 2025-08-14T21:49:37.0267259Z * [new branch] gh/drisspg/171/head -> origin/gh/drisspg/171/head 2025-08-14T21:49:37.0267753Z * [new branch] gh/drisspg/171/orig -> origin/gh/drisspg/171/orig 2025-08-14T21:49:37.0268246Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-08-14T21:49:37.0268779Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-08-14T21:49:37.0269264Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-08-14T21:49:37.0269871Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-08-14T21:49:37.0270385Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-08-14T21:49:37.0270883Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-08-14T21:49:37.0271460Z * [new branch] gh/drisspg/174/base -> origin/gh/drisspg/174/base 2025-08-14T21:49:37.0272126Z * [new branch] gh/drisspg/174/head -> origin/gh/drisspg/174/head 2025-08-14T21:49:37.2092033Z * [new branch] gh/drisspg/174/orig -> origin/gh/drisspg/174/orig 2025-08-14T21:49:37.2092627Z * [new branch] gh/drisspg/175/base -> origin/gh/drisspg/175/base 2025-08-14T21:49:37.2093148Z * [new branch] gh/drisspg/175/head -> origin/gh/drisspg/175/head 2025-08-14T21:49:37.2093644Z * [new branch] gh/drisspg/175/orig -> origin/gh/drisspg/175/orig 2025-08-14T21:49:37.2094139Z * [new branch] gh/drisspg/176/base -> origin/gh/drisspg/176/base 2025-08-14T21:49:37.2094626Z * [new branch] gh/drisspg/176/head -> origin/gh/drisspg/176/head 2025-08-14T21:49:37.2095119Z * [new branch] gh/drisspg/176/orig -> origin/gh/drisspg/176/orig 2025-08-14T21:49:37.2095598Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-08-14T21:49:37.2096114Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-08-14T21:49:37.2096598Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-08-14T21:49:37.2097085Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-08-14T21:49:37.2097628Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-08-14T21:49:37.2098156Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-08-14T21:49:37.2098647Z * [new branch] gh/drisspg/179/base -> origin/gh/drisspg/179/base 2025-08-14T21:49:37.2099127Z * [new branch] gh/drisspg/179/head -> origin/gh/drisspg/179/head 2025-08-14T21:49:37.2099616Z * [new branch] gh/drisspg/179/orig -> origin/gh/drisspg/179/orig 2025-08-14T21:49:37.2100109Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-08-14T21:49:37.2100728Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-08-14T21:49:37.2101229Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-08-14T21:49:37.2101714Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-08-14T21:49:37.2102210Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-08-14T21:49:37.2102699Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-08-14T21:49:37.2103223Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-08-14T21:49:37.2103770Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-08-14T21:49:37.2104251Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-08-14T21:49:37.2104762Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-08-14T21:49:37.2105273Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-08-14T21:49:37.2105755Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-08-14T21:49:37.2106251Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-08-14T21:49:37.2106740Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-08-14T21:49:37.2107249Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-08-14T21:49:37.2107739Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-08-14T21:49:37.2108231Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-08-14T21:49:37.2108733Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-08-14T21:49:37.2109416Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-08-14T21:49:37.2109918Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-08-14T21:49:37.2110422Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-08-14T21:49:37.2110914Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-08-14T21:49:37.2111413Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-08-14T21:49:37.2111907Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-08-14T21:49:37.2112412Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-08-14T21:49:37.2112898Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-08-14T21:49:37.2113399Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-08-14T21:49:37.2113906Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-08-14T21:49:37.2114394Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-08-14T21:49:37.2114936Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-08-14T21:49:37.2115476Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-08-14T21:49:37.2588156Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-08-14T21:49:37.2588692Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-08-14T21:49:37.2589185Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-08-14T21:49:37.2589689Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-08-14T21:49:37.2590181Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-08-14T21:49:37.2590807Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-08-14T21:49:37.2591303Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-08-14T21:49:37.2591810Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-08-14T21:49:37.2592320Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-08-14T21:49:37.2592830Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-08-14T21:49:37.2593365Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-08-14T21:49:37.2593911Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-08-14T21:49:37.2594401Z * [new branch] gh/eellison/810/base -> origin/gh/eellison/810/base 2025-08-14T21:49:37.2594912Z * [new branch] gh/eellison/810/head -> origin/gh/eellison/810/head 2025-08-14T21:49:37.2595412Z * [new branch] gh/eellison/810/orig -> origin/gh/eellison/810/orig 2025-08-14T21:49:37.2595904Z * [new branch] gh/eellison/811/base -> origin/gh/eellison/811/base 2025-08-14T21:49:37.2596398Z * [new branch] gh/eellison/811/head -> origin/gh/eellison/811/head 2025-08-14T21:49:37.2596882Z * [new branch] gh/eellison/811/orig -> origin/gh/eellison/811/orig 2025-08-14T21:49:37.2597380Z * [new branch] gh/eellison/812/base -> origin/gh/eellison/812/base 2025-08-14T21:49:37.2597862Z * [new branch] gh/eellison/812/head -> origin/gh/eellison/812/head 2025-08-14T21:49:37.2598360Z * [new branch] gh/eellison/812/orig -> origin/gh/eellison/812/orig 2025-08-14T21:49:37.2598875Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-08-14T21:49:37.2599519Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-08-14T21:49:37.2600023Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-08-14T21:49:37.2600557Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-08-14T21:49:37.2601030Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-08-14T21:49:37.2601491Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-08-14T21:49:37.2601940Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-08-14T21:49:37.2602393Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-08-14T21:49:37.2602845Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-08-14T21:49:37.2603306Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-08-14T21:49:37.2603772Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-08-14T21:49:37.2604224Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-08-14T21:49:37.2604720Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-08-14T21:49:37.2605215Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-08-14T21:49:37.2605673Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-08-14T21:49:37.2606125Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-08-14T21:49:37.2606582Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-08-14T21:49:37.2607030Z * [new branch] gh/etaf/148/base -> origin/gh/etaf/148/base 2025-08-14T21:49:37.2607478Z * [new branch] gh/etaf/148/head -> origin/gh/etaf/148/head 2025-08-14T21:49:37.2608024Z * [new branch] gh/etaf/148/orig -> origin/gh/etaf/148/orig 2025-08-14T21:49:37.2608475Z * [new branch] gh/etaf/149/base -> origin/gh/etaf/149/base 2025-08-14T21:49:37.2608932Z * [new branch] gh/etaf/149/head -> origin/gh/etaf/149/head 2025-08-14T21:49:37.2609393Z * [new branch] gh/etaf/149/orig -> origin/gh/etaf/149/orig 2025-08-14T21:49:37.2609846Z * [new branch] gh/etaf/150/base -> origin/gh/etaf/150/base 2025-08-14T21:49:37.2610355Z * [new branch] gh/etaf/150/head -> origin/gh/etaf/150/head 2025-08-14T21:49:37.2610856Z * [new branch] gh/etaf/150/orig -> origin/gh/etaf/150/orig 2025-08-14T21:49:37.2611321Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-08-14T21:49:37.3055409Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-08-14T21:49:37.3055999Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-08-14T21:49:37.3056466Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-08-14T21:49:37.3056917Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-08-14T21:49:37.3057379Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-08-14T21:49:37.3057837Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-08-14T21:49:37.3058335Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-08-14T21:49:37.3058844Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-08-14T21:49:37.3059294Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-08-14T21:49:37.3059754Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-08-14T21:49:37.3060332Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-08-14T21:49:37.3060808Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-08-14T21:49:37.3061271Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-08-14T21:49:37.3061715Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-08-14T21:49:37.3062196Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-08-14T21:49:37.3062690Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-08-14T21:49:37.3063172Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-08-14T21:49:37.3063655Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-08-14T21:49:37.3064179Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-08-14T21:49:37.3064730Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-08-14T21:49:37.3065211Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-08-14T21:49:37.3065689Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-08-14T21:49:37.3066165Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-08-14T21:49:37.3066639Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-08-14T21:49:37.3067128Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-08-14T21:49:37.3067598Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-08-14T21:49:37.3068079Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-08-14T21:49:37.3068638Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-08-14T21:49:37.3069119Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-08-14T21:49:37.3069594Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-08-14T21:49:37.3070172Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-08-14T21:49:37.3070656Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-08-14T21:49:37.3071137Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-08-14T21:49:37.3071619Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-08-14T21:49:37.3072100Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-08-14T21:49:37.3072576Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-08-14T21:49:37.3073072Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-08-14T21:49:37.3073551Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-08-14T21:49:37.3074027Z * [new branch] gh/ezyang/3097/base -> origin/gh/ezyang/3097/base 2025-08-14T21:49:37.3074520Z * [new branch] gh/ezyang/3097/head -> origin/gh/ezyang/3097/head 2025-08-14T21:49:37.3074995Z * [new branch] gh/ezyang/3097/orig -> origin/gh/ezyang/3097/orig 2025-08-14T21:49:37.3075541Z * [new branch] gh/ezyang/3098/base -> origin/gh/ezyang/3098/base 2025-08-14T21:49:37.3076061Z * [new branch] gh/ezyang/3098/head -> origin/gh/ezyang/3098/head 2025-08-14T21:49:37.3076552Z * [new branch] gh/ezyang/3098/orig -> origin/gh/ezyang/3098/orig 2025-08-14T21:49:37.3077046Z * [new branch] gh/ezyang/3099/base -> origin/gh/ezyang/3099/base 2025-08-14T21:49:37.3077619Z * [new branch] gh/ezyang/3099/head -> origin/gh/ezyang/3099/head 2025-08-14T21:49:37.3078108Z * [new branch] gh/ezyang/3099/orig -> origin/gh/ezyang/3099/orig 2025-08-14T21:49:37.3517152Z * [new branch] gh/ezyang/3100/base -> origin/gh/ezyang/3100/base 2025-08-14T21:49:37.3517697Z * [new branch] gh/ezyang/3100/head -> origin/gh/ezyang/3100/head 2025-08-14T21:49:37.3518203Z * [new branch] gh/ezyang/3100/orig -> origin/gh/ezyang/3100/orig 2025-08-14T21:49:37.3518703Z * [new branch] gh/ezyang/3101/base -> origin/gh/ezyang/3101/base 2025-08-14T21:49:37.3519191Z * [new branch] gh/ezyang/3101/head -> origin/gh/ezyang/3101/head 2025-08-14T21:49:37.3519672Z * [new branch] gh/ezyang/3101/orig -> origin/gh/ezyang/3101/orig 2025-08-14T21:49:37.3520214Z * [new branch] gh/ezyang/3102/base -> origin/gh/ezyang/3102/base 2025-08-14T21:49:37.3520726Z * [new branch] gh/ezyang/3102/head -> origin/gh/ezyang/3102/head 2025-08-14T21:49:37.3521208Z * [new branch] gh/ezyang/3102/orig -> origin/gh/ezyang/3102/orig 2025-08-14T21:49:37.3521697Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-08-14T21:49:37.3522177Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-08-14T21:49:37.3523709Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-08-14T21:49:37.3524204Z * [new branch] gh/ezyang/3104/base -> origin/gh/ezyang/3104/base 2025-08-14T21:49:37.3524685Z * [new branch] gh/ezyang/3104/head -> origin/gh/ezyang/3104/head 2025-08-14T21:49:37.3525180Z * [new branch] gh/ezyang/3104/orig -> origin/gh/ezyang/3104/orig 2025-08-14T21:49:37.3525675Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-08-14T21:49:37.3526314Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-08-14T21:49:37.3526807Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-08-14T21:49:37.3527287Z * [new branch] gh/ezyang/3106/base -> origin/gh/ezyang/3106/base 2025-08-14T21:49:37.3527787Z * [new branch] gh/ezyang/3106/head -> origin/gh/ezyang/3106/head 2025-08-14T21:49:37.3528267Z * [new branch] gh/ezyang/3106/orig -> origin/gh/ezyang/3106/orig 2025-08-14T21:49:37.3528742Z * [new branch] gh/ezyang/3107/base -> origin/gh/ezyang/3107/base 2025-08-14T21:49:37.3529221Z * [new branch] gh/ezyang/3107/head -> origin/gh/ezyang/3107/head 2025-08-14T21:49:37.3529698Z * [new branch] gh/ezyang/3107/orig -> origin/gh/ezyang/3107/orig 2025-08-14T21:49:37.3530196Z * [new branch] gh/ezyang/3108/base -> origin/gh/ezyang/3108/base 2025-08-14T21:49:37.3530667Z * [new branch] gh/ezyang/3108/head -> origin/gh/ezyang/3108/head 2025-08-14T21:49:37.3531144Z * [new branch] gh/ezyang/3108/orig -> origin/gh/ezyang/3108/orig 2025-08-14T21:49:37.3531620Z * [new branch] gh/ezyang/3109/base -> origin/gh/ezyang/3109/base 2025-08-14T21:49:37.3532096Z * [new branch] gh/ezyang/3109/head -> origin/gh/ezyang/3109/head 2025-08-14T21:49:37.3532582Z * [new branch] gh/ezyang/3109/orig -> origin/gh/ezyang/3109/orig 2025-08-14T21:49:37.3533056Z * [new branch] gh/ezyang/3110/base -> origin/gh/ezyang/3110/base 2025-08-14T21:49:37.3533537Z * [new branch] gh/ezyang/3110/head -> origin/gh/ezyang/3110/head 2025-08-14T21:49:37.3534020Z * [new branch] gh/ezyang/3110/orig -> origin/gh/ezyang/3110/orig 2025-08-14T21:49:37.3534591Z * [new branch] gh/ezyang/3111/base -> origin/gh/ezyang/3111/base 2025-08-14T21:49:37.3535073Z * [new branch] gh/ezyang/3111/head -> origin/gh/ezyang/3111/head 2025-08-14T21:49:37.3535553Z * [new branch] gh/ezyang/3111/orig -> origin/gh/ezyang/3111/orig 2025-08-14T21:49:37.3536037Z * [new branch] gh/ezyang/3112/base -> origin/gh/ezyang/3112/base 2025-08-14T21:49:37.3536514Z * [new branch] gh/ezyang/3112/head -> origin/gh/ezyang/3112/head 2025-08-14T21:49:37.3536986Z * [new branch] gh/ezyang/3112/orig -> origin/gh/ezyang/3112/orig 2025-08-14T21:49:37.3537467Z * [new branch] gh/ezyang/3113/base -> origin/gh/ezyang/3113/base 2025-08-14T21:49:37.3537942Z * [new branch] gh/ezyang/3113/head -> origin/gh/ezyang/3113/head 2025-08-14T21:49:37.3538423Z * [new branch] gh/ezyang/3113/orig -> origin/gh/ezyang/3113/orig 2025-08-14T21:49:37.3538901Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-08-14T21:49:37.3539382Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-08-14T21:49:37.3539878Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-08-14T21:49:37.3540351Z * [new branch] gh/ezyang/3115/base -> origin/gh/ezyang/3115/base 2025-08-14T21:49:37.3540834Z * [new branch] gh/ezyang/3115/head -> origin/gh/ezyang/3115/head 2025-08-14T21:49:37.3982884Z * [new branch] gh/ezyang/3115/orig -> origin/gh/ezyang/3115/orig 2025-08-14T21:49:37.3983431Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-08-14T21:49:37.3983934Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-08-14T21:49:37.3984432Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-08-14T21:49:37.3985114Z * [new branch] gh/ezyang/3117/base -> origin/gh/ezyang/3117/base 2025-08-14T21:49:37.3985657Z * [new branch] gh/ezyang/3117/head -> origin/gh/ezyang/3117/head 2025-08-14T21:49:37.3986137Z * [new branch] gh/ezyang/3117/orig -> origin/gh/ezyang/3117/orig 2025-08-14T21:49:37.3986622Z * [new branch] gh/ezyang/3118/base -> origin/gh/ezyang/3118/base 2025-08-14T21:49:37.3987098Z * [new branch] gh/ezyang/3118/head -> origin/gh/ezyang/3118/head 2025-08-14T21:49:37.3987592Z * [new branch] gh/ezyang/3118/orig -> origin/gh/ezyang/3118/orig 2025-08-14T21:49:37.3988075Z * [new branch] gh/ezyang/3119/base -> origin/gh/ezyang/3119/base 2025-08-14T21:49:37.3988551Z * [new branch] gh/ezyang/3119/head -> origin/gh/ezyang/3119/head 2025-08-14T21:49:37.3989041Z * [new branch] gh/ezyang/3119/orig -> origin/gh/ezyang/3119/orig 2025-08-14T21:49:37.3989513Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-08-14T21:49:37.3989997Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-08-14T21:49:37.3990476Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-08-14T21:49:37.3990998Z * [new branch] gh/ezyang/3121/base -> origin/gh/ezyang/3121/base 2025-08-14T21:49:37.3991528Z * [new branch] gh/ezyang/3121/head -> origin/gh/ezyang/3121/head 2025-08-14T21:49:37.3992003Z * [new branch] gh/ezyang/3121/orig -> origin/gh/ezyang/3121/orig 2025-08-14T21:49:37.3992479Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-08-14T21:49:37.3992951Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-08-14T21:49:37.3993529Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-08-14T21:49:37.3994015Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-08-14T21:49:37.3994489Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-08-14T21:49:37.3994969Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-08-14T21:49:37.3995453Z * [new branch] gh/ezyang/3124/base -> origin/gh/ezyang/3124/base 2025-08-14T21:49:37.3995949Z * [new branch] gh/ezyang/3124/head -> origin/gh/ezyang/3124/head 2025-08-14T21:49:37.3996427Z * [new branch] gh/ezyang/3124/orig -> origin/gh/ezyang/3124/orig 2025-08-14T21:49:37.3996942Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-08-14T21:49:37.3997464Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-08-14T21:49:37.3997948Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-08-14T21:49:37.3998436Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-08-14T21:49:37.3998919Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-08-14T21:49:37.3999400Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-08-14T21:49:37.3999965Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-08-14T21:49:37.4000446Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-08-14T21:49:37.4000935Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-08-14T21:49:37.4001416Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-08-14T21:49:37.4001910Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-08-14T21:49:37.4002487Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-08-14T21:49:37.4003015Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-08-14T21:49:37.4003551Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-08-14T21:49:37.4004027Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-08-14T21:49:37.4004524Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-08-14T21:49:37.4005015Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-08-14T21:49:37.4005501Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-08-14T21:49:37.4005984Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-08-14T21:49:37.4463072Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-08-14T21:49:37.4463589Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-08-14T21:49:37.4464076Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-08-14T21:49:37.4464573Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-08-14T21:49:37.4465062Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-08-14T21:49:37.4465536Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-08-14T21:49:37.4466026Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-08-14T21:49:37.4466511Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-08-14T21:49:37.4466993Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-08-14T21:49:37.4467593Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-08-14T21:49:37.4468079Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-08-14T21:49:37.4468612Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-08-14T21:49:37.4469134Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-08-14T21:49:37.4469617Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-08-14T21:49:37.4470089Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-08-14T21:49:37.4470573Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-08-14T21:49:37.4471053Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-08-14T21:49:37.4471530Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-08-14T21:49:37.4472025Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-08-14T21:49:37.4472498Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-08-14T21:49:37.4472977Z * [new branch] gh/fduwjj/168/base -> origin/gh/fduwjj/168/base 2025-08-14T21:49:37.4473446Z * [new branch] gh/fduwjj/168/head -> origin/gh/fduwjj/168/head 2025-08-14T21:49:37.4473918Z * [new branch] gh/fduwjj/168/orig -> origin/gh/fduwjj/168/orig 2025-08-14T21:49:37.4474445Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-08-14T21:49:37.4474963Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-08-14T21:49:37.4475451Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-08-14T21:49:37.4475932Z * [new branch] gh/fduwjj/170/base -> origin/gh/fduwjj/170/base 2025-08-14T21:49:37.4476501Z * [new branch] gh/fduwjj/170/head -> origin/gh/fduwjj/170/head 2025-08-14T21:49:37.4476990Z * [new branch] gh/fduwjj/170/orig -> origin/gh/fduwjj/170/orig 2025-08-14T21:49:37.4477460Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-08-14T21:49:37.4477943Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-08-14T21:49:37.4478419Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-08-14T21:49:37.4478882Z * [new branch] gh/fduwjj/172/base -> origin/gh/fduwjj/172/base 2025-08-14T21:49:37.4479362Z * [new branch] gh/fduwjj/172/head -> origin/gh/fduwjj/172/head 2025-08-14T21:49:37.4479923Z * [new branch] gh/fduwjj/172/orig -> origin/gh/fduwjj/172/orig 2025-08-14T21:49:37.4480467Z * [new branch] gh/fduwjj/173/base -> origin/gh/fduwjj/173/base 2025-08-14T21:49:37.4480995Z * [new branch] gh/fduwjj/173/head -> origin/gh/fduwjj/173/head 2025-08-14T21:49:37.4481476Z * [new branch] gh/fduwjj/173/orig -> origin/gh/fduwjj/173/orig 2025-08-14T21:49:37.4481957Z * [new branch] gh/fduwjj/174/base -> origin/gh/fduwjj/174/base 2025-08-14T21:49:37.4482427Z * [new branch] gh/fduwjj/174/head -> origin/gh/fduwjj/174/head 2025-08-14T21:49:37.4482902Z * [new branch] gh/fduwjj/174/orig -> origin/gh/fduwjj/174/orig 2025-08-14T21:49:37.4483372Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-08-14T21:49:37.4483845Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-08-14T21:49:37.4484321Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-08-14T21:49:37.4484883Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-08-14T21:49:37.4485365Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-08-14T21:49:37.4485836Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-08-14T21:49:37.4486368Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-08-14T21:49:37.4908980Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-08-14T21:49:37.4909504Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-08-14T21:49:37.4909999Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-08-14T21:49:37.4910472Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-08-14T21:49:37.4910950Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-08-14T21:49:37.4911450Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-08-14T21:49:37.4911917Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-08-14T21:49:37.4912397Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-08-14T21:49:37.4912861Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-08-14T21:49:37.4913337Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-08-14T21:49:37.4913813Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-08-14T21:49:37.4914296Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-08-14T21:49:37.4914774Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-08-14T21:49:37.4915243Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-08-14T21:49:37.4915860Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-08-14T21:49:37.4916338Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-08-14T21:49:37.4916809Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-08-14T21:49:37.4917279Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-08-14T21:49:37.4917748Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-08-14T21:49:37.4918217Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-08-14T21:49:37.4918701Z * [new branch] gh/fffrog/114/base -> origin/gh/fffrog/114/base 2025-08-14T21:49:37.4919169Z * [new branch] gh/fffrog/114/head -> origin/gh/fffrog/114/head 2025-08-14T21:49:37.4919710Z * [new branch] gh/fffrog/114/orig -> origin/gh/fffrog/114/orig 2025-08-14T21:49:37.4920195Z * [new branch] gh/fffrog/117/base -> origin/gh/fffrog/117/base 2025-08-14T21:49:37.4920676Z * [new branch] gh/fffrog/117/head -> origin/gh/fffrog/117/head 2025-08-14T21:49:37.4921149Z * [new branch] gh/fffrog/117/orig -> origin/gh/fffrog/117/orig 2025-08-14T21:49:37.4921621Z * [new branch] gh/fffrog/119/base -> origin/gh/fffrog/119/base 2025-08-14T21:49:37.4922101Z * [new branch] gh/fffrog/119/head -> origin/gh/fffrog/119/head 2025-08-14T21:49:37.4922576Z * [new branch] gh/fffrog/119/orig -> origin/gh/fffrog/119/orig 2025-08-14T21:49:37.4923051Z * [new branch] gh/fffrog/120/base -> origin/gh/fffrog/120/base 2025-08-14T21:49:37.4923521Z * [new branch] gh/fffrog/120/head -> origin/gh/fffrog/120/head 2025-08-14T21:49:37.4924000Z * [new branch] gh/fffrog/120/orig -> origin/gh/fffrog/120/orig 2025-08-14T21:49:37.4924580Z * [new branch] gh/fffrog/121/base -> origin/gh/fffrog/121/base 2025-08-14T21:49:37.4925051Z * [new branch] gh/fffrog/121/head -> origin/gh/fffrog/121/head 2025-08-14T21:49:37.4925530Z * [new branch] gh/fffrog/121/orig -> origin/gh/fffrog/121/orig 2025-08-14T21:49:37.4926013Z * [new branch] gh/fffrog/122/base -> origin/gh/fffrog/122/base 2025-08-14T21:49:37.4926494Z * [new branch] gh/fffrog/122/head -> origin/gh/fffrog/122/head 2025-08-14T21:49:37.4926974Z * [new branch] gh/fffrog/122/orig -> origin/gh/fffrog/122/orig 2025-08-14T21:49:37.4927440Z * [new branch] gh/fffrog/123/base -> origin/gh/fffrog/123/base 2025-08-14T21:49:37.4927929Z * [new branch] gh/fffrog/123/head -> origin/gh/fffrog/123/head 2025-08-14T21:49:37.4928401Z * [new branch] gh/fffrog/123/orig -> origin/gh/fffrog/123/orig 2025-08-14T21:49:37.4928891Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-08-14T21:49:37.4929368Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-08-14T21:49:37.4929844Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-08-14T21:49:37.4930323Z * [new branch] gh/fffrog/125/base -> origin/gh/fffrog/125/base 2025-08-14T21:49:37.4930788Z * [new branch] gh/fffrog/125/head -> origin/gh/fffrog/125/head 2025-08-14T21:49:37.4931264Z * [new branch] gh/fffrog/125/orig -> origin/gh/fffrog/125/orig 2025-08-14T21:49:37.5339791Z * [new branch] gh/fffrog/126/base -> origin/gh/fffrog/126/base 2025-08-14T21:49:37.5340332Z * [new branch] gh/fffrog/126/head -> origin/gh/fffrog/126/head 2025-08-14T21:49:37.5340954Z * [new branch] gh/fffrog/126/orig -> origin/gh/fffrog/126/orig 2025-08-14T21:49:37.5341442Z * [new branch] gh/fffrog/127/base -> origin/gh/fffrog/127/base 2025-08-14T21:49:37.5341930Z * [new branch] gh/fffrog/127/head -> origin/gh/fffrog/127/head 2025-08-14T21:49:37.5342420Z * [new branch] gh/fffrog/127/orig -> origin/gh/fffrog/127/orig 2025-08-14T21:49:37.5342891Z * [new branch] gh/fffrog/128/base -> origin/gh/fffrog/128/base 2025-08-14T21:49:37.5343381Z * [new branch] gh/fffrog/128/head -> origin/gh/fffrog/128/head 2025-08-14T21:49:37.5343858Z * [new branch] gh/fffrog/128/orig -> origin/gh/fffrog/128/orig 2025-08-14T21:49:37.5344341Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-08-14T21:49:37.5344833Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-08-14T21:49:37.5345313Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-08-14T21:49:37.5345779Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-08-14T21:49:37.5346252Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-08-14T21:49:37.5346715Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-08-14T21:49:37.5347192Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-08-14T21:49:37.5347661Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-08-14T21:49:37.5348129Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-08-14T21:49:37.5348599Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-08-14T21:49:37.5349068Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-08-14T21:49:37.5349644Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-08-14T21:49:37.5350122Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-08-14T21:49:37.5350605Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-08-14T21:49:37.5351089Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-08-14T21:49:37.5351560Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-08-14T21:49:37.5352040Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-08-14T21:49:37.5352507Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-08-14T21:49:37.5352985Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-08-14T21:49:37.5353472Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-08-14T21:49:37.5353945Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-08-14T21:49:37.5354415Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-08-14T21:49:37.5354879Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-08-14T21:49:37.5355354Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-08-14T21:49:37.5355833Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-08-14T21:49:37.5356299Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-08-14T21:49:37.5356777Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-08-14T21:49:37.5357244Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-08-14T21:49:37.5357728Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-08-14T21:49:37.5358285Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-08-14T21:49:37.5358775Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-08-14T21:49:37.5359280Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-08-14T21:49:37.5359907Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-08-14T21:49:37.5360453Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-08-14T21:49:37.5360945Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-08-14T21:49:37.5361443Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-08-14T21:49:37.5361936Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-08-14T21:49:37.5362434Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-08-14T21:49:37.5362935Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-08-14T21:49:37.5775133Z * [new branch] gh/gmagogsfm/4/base -> origin/gh/gmagogsfm/4/base 2025-08-14T21:49:37.5775701Z * [new branch] gh/gmagogsfm/4/head -> origin/gh/gmagogsfm/4/head 2025-08-14T21:49:37.5776208Z * [new branch] gh/gmagogsfm/4/orig -> origin/gh/gmagogsfm/4/orig 2025-08-14T21:49:37.5776709Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-08-14T21:49:37.5777224Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-08-14T21:49:37.5777732Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-08-14T21:49:37.5778223Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-08-14T21:49:37.5778870Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-08-14T21:49:37.5779361Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-08-14T21:49:37.5779863Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-08-14T21:49:37.5780373Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-08-14T21:49:37.5780855Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-08-14T21:49:37.5781352Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-08-14T21:49:37.5781846Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-08-14T21:49:37.5782342Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-08-14T21:49:37.5782824Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-08-14T21:49:37.5783326Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-08-14T21:49:37.5783879Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-08-14T21:49:37.5784412Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-08-14T21:49:37.5784912Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-08-14T21:49:37.5785403Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-08-14T21:49:37.5785904Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-08-14T21:49:37.5786398Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-08-14T21:49:37.5786886Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-08-14T21:49:37.5787467Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-08-14T21:49:37.5787962Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-08-14T21:49:37.5788460Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-08-14T21:49:37.5788963Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-08-14T21:49:37.5789458Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-08-14T21:49:37.5789958Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-08-14T21:49:37.5790448Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-08-14T21:49:37.5790946Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-08-14T21:49:37.5791441Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-08-14T21:49:37.5791937Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-08-14T21:49:37.5792430Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-08-14T21:49:37.5792919Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-08-14T21:49:37.5793416Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-08-14T21:49:37.5793904Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-08-14T21:49:37.5794399Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-08-14T21:49:37.5794899Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-08-14T21:49:37.5795387Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-08-14T21:49:37.5795878Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-08-14T21:49:37.5796457Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-08-14T21:49:37.5796964Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-08-14T21:49:37.5797469Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-08-14T21:49:37.5797956Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-08-14T21:49:37.5798451Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-08-14T21:49:37.6183679Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-08-14T21:49:37.6184239Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-08-14T21:49:37.6184745Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-08-14T21:49:37.6185250Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-08-14T21:49:37.6185759Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-08-14T21:49:37.6186256Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-08-14T21:49:37.6186743Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-08-14T21:49:37.6187331Z * [new branch] gh/guangyey/172/base -> origin/gh/guangyey/172/base 2025-08-14T21:49:37.6187864Z * [new branch] gh/guangyey/172/head -> origin/gh/guangyey/172/head 2025-08-14T21:49:37.6188365Z * [new branch] gh/guangyey/172/orig -> origin/gh/guangyey/172/orig 2025-08-14T21:49:37.6188853Z * [new branch] gh/guangyey/173/base -> origin/gh/guangyey/173/base 2025-08-14T21:49:37.6189348Z * [new branch] gh/guangyey/173/head -> origin/gh/guangyey/173/head 2025-08-14T21:49:37.6189969Z * [new branch] gh/guangyey/173/orig -> origin/gh/guangyey/173/orig 2025-08-14T21:49:37.6190465Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-08-14T21:49:37.6190963Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-08-14T21:49:37.6191449Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-08-14T21:49:37.6191954Z * [new branch] gh/guangyey/175/base -> origin/gh/guangyey/175/base 2025-08-14T21:49:37.6192459Z * [new branch] gh/guangyey/175/head -> origin/gh/guangyey/175/head 2025-08-14T21:49:37.6192951Z * [new branch] gh/guangyey/175/orig -> origin/gh/guangyey/175/orig 2025-08-14T21:49:37.6193541Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-08-14T21:49:37.6194080Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-08-14T21:49:37.6194588Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-08-14T21:49:37.6195088Z * [new branch] gh/guangyey/177/base -> origin/gh/guangyey/177/base 2025-08-14T21:49:37.6195573Z * [new branch] gh/guangyey/177/head -> origin/gh/guangyey/177/head 2025-08-14T21:49:37.6196072Z * [new branch] gh/guangyey/177/orig -> origin/gh/guangyey/177/orig 2025-08-14T21:49:37.6196557Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-08-14T21:49:37.6197055Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-08-14T21:49:37.6197547Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-08-14T21:49:37.6198044Z * [new branch] gh/guangyey/179/base -> origin/gh/guangyey/179/base 2025-08-14T21:49:37.6198547Z * [new branch] gh/guangyey/179/head -> origin/gh/guangyey/179/head 2025-08-14T21:49:37.6199208Z * [new branch] gh/guangyey/179/orig -> origin/gh/guangyey/179/orig 2025-08-14T21:49:37.6199806Z * [new branch] gh/guangyey/180/base -> origin/gh/guangyey/180/base 2025-08-14T21:49:37.6200338Z * [new branch] gh/guangyey/180/head -> origin/gh/guangyey/180/head 2025-08-14T21:49:37.6200846Z * [new branch] gh/guangyey/180/orig -> origin/gh/guangyey/180/orig 2025-08-14T21:49:37.6201349Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-08-14T21:49:37.6201839Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-08-14T21:49:37.6202329Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-08-14T21:49:37.6202820Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-08-14T21:49:37.6203325Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-08-14T21:49:37.6203830Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-08-14T21:49:37.6204317Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-08-14T21:49:37.6204821Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-08-14T21:49:37.6205313Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-08-14T21:49:37.6205809Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-08-14T21:49:37.6206308Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-08-14T21:49:37.6206797Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-08-14T21:49:37.6603642Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-08-14T21:49:37.6604344Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-08-14T21:49:37.6604883Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-08-14T21:49:37.6605389Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-08-14T21:49:37.6605875Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-08-14T21:49:37.6606374Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-08-14T21:49:37.6606859Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-08-14T21:49:37.6607349Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-08-14T21:49:37.6607840Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-08-14T21:49:37.6608375Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-08-14T21:49:37.6608974Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-08-14T21:49:37.6609544Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-08-14T21:49:37.6610124Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-08-14T21:49:37.6610702Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-08-14T21:49:37.6611273Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-08-14T21:49:37.6611856Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-08-14T21:49:37.6612424Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-08-14T21:49:37.6612997Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-08-14T21:49:37.6614221Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-08-14T21:49:37.6614798Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-08-14T21:49:37.6615382Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-08-14T21:49:37.6615958Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-08-14T21:49:37.6616534Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-08-14T21:49:37.6617107Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-08-14T21:49:37.6617679Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-08-14T21:49:37.6618265Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-08-14T21:49:37.6618846Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-08-14T21:49:37.6619423Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-08-14T21:49:37.6620001Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-08-14T21:49:37.6620569Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-08-14T21:49:37.6621146Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-08-14T21:49:37.6621714Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-08-14T21:49:37.6622411Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-08-14T21:49:37.6623022Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-08-14T21:49:37.6623694Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-08-14T21:49:37.6624281Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-08-14T21:49:37.6624857Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-08-14T21:49:37.6625453Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-08-14T21:49:37.6626050Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-08-14T21:49:37.6626631Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-08-14T21:49:37.6627218Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-08-14T21:49:37.6627840Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-08-14T21:49:37.6628478Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-08-14T21:49:37.6629064Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-08-14T21:49:37.6995812Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-08-14T21:49:37.6996459Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-08-14T21:49:37.6997042Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-08-14T21:49:37.6997627Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-08-14T21:49:37.6998208Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-08-14T21:49:37.6998838Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-08-14T21:49:37.6999433Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-08-14T21:49:37.7000490Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-08-14T21:49:37.7001073Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-08-14T21:49:37.7001658Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-08-14T21:49:37.7002230Z * [new branch] gh/guilhermeleobas/181/base -> origin/gh/guilhermeleobas/181/base 2025-08-14T21:49:37.7002808Z * [new branch] gh/guilhermeleobas/181/head -> origin/gh/guilhermeleobas/181/head 2025-08-14T21:49:37.7003382Z * [new branch] gh/guilhermeleobas/181/orig -> origin/gh/guilhermeleobas/181/orig 2025-08-14T21:49:37.7003964Z * [new branch] gh/guilhermeleobas/182/base -> origin/gh/guilhermeleobas/182/base 2025-08-14T21:49:37.7004547Z * [new branch] gh/guilhermeleobas/182/head -> origin/gh/guilhermeleobas/182/head 2025-08-14T21:49:37.7005141Z * [new branch] gh/guilhermeleobas/182/orig -> origin/gh/guilhermeleobas/182/orig 2025-08-14T21:49:37.7005720Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-08-14T21:49:37.7006298Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-08-14T21:49:37.7006877Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-08-14T21:49:37.7007472Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-08-14T21:49:37.7008038Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-08-14T21:49:37.7008612Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-08-14T21:49:37.7009181Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-08-14T21:49:37.7010334Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-08-14T21:49:37.7010938Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-08-14T21:49:37.7011512Z * [new branch] gh/guilhermeleobas/188/base -> origin/gh/guilhermeleobas/188/base 2025-08-14T21:49:37.7012101Z * [new branch] gh/guilhermeleobas/188/head -> origin/gh/guilhermeleobas/188/head 2025-08-14T21:49:37.7012683Z * [new branch] gh/guilhermeleobas/188/orig -> origin/gh/guilhermeleobas/188/orig 2025-08-14T21:49:37.7013259Z * [new branch] gh/guilhermeleobas/189/base -> origin/gh/guilhermeleobas/189/base 2025-08-14T21:49:37.7013843Z * [new branch] gh/guilhermeleobas/189/head -> origin/gh/guilhermeleobas/189/head 2025-08-14T21:49:37.7014412Z * [new branch] gh/guilhermeleobas/189/orig -> origin/gh/guilhermeleobas/189/orig 2025-08-14T21:49:37.7015013Z * [new branch] gh/guilhermeleobas/190/base -> origin/gh/guilhermeleobas/190/base 2025-08-14T21:49:37.7015580Z * [new branch] gh/guilhermeleobas/190/head -> origin/gh/guilhermeleobas/190/head 2025-08-14T21:49:37.7016158Z * [new branch] gh/guilhermeleobas/190/orig -> origin/gh/guilhermeleobas/190/orig 2025-08-14T21:49:37.7016739Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-08-14T21:49:37.7017311Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-08-14T21:49:37.7017883Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-08-14T21:49:37.7018452Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-08-14T21:49:37.7019028Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-08-14T21:49:37.7020283Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-08-14T21:49:37.7020867Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-08-14T21:49:37.7021460Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-08-14T21:49:37.7022032Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-08-14T21:49:37.7387146Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-08-14T21:49:37.7387786Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-08-14T21:49:37.7388375Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-08-14T21:49:37.7388967Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-08-14T21:49:37.7389550Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-08-14T21:49:37.7390134Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-08-14T21:49:37.7390720Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-08-14T21:49:37.7391291Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-08-14T21:49:37.7391873Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-08-14T21:49:37.7392445Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-08-14T21:49:37.7393026Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-08-14T21:49:37.7393608Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-08-14T21:49:37.7394189Z * [new branch] gh/guilhermeleobas/207/base -> origin/gh/guilhermeleobas/207/base 2025-08-14T21:49:37.7394911Z * [new branch] gh/guilhermeleobas/207/head -> origin/gh/guilhermeleobas/207/head 2025-08-14T21:49:37.7395491Z * [new branch] gh/guilhermeleobas/207/orig -> origin/gh/guilhermeleobas/207/orig 2025-08-14T21:49:37.7396080Z * [new branch] gh/guilhermeleobas/208/base -> origin/gh/guilhermeleobas/208/base 2025-08-14T21:49:37.7396662Z * [new branch] gh/guilhermeleobas/208/head -> origin/gh/guilhermeleobas/208/head 2025-08-14T21:49:37.7397237Z * [new branch] gh/guilhermeleobas/208/orig -> origin/gh/guilhermeleobas/208/orig 2025-08-14T21:49:37.7397820Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-08-14T21:49:37.7398391Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-08-14T21:49:37.7399035Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-08-14T21:49:37.7399625Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-08-14T21:49:37.7400200Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-08-14T21:49:37.7400779Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-08-14T21:49:37.7401347Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-08-14T21:49:37.7401927Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-08-14T21:49:37.7402507Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-08-14T21:49:37.7403079Z * [new branch] gh/guilhermeleobas/212/base -> origin/gh/guilhermeleobas/212/base 2025-08-14T21:49:37.7403663Z * [new branch] gh/guilhermeleobas/212/head -> origin/gh/guilhermeleobas/212/head 2025-08-14T21:49:37.7404659Z * [new branch] gh/guilhermeleobas/212/orig -> origin/gh/guilhermeleobas/212/orig 2025-08-14T21:49:37.7405251Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-08-14T21:49:37.7405846Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-08-14T21:49:37.7406422Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-08-14T21:49:37.7407007Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-08-14T21:49:37.7407582Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-08-14T21:49:37.7408159Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-08-14T21:49:37.7408740Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-08-14T21:49:37.7409317Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-08-14T21:49:37.7409895Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-08-14T21:49:37.7410471Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-08-14T21:49:37.7411058Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-08-14T21:49:37.7411635Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-08-14T21:49:37.7412205Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-08-14T21:49:37.7803679Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-08-14T21:49:37.7804278Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-08-14T21:49:37.7804999Z * [new branch] gh/guilhermeleobas/218/base -> origin/gh/guilhermeleobas/218/base 2025-08-14T21:49:37.7805597Z * [new branch] gh/guilhermeleobas/218/head -> origin/gh/guilhermeleobas/218/head 2025-08-14T21:49:37.7806176Z * [new branch] gh/guilhermeleobas/218/orig -> origin/gh/guilhermeleobas/218/orig 2025-08-14T21:49:37.7806772Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-08-14T21:49:37.7807346Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-08-14T21:49:37.7807929Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-08-14T21:49:37.7808506Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-08-14T21:49:37.7809080Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-08-14T21:49:37.7809662Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-08-14T21:49:37.7810247Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-08-14T21:49:37.7810824Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-08-14T21:49:37.7811401Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-08-14T21:49:37.7811978Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-08-14T21:49:37.7812562Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-08-14T21:49:37.7813133Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-08-14T21:49:37.7813715Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-08-14T21:49:37.7814294Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-08-14T21:49:37.7815239Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-08-14T21:49:37.7815831Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-08-14T21:49:37.7816408Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-08-14T21:49:37.7816992Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-08-14T21:49:37.7817577Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-08-14T21:49:37.7818148Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-08-14T21:49:37.7818729Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-08-14T21:49:37.7819302Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-08-14T21:49:37.7819900Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-08-14T21:49:37.7820481Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-08-14T21:49:37.7821051Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-08-14T21:49:37.7821642Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-08-14T21:49:37.7822213Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-08-14T21:49:37.7822797Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-08-14T21:49:37.7823388Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-08-14T21:49:37.7823960Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-08-14T21:49:37.7824631Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-08-14T21:49:37.7825216Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-08-14T21:49:37.7825807Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-08-14T21:49:37.7826381Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-08-14T21:49:37.7826955Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-08-14T21:49:37.7827534Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-08-14T21:49:37.7828140Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-08-14T21:49:37.7828826Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-08-14T21:49:37.8227933Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-08-14T21:49:37.8228612Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-08-14T21:49:37.8229293Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-08-14T21:49:37.8230001Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-08-14T21:49:37.8230683Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-08-14T21:49:37.8244978Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-08-14T21:49:37.8245753Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-08-14T21:49:37.8246459Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-08-14T21:49:37.8247035Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-08-14T21:49:37.8247764Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-08-14T21:49:37.8248328Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-08-14T21:49:37.8248872Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-08-14T21:49:37.8249418Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-08-14T21:49:37.8249954Z * [new branch] gh/henrylhtsang/108/base -> origin/gh/henrylhtsang/108/base 2025-08-14T21:49:37.8250500Z * [new branch] gh/henrylhtsang/108/head -> origin/gh/henrylhtsang/108/head 2025-08-14T21:49:37.8251047Z * [new branch] gh/henrylhtsang/108/orig -> origin/gh/henrylhtsang/108/orig 2025-08-14T21:49:37.8251582Z * [new branch] gh/henrylhtsang/118/base -> origin/gh/henrylhtsang/118/base 2025-08-14T21:49:37.8252133Z * [new branch] gh/henrylhtsang/118/head -> origin/gh/henrylhtsang/118/head 2025-08-14T21:49:37.8252669Z * [new branch] gh/henrylhtsang/118/orig -> origin/gh/henrylhtsang/118/orig 2025-08-14T21:49:37.8253217Z * [new branch] gh/henrylhtsang/123/base -> origin/gh/henrylhtsang/123/base 2025-08-14T21:49:37.8253766Z * [new branch] gh/henrylhtsang/123/head -> origin/gh/henrylhtsang/123/head 2025-08-14T21:49:37.8254305Z * [new branch] gh/henrylhtsang/123/orig -> origin/gh/henrylhtsang/123/orig 2025-08-14T21:49:37.8254854Z * [new branch] gh/henrylhtsang/124/base -> origin/gh/henrylhtsang/124/base 2025-08-14T21:49:37.8255411Z * [new branch] gh/henrylhtsang/124/head -> origin/gh/henrylhtsang/124/head 2025-08-14T21:49:37.8255963Z * [new branch] gh/henrylhtsang/124/orig -> origin/gh/henrylhtsang/124/orig 2025-08-14T21:49:37.8256596Z * [new branch] gh/henrylhtsang/125/base -> origin/gh/henrylhtsang/125/base 2025-08-14T21:49:37.8257137Z * [new branch] gh/henrylhtsang/125/head -> origin/gh/henrylhtsang/125/head 2025-08-14T21:49:37.8257692Z * [new branch] gh/henrylhtsang/125/orig -> origin/gh/henrylhtsang/125/orig 2025-08-14T21:49:37.8258227Z * [new branch] gh/henrylhtsang/126/base -> origin/gh/henrylhtsang/126/base 2025-08-14T21:49:37.8258787Z * [new branch] gh/henrylhtsang/126/head -> origin/gh/henrylhtsang/126/head 2025-08-14T21:49:37.8259337Z * [new branch] gh/henrylhtsang/126/orig -> origin/gh/henrylhtsang/126/orig 2025-08-14T21:49:37.8259880Z * [new branch] gh/henrylhtsang/127/base -> origin/gh/henrylhtsang/127/base 2025-08-14T21:49:37.8260436Z * [new branch] gh/henrylhtsang/127/head -> origin/gh/henrylhtsang/127/head 2025-08-14T21:49:37.8260982Z * [new branch] gh/henrylhtsang/127/orig -> origin/gh/henrylhtsang/127/orig 2025-08-14T21:49:37.8261542Z * [new branch] gh/henrylhtsang/128/base -> origin/gh/henrylhtsang/128/base 2025-08-14T21:49:37.8262098Z * [new branch] gh/henrylhtsang/128/head -> origin/gh/henrylhtsang/128/head 2025-08-14T21:49:37.8262632Z * [new branch] gh/henrylhtsang/128/orig -> origin/gh/henrylhtsang/128/orig 2025-08-14T21:49:37.8263183Z * [new branch] gh/henrylhtsang/129/base -> origin/gh/henrylhtsang/129/base 2025-08-14T21:49:37.8263715Z * [new branch] gh/henrylhtsang/129/head -> origin/gh/henrylhtsang/129/head 2025-08-14T21:49:37.8264261Z * [new branch] gh/henrylhtsang/129/orig -> origin/gh/henrylhtsang/129/orig 2025-08-14T21:49:37.8264806Z * [new branch] gh/henrylhtsang/130/base -> origin/gh/henrylhtsang/130/base 2025-08-14T21:49:37.8265343Z * [new branch] gh/henrylhtsang/130/head -> origin/gh/henrylhtsang/130/head 2025-08-14T21:49:37.8265971Z * [new branch] gh/henrylhtsang/131/base -> origin/gh/henrylhtsang/131/base 2025-08-14T21:49:37.8266509Z * [new branch] gh/henrylhtsang/131/head -> origin/gh/henrylhtsang/131/head 2025-08-14T21:49:37.8640004Z * [new branch] gh/henrylhtsang/131/orig -> origin/gh/henrylhtsang/131/orig 2025-08-14T21:49:37.8640603Z * [new branch] gh/henrylhtsang/132/base -> origin/gh/henrylhtsang/132/base 2025-08-14T21:49:37.8641145Z * [new branch] gh/henrylhtsang/132/head -> origin/gh/henrylhtsang/132/head 2025-08-14T21:49:37.8641703Z * [new branch] gh/henrylhtsang/132/orig -> origin/gh/henrylhtsang/132/orig 2025-08-14T21:49:37.8642250Z * [new branch] gh/henrylhtsang/133/base -> origin/gh/henrylhtsang/133/base 2025-08-14T21:49:37.8642793Z * [new branch] gh/henrylhtsang/133/head -> origin/gh/henrylhtsang/133/head 2025-08-14T21:49:37.8643343Z * [new branch] gh/henrylhtsang/133/orig -> origin/gh/henrylhtsang/133/orig 2025-08-14T21:49:37.8643904Z * [new branch] gh/henrylhtsang/134/base -> origin/gh/henrylhtsang/134/base 2025-08-14T21:49:37.8645486Z * [new branch] gh/henrylhtsang/134/head -> origin/gh/henrylhtsang/134/head 2025-08-14T21:49:37.8646031Z * [new branch] gh/henrylhtsang/134/orig -> origin/gh/henrylhtsang/134/orig 2025-08-14T21:49:37.8646582Z * [new branch] gh/henrylhtsang/135/base -> origin/gh/henrylhtsang/135/base 2025-08-14T21:49:37.8647132Z * [new branch] gh/henrylhtsang/135/head -> origin/gh/henrylhtsang/135/head 2025-08-14T21:49:37.8647664Z * [new branch] gh/henrylhtsang/135/orig -> origin/gh/henrylhtsang/135/orig 2025-08-14T21:49:37.8648209Z * [new branch] gh/henrylhtsang/136/base -> origin/gh/henrylhtsang/136/base 2025-08-14T21:49:37.8648743Z * [new branch] gh/henrylhtsang/136/head -> origin/gh/henrylhtsang/136/head 2025-08-14T21:49:37.8649442Z * [new branch] gh/henrylhtsang/136/orig -> origin/gh/henrylhtsang/136/orig 2025-08-14T21:49:37.8650984Z * [new branch] gh/henrylhtsang/137/base -> origin/gh/henrylhtsang/137/base 2025-08-14T21:49:37.8651537Z * [new branch] gh/henrylhtsang/137/head -> origin/gh/henrylhtsang/137/head 2025-08-14T21:49:37.8652083Z * [new branch] gh/henrylhtsang/137/orig -> origin/gh/henrylhtsang/137/orig 2025-08-14T21:49:37.8652616Z * [new branch] gh/henrylhtsang/138/base -> origin/gh/henrylhtsang/138/base 2025-08-14T21:49:37.8653167Z * [new branch] gh/henrylhtsang/138/head -> origin/gh/henrylhtsang/138/head 2025-08-14T21:49:37.8653712Z * [new branch] gh/henrylhtsang/138/orig -> origin/gh/henrylhtsang/138/orig 2025-08-14T21:49:37.8654245Z * [new branch] gh/henrylhtsang/139/base -> origin/gh/henrylhtsang/139/base 2025-08-14T21:49:37.8654817Z * [new branch] gh/henrylhtsang/139/head -> origin/gh/henrylhtsang/139/head 2025-08-14T21:49:37.8655361Z * [new branch] gh/henrylhtsang/139/orig -> origin/gh/henrylhtsang/139/orig 2025-08-14T21:49:37.8656894Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-08-14T21:49:37.8657457Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-08-14T21:49:37.8658000Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-08-14T21:49:37.8658557Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-08-14T21:49:37.8659104Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-08-14T21:49:37.8659654Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-08-14T21:49:37.8660195Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-08-14T21:49:37.8660876Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-08-14T21:49:37.8662410Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-08-14T21:49:37.8662971Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-08-14T21:49:37.8663521Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-08-14T21:49:37.8664060Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-08-14T21:49:37.8664617Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-08-14T21:49:37.8665171Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-08-14T21:49:37.8665707Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-08-14T21:49:37.8666266Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-08-14T21:49:37.8666799Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-08-14T21:49:37.8668310Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-08-14T21:49:37.8668858Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-08-14T21:49:37.8669405Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-08-14T21:49:37.9082948Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-08-14T21:49:37.9083487Z * [new branch] gh/huydhn/1/head -> origin/gh/huydhn/1/head 2025-08-14T21:49:37.9083974Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-08-14T21:49:37.9084501Z * [new branch] gh/huydhn/2/head -> origin/gh/huydhn/2/head 2025-08-14T21:49:37.9085158Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-08-14T21:49:37.9085629Z * [new branch] gh/huydhn/2/orig -> origin/gh/huydhn/2/orig 2025-08-14T21:49:37.9086093Z * [new branch] gh/huydhn/3/head -> origin/gh/huydhn/3/head 2025-08-14T21:49:37.9086569Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-08-14T21:49:37.9087037Z * [new branch] gh/huydhn/3/orig -> origin/gh/huydhn/3/orig 2025-08-14T21:49:37.9087498Z * [new branch] gh/huydhn/4/head -> origin/gh/huydhn/4/head 2025-08-14T21:49:37.9087970Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-08-14T21:49:37.9088422Z * [new branch] gh/huydhn/4/orig -> origin/gh/huydhn/4/orig 2025-08-14T21:49:37.9088894Z * [new branch] gh/huydhn/5/head -> origin/gh/huydhn/5/head 2025-08-14T21:49:37.9089365Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-08-14T21:49:37.9089823Z * [new branch] gh/huydhn/5/orig -> origin/gh/huydhn/5/orig 2025-08-14T21:49:37.9090339Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-08-14T21:49:37.9090846Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-08-14T21:49:37.9091328Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-08-14T21:49:37.9091780Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-08-14T21:49:37.9092242Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-08-14T21:49:37.9092709Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-08-14T21:49:37.9093193Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-08-14T21:49:37.9093800Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-08-14T21:49:37.9094272Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-08-14T21:49:37.9094758Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-08-14T21:49:37.9095235Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-08-14T21:49:37.9095754Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-08-14T21:49:37.9096300Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-08-14T21:49:37.9096768Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-08-14T21:49:37.9097244Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-08-14T21:49:37.9097717Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-08-14T21:49:37.9098196Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-08-14T21:49:37.9098670Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-08-14T21:49:37.9099133Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-08-14T21:49:37.9099620Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-08-14T21:49:37.9100116Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-08-14T21:49:37.9100614Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-08-14T21:49:37.9101119Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-08-14T21:49:37.9101655Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-08-14T21:49:37.9102291Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-08-14T21:49:37.9102786Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-08-14T21:49:37.9103282Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-08-14T21:49:37.9103789Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-08-14T21:49:37.9104283Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-08-14T21:49:37.9104785Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-08-14T21:49:37.9105277Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-08-14T21:49:37.9105772Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-08-14T21:49:37.9106256Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-08-14T21:49:37.9561075Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-08-14T21:49:37.9561614Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-08-14T21:49:37.9562145Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-08-14T21:49:37.9562646Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-08-14T21:49:37.9563147Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-08-14T21:49:37.9563656Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-08-14T21:49:37.9564147Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-08-14T21:49:37.9564656Z * [new branch] gh/jamesjwu/174/base -> origin/gh/jamesjwu/174/base 2025-08-14T21:49:37.9565145Z * [new branch] gh/jamesjwu/174/head -> origin/gh/jamesjwu/174/head 2025-08-14T21:49:37.9565801Z * [new branch] gh/jamesjwu/174/orig -> origin/gh/jamesjwu/174/orig 2025-08-14T21:49:37.9566306Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-08-14T21:49:37.9566855Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-08-14T21:49:37.9567409Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-08-14T21:49:37.9567898Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-08-14T21:49:37.9568397Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-08-14T21:49:37.9568892Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-08-14T21:49:37.9569389Z * [new branch] gh/jamesjwu/177/base -> origin/gh/jamesjwu/177/base 2025-08-14T21:49:37.9569897Z * [new branch] gh/jamesjwu/177/head -> origin/gh/jamesjwu/177/head 2025-08-14T21:49:37.9570388Z * [new branch] gh/jamesjwu/177/orig -> origin/gh/jamesjwu/177/orig 2025-08-14T21:49:37.9570884Z * [new branch] gh/jamesjwu/178/base -> origin/gh/jamesjwu/178/base 2025-08-14T21:49:37.9571379Z * [new branch] gh/jamesjwu/178/head -> origin/gh/jamesjwu/178/head 2025-08-14T21:49:37.9571879Z * [new branch] gh/jamesjwu/178/orig -> origin/gh/jamesjwu/178/orig 2025-08-14T21:49:37.9572417Z * [new branch] gh/jamesjwu/179/base -> origin/gh/jamesjwu/179/base 2025-08-14T21:49:37.9572959Z * [new branch] gh/jamesjwu/179/head -> origin/gh/jamesjwu/179/head 2025-08-14T21:49:37.9573452Z * [new branch] gh/jamesjwu/179/orig -> origin/gh/jamesjwu/179/orig 2025-08-14T21:49:37.9573944Z * [new branch] gh/jamesjwu/180/base -> origin/gh/jamesjwu/180/base 2025-08-14T21:49:37.9574520Z * [new branch] gh/jamesjwu/180/head -> origin/gh/jamesjwu/180/head 2025-08-14T21:49:37.9575020Z * [new branch] gh/jamesjwu/180/orig -> origin/gh/jamesjwu/180/orig 2025-08-14T21:49:37.9575508Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-08-14T21:49:37.9576002Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-08-14T21:49:37.9576507Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-08-14T21:49:37.9576997Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-08-14T21:49:37.9577499Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-08-14T21:49:37.9577991Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-08-14T21:49:37.9578539Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-08-14T21:49:37.9579085Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-08-14T21:49:37.9579585Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-08-14T21:49:37.9580080Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-08-14T21:49:37.9580566Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-08-14T21:49:37.9581057Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-08-14T21:49:37.9581548Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-08-14T21:49:37.9582035Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-08-14T21:49:37.9582527Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-08-14T21:49:37.9583113Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-08-14T21:49:37.9583608Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-08-14T21:49:37.9584093Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-08-14T21:49:38.0078569Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-08-14T21:49:38.0079096Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-08-14T21:49:38.0079585Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-08-14T21:49:38.0080076Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-08-14T21:49:38.0080558Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-08-14T21:49:38.0081045Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-08-14T21:49:38.0081556Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-08-14T21:49:38.0082038Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-08-14T21:49:38.0082521Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-08-14T21:49:38.0083072Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-08-14T21:49:38.0083617Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-08-14T21:49:38.0084113Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-08-14T21:49:38.0084590Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-08-14T21:49:38.0085076Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-08-14T21:49:38.0085562Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-08-14T21:49:38.0086183Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-08-14T21:49:38.0086684Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-08-14T21:49:38.0087170Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-08-14T21:49:38.0087659Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-08-14T21:49:38.0088146Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-08-14T21:49:38.0088684Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-08-14T21:49:38.0089228Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-08-14T21:49:38.0089711Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-08-14T21:49:38.0090207Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-08-14T21:49:38.0090705Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-08-14T21:49:38.0091195Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-08-14T21:49:38.0091680Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-08-14T21:49:38.0092159Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-08-14T21:49:38.0092642Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-08-14T21:49:38.0093125Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-08-14T21:49:38.0093616Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-08-14T21:49:38.0094092Z * [new branch] gh/janeyx99/256/base -> origin/gh/janeyx99/256/base 2025-08-14T21:49:38.0094760Z * [new branch] gh/janeyx99/256/head -> origin/gh/janeyx99/256/head 2025-08-14T21:49:38.0095267Z * [new branch] gh/janeyx99/256/orig -> origin/gh/janeyx99/256/orig 2025-08-14T21:49:38.0095756Z * [new branch] gh/janeyx99/268/base -> origin/gh/janeyx99/268/base 2025-08-14T21:49:38.0096241Z * [new branch] gh/janeyx99/268/head -> origin/gh/janeyx99/268/head 2025-08-14T21:49:38.0096728Z * [new branch] gh/janeyx99/268/orig -> origin/gh/janeyx99/268/orig 2025-08-14T21:49:38.0097227Z * [new branch] gh/janeyx99/269/base -> origin/gh/janeyx99/269/base 2025-08-14T21:49:38.0097713Z * [new branch] gh/janeyx99/269/head -> origin/gh/janeyx99/269/head 2025-08-14T21:49:38.0098193Z * [new branch] gh/janeyx99/269/orig -> origin/gh/janeyx99/269/orig 2025-08-14T21:49:38.0098686Z * [new branch] gh/janeyx99/274/base -> origin/gh/janeyx99/274/base 2025-08-14T21:49:38.0099178Z * [new branch] gh/janeyx99/274/head -> origin/gh/janeyx99/274/head 2025-08-14T21:49:38.0099669Z * [new branch] gh/janeyx99/274/orig -> origin/gh/janeyx99/274/orig 2025-08-14T21:49:38.0100208Z * [new branch] gh/janeyx99/276/base -> origin/gh/janeyx99/276/base 2025-08-14T21:49:38.0100742Z * [new branch] gh/janeyx99/276/head -> origin/gh/janeyx99/276/head 2025-08-14T21:49:38.0101234Z * [new branch] gh/janeyx99/276/orig -> origin/gh/janeyx99/276/orig 2025-08-14T21:49:38.0101713Z * [new branch] gh/janeyx99/277/base -> origin/gh/janeyx99/277/base 2025-08-14T21:49:38.0517252Z * [new branch] gh/janeyx99/277/head -> origin/gh/janeyx99/277/head 2025-08-14T21:49:38.0517827Z * [new branch] gh/janeyx99/277/orig -> origin/gh/janeyx99/277/orig 2025-08-14T21:49:38.0518318Z * [new branch] gh/janeyx99/278/base -> origin/gh/janeyx99/278/base 2025-08-14T21:49:38.0518957Z * [new branch] gh/janeyx99/278/head -> origin/gh/janeyx99/278/head 2025-08-14T21:49:38.0519458Z * [new branch] gh/janeyx99/278/orig -> origin/gh/janeyx99/278/orig 2025-08-14T21:49:38.0519955Z * [new branch] gh/janeyx99/279/base -> origin/gh/janeyx99/279/base 2025-08-14T21:49:38.0520509Z * [new branch] gh/janeyx99/279/head -> origin/gh/janeyx99/279/head 2025-08-14T21:49:38.0521043Z * [new branch] gh/janeyx99/279/orig -> origin/gh/janeyx99/279/orig 2025-08-14T21:49:38.0521539Z * [new branch] gh/janeyx99/280/base -> origin/gh/janeyx99/280/base 2025-08-14T21:49:38.0522026Z * [new branch] gh/janeyx99/280/head -> origin/gh/janeyx99/280/head 2025-08-14T21:49:38.0522515Z * [new branch] gh/janeyx99/280/orig -> origin/gh/janeyx99/280/orig 2025-08-14T21:49:38.0523009Z * [new branch] gh/janeyx99/281/base -> origin/gh/janeyx99/281/base 2025-08-14T21:49:38.0523499Z * [new branch] gh/janeyx99/281/head -> origin/gh/janeyx99/281/head 2025-08-14T21:49:38.0523986Z * [new branch] gh/janeyx99/281/orig -> origin/gh/janeyx99/281/orig 2025-08-14T21:49:38.0524485Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-08-14T21:49:38.0524977Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-08-14T21:49:38.0525463Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-08-14T21:49:38.0525999Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-08-14T21:49:38.0526544Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-08-14T21:49:38.0527029Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-08-14T21:49:38.0527613Z * [new branch] gh/janeyx99/284/base -> origin/gh/janeyx99/284/base 2025-08-14T21:49:38.0528105Z * [new branch] gh/janeyx99/284/head -> origin/gh/janeyx99/284/head 2025-08-14T21:49:38.0528593Z * [new branch] gh/janeyx99/284/orig -> origin/gh/janeyx99/284/orig 2025-08-14T21:49:38.0529096Z * [new branch] gh/janeyx99/285/base -> origin/gh/janeyx99/285/base 2025-08-14T21:49:38.0529582Z * [new branch] gh/janeyx99/285/head -> origin/gh/janeyx99/285/head 2025-08-14T21:49:38.0530073Z * [new branch] gh/janeyx99/285/orig -> origin/gh/janeyx99/285/orig 2025-08-14T21:49:38.0530570Z * [new branch] gh/janeyx99/286/base -> origin/gh/janeyx99/286/base 2025-08-14T21:49:38.0531056Z * [new branch] gh/janeyx99/286/head -> origin/gh/janeyx99/286/head 2025-08-14T21:49:38.0531593Z * [new branch] gh/janeyx99/286/orig -> origin/gh/janeyx99/286/orig 2025-08-14T21:49:38.0532129Z * [new branch] gh/janeyx99/287/base -> origin/gh/janeyx99/287/base 2025-08-14T21:49:38.0532619Z * [new branch] gh/janeyx99/287/head -> origin/gh/janeyx99/287/head 2025-08-14T21:49:38.0533103Z * [new branch] gh/janeyx99/287/orig -> origin/gh/janeyx99/287/orig 2025-08-14T21:49:38.0533589Z * [new branch] gh/janeyx99/288/base -> origin/gh/janeyx99/288/base 2025-08-14T21:49:38.0534083Z * [new branch] gh/janeyx99/288/head -> origin/gh/janeyx99/288/head 2025-08-14T21:49:38.0534560Z * [new branch] gh/janeyx99/288/orig -> origin/gh/janeyx99/288/orig 2025-08-14T21:49:38.0535045Z * [new branch] gh/janeyx99/289/base -> origin/gh/janeyx99/289/base 2025-08-14T21:49:38.0535532Z * [new branch] gh/janeyx99/289/head -> origin/gh/janeyx99/289/head 2025-08-14T21:49:38.0536101Z * [new branch] gh/janeyx99/289/orig -> origin/gh/janeyx99/289/orig 2025-08-14T21:49:38.0536596Z * [new branch] gh/janeyx99/290/base -> origin/gh/janeyx99/290/base 2025-08-14T21:49:38.0537082Z * [new branch] gh/janeyx99/290/head -> origin/gh/janeyx99/290/head 2025-08-14T21:49:38.0537622Z * [new branch] gh/janeyx99/290/orig -> origin/gh/janeyx99/290/orig 2025-08-14T21:49:38.0538154Z * [new branch] gh/janeyx99/291/base -> origin/gh/janeyx99/291/base 2025-08-14T21:49:38.0538644Z * [new branch] gh/janeyx99/291/head -> origin/gh/janeyx99/291/head 2025-08-14T21:49:38.0539142Z * [new branch] gh/janeyx99/291/orig -> origin/gh/janeyx99/291/orig 2025-08-14T21:49:38.0539620Z * [new branch] gh/janeyx99/292/base -> origin/gh/janeyx99/292/base 2025-08-14T21:49:38.0540105Z * [new branch] gh/janeyx99/292/head -> origin/gh/janeyx99/292/head 2025-08-14T21:49:38.0540597Z * [new branch] gh/janeyx99/292/orig -> origin/gh/janeyx99/292/orig 2025-08-14T21:49:38.0947086Z * [new branch] gh/janeyx99/293/base -> origin/gh/janeyx99/293/base 2025-08-14T21:49:38.0947648Z * [new branch] gh/janeyx99/293/head -> origin/gh/janeyx99/293/head 2025-08-14T21:49:38.0948132Z * [new branch] gh/janeyx99/293/orig -> origin/gh/janeyx99/293/orig 2025-08-14T21:49:38.0948624Z * [new branch] gh/janeyx99/294/base -> origin/gh/janeyx99/294/base 2025-08-14T21:49:38.0949170Z * [new branch] gh/janeyx99/294/head -> origin/gh/janeyx99/294/head 2025-08-14T21:49:38.0949704Z * [new branch] gh/janeyx99/294/orig -> origin/gh/janeyx99/294/orig 2025-08-14T21:49:38.0950189Z * [new branch] gh/janeyx99/295/base -> origin/gh/janeyx99/295/base 2025-08-14T21:49:38.0950669Z * [new branch] gh/janeyx99/295/head -> origin/gh/janeyx99/295/head 2025-08-14T21:49:38.0951283Z * [new branch] gh/janeyx99/295/orig -> origin/gh/janeyx99/295/orig 2025-08-14T21:49:38.0951764Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-08-14T21:49:38.0952263Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-08-14T21:49:38.0952749Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-08-14T21:49:38.0953230Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-08-14T21:49:38.0953723Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-08-14T21:49:38.0954205Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-08-14T21:49:38.0954723Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-08-14T21:49:38.0955288Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-08-14T21:49:38.0955776Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-08-14T21:49:38.0956262Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-08-14T21:49:38.0956742Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-08-14T21:49:38.0957237Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-08-14T21:49:38.0957776Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-08-14T21:49:38.0958259Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-08-14T21:49:38.0958754Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-08-14T21:49:38.0959242Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-08-14T21:49:38.0959831Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-08-14T21:49:38.0960315Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-08-14T21:49:38.0960862Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-08-14T21:49:38.0961395Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-08-14T21:49:38.0961868Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-08-14T21:49:38.0962342Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-08-14T21:49:38.0962809Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-08-14T21:49:38.0963281Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-08-14T21:49:38.0963759Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-08-14T21:49:38.0964232Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-08-14T21:49:38.0964701Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-08-14T21:49:38.0965170Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-08-14T21:49:38.0965646Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-08-14T21:49:38.0966118Z * [new branch] gh/jansel/534/base -> origin/gh/jansel/534/base 2025-08-14T21:49:38.0966635Z * [new branch] gh/jansel/534/head -> origin/gh/jansel/534/head 2025-08-14T21:49:38.0967160Z * [new branch] gh/jansel/534/orig -> origin/gh/jansel/534/orig 2025-08-14T21:49:38.0967662Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-08-14T21:49:38.0968203Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-08-14T21:49:38.0968816Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-08-14T21:49:38.0969348Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-08-14T21:49:38.0969879Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-08-14T21:49:38.1404937Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-08-14T21:49:38.1405520Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-08-14T21:49:38.1406062Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-08-14T21:49:38.1406593Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-08-14T21:49:38.1407118Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-08-14T21:49:38.1407659Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-08-14T21:49:38.1408192Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-08-14T21:49:38.1408720Z * [new branch] gh/jbschlosser/249/base -> origin/gh/jbschlosser/249/base 2025-08-14T21:49:38.1409249Z * [new branch] gh/jbschlosser/249/head -> origin/gh/jbschlosser/249/head 2025-08-14T21:49:38.1409784Z * [new branch] gh/jbschlosser/249/orig -> origin/gh/jbschlosser/249/orig 2025-08-14T21:49:38.1410303Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-08-14T21:49:38.1410837Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-08-14T21:49:38.1411357Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-08-14T21:49:38.1411876Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-08-14T21:49:38.1412525Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-08-14T21:49:38.1413030Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-08-14T21:49:38.1413537Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-08-14T21:49:38.1414041Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-08-14T21:49:38.1414560Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-08-14T21:49:38.1415054Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-08-14T21:49:38.1415543Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-08-14T21:49:38.1416046Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-08-14T21:49:38.1416546Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-08-14T21:49:38.1417048Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-08-14T21:49:38.1417543Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-08-14T21:49:38.1418030Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-08-14T21:49:38.1418544Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-08-14T21:49:38.1419041Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-08-14T21:49:38.1419550Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-08-14T21:49:38.1420066Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-08-14T21:49:38.1420553Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-08-14T21:49:38.1421146Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-08-14T21:49:38.1421642Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-08-14T21:49:38.1422141Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-08-14T21:49:38.1422646Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-08-14T21:49:38.1423146Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-08-14T21:49:38.1423660Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-08-14T21:49:38.1424148Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-08-14T21:49:38.1424643Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-08-14T21:49:38.1425145Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-08-14T21:49:38.1425657Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-08-14T21:49:38.1426177Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-08-14T21:49:38.1426691Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-08-14T21:49:38.1427218Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-08-14T21:49:38.1427736Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-08-14T21:49:38.1428267Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-08-14T21:49:38.2095938Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-08-14T21:49:38.2096527Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-08-14T21:49:38.2097205Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-08-14T21:49:38.2097742Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-08-14T21:49:38.2098258Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-08-14T21:49:38.2098791Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-08-14T21:49:38.2099308Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-08-14T21:49:38.2099829Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-08-14T21:49:38.2100348Z * [new branch] gh/kurtamohler/40/base -> origin/gh/kurtamohler/40/base 2025-08-14T21:49:38.2100859Z * [new branch] gh/kurtamohler/40/head -> origin/gh/kurtamohler/40/head 2025-08-14T21:49:38.2101378Z * [new branch] gh/kurtamohler/40/orig -> origin/gh/kurtamohler/40/orig 2025-08-14T21:49:38.2101901Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-08-14T21:49:38.2102423Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-08-14T21:49:38.2102942Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-08-14T21:49:38.2103449Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-08-14T21:49:38.2103973Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-08-14T21:49:38.2104483Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-08-14T21:49:38.2104996Z * [new branch] gh/kurtamohler/43/base -> origin/gh/kurtamohler/43/base 2025-08-14T21:49:38.2105510Z * [new branch] gh/kurtamohler/43/head -> origin/gh/kurtamohler/43/head 2025-08-14T21:49:38.2106421Z * [new branch] gh/kurtamohler/43/orig -> origin/gh/kurtamohler/43/orig 2025-08-14T21:49:38.2106955Z * [new branch] gh/kurtamohler/44/base -> origin/gh/kurtamohler/44/base 2025-08-14T21:49:38.2107471Z * [new branch] gh/kurtamohler/44/head -> origin/gh/kurtamohler/44/head 2025-08-14T21:49:38.2107990Z * [new branch] gh/kurtamohler/44/orig -> origin/gh/kurtamohler/44/orig 2025-08-14T21:49:38.2108498Z * [new branch] gh/kurtamohler/45/base -> origin/gh/kurtamohler/45/base 2025-08-14T21:49:38.2109016Z * [new branch] gh/kurtamohler/45/head -> origin/gh/kurtamohler/45/head 2025-08-14T21:49:38.2109532Z * [new branch] gh/kurtamohler/45/orig -> origin/gh/kurtamohler/45/orig 2025-08-14T21:49:38.2110039Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-08-14T21:49:38.2110559Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-08-14T21:49:38.2111074Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-08-14T21:49:38.2111584Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-08-14T21:49:38.2112081Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-08-14T21:49:38.2112562Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-08-14T21:49:38.2113046Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-08-14T21:49:38.2113522Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-08-14T21:49:38.2114099Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-08-14T21:49:38.2114650Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-08-14T21:49:38.2115224Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-08-14T21:49:38.2115718Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-08-14T21:49:38.2116195Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-08-14T21:49:38.2116689Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-08-14T21:49:38.2117246Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-08-14T21:49:38.2117730Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-08-14T21:49:38.2118218Z * [new branch] gh/kwen2501/179/base -> origin/gh/kwen2501/179/base 2025-08-14T21:49:38.2118693Z * [new branch] gh/kwen2501/179/head -> origin/gh/kwen2501/179/head 2025-08-14T21:49:38.2119187Z * [new branch] gh/kwen2501/179/orig -> origin/gh/kwen2501/179/orig 2025-08-14T21:49:38.2119667Z * [new branch] gh/kwen2501/181/base -> origin/gh/kwen2501/181/base 2025-08-14T21:49:38.2608887Z * [new branch] gh/kwen2501/181/head -> origin/gh/kwen2501/181/head 2025-08-14T21:49:38.2609469Z * [new branch] gh/kwen2501/181/orig -> origin/gh/kwen2501/181/orig 2025-08-14T21:49:38.2609969Z * [new branch] gh/kwen2501/183/base -> origin/gh/kwen2501/183/base 2025-08-14T21:49:38.2610464Z * [new branch] gh/kwen2501/183/head -> origin/gh/kwen2501/183/head 2025-08-14T21:49:38.2610950Z * [new branch] gh/kwen2501/183/orig -> origin/gh/kwen2501/183/orig 2025-08-14T21:49:38.2611428Z * [new branch] gh/kwen2501/184/base -> origin/gh/kwen2501/184/base 2025-08-14T21:49:38.2611907Z * [new branch] gh/kwen2501/184/head -> origin/gh/kwen2501/184/head 2025-08-14T21:49:38.2612382Z * [new branch] gh/kwen2501/184/orig -> origin/gh/kwen2501/184/orig 2025-08-14T21:49:38.2613140Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-08-14T21:49:38.2613638Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-08-14T21:49:38.2614115Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-08-14T21:49:38.2614614Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-08-14T21:49:38.2615086Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-08-14T21:49:38.2615572Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-08-14T21:49:38.2616049Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-08-14T21:49:38.2616552Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-08-14T21:49:38.2617041Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-08-14T21:49:38.2617524Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-08-14T21:49:38.2618008Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-08-14T21:49:38.2618547Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-08-14T21:49:38.2619074Z * [new branch] gh/kwen2501/195/base -> origin/gh/kwen2501/195/base 2025-08-14T21:49:38.2619561Z * [new branch] gh/kwen2501/195/head -> origin/gh/kwen2501/195/head 2025-08-14T21:49:38.2620036Z * [new branch] gh/kwen2501/195/orig -> origin/gh/kwen2501/195/orig 2025-08-14T21:49:38.2620517Z * [new branch] gh/kwen2501/196/base -> origin/gh/kwen2501/196/base 2025-08-14T21:49:38.2620997Z * [new branch] gh/kwen2501/196/head -> origin/gh/kwen2501/196/head 2025-08-14T21:49:38.2622046Z * [new branch] gh/kwen2501/196/orig -> origin/gh/kwen2501/196/orig 2025-08-14T21:49:38.2622556Z * [new branch] gh/kwen2501/197/base -> origin/gh/kwen2501/197/base 2025-08-14T21:49:38.2623038Z * [new branch] gh/kwen2501/197/head -> origin/gh/kwen2501/197/head 2025-08-14T21:49:38.2623527Z * [new branch] gh/kwen2501/197/orig -> origin/gh/kwen2501/197/orig 2025-08-14T21:49:38.2624014Z * [new branch] gh/kwen2501/198/base -> origin/gh/kwen2501/198/base 2025-08-14T21:49:38.2624559Z * [new branch] gh/kwen2501/198/head -> origin/gh/kwen2501/198/head 2025-08-14T21:49:38.2625090Z * [new branch] gh/kwen2501/198/orig -> origin/gh/kwen2501/198/orig 2025-08-14T21:49:38.2625569Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-08-14T21:49:38.2626053Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-08-14T21:49:38.2626538Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-08-14T21:49:38.2627025Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-08-14T21:49:38.2627506Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-08-14T21:49:38.2627982Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-08-14T21:49:38.2628475Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-08-14T21:49:38.2628946Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-08-14T21:49:38.2629428Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-08-14T21:49:38.2629902Z * [new branch] gh/kwen2501/202/base -> origin/gh/kwen2501/202/base 2025-08-14T21:49:38.2630440Z * [new branch] gh/kwen2501/202/head -> origin/gh/kwen2501/202/head 2025-08-14T21:49:38.2631074Z * [new branch] gh/kwen2501/202/orig -> origin/gh/kwen2501/202/orig 2025-08-14T21:49:38.2631553Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-08-14T21:49:38.2632037Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-08-14T21:49:38.2632522Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-08-14T21:49:38.3055087Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-08-14T21:49:38.3055643Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-08-14T21:49:38.3056180Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-08-14T21:49:38.3056755Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-08-14T21:49:38.3057328Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-08-14T21:49:38.3057838Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-08-14T21:49:38.3058345Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-08-14T21:49:38.3058861Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-08-14T21:49:38.3059381Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-08-14T21:49:38.3059887Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-08-14T21:49:38.3060402Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-08-14T21:49:38.3060908Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-08-14T21:49:38.3061420Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-08-14T21:49:38.3062082Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-08-14T21:49:38.3062637Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-08-14T21:49:38.3063203Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-08-14T21:49:38.3063713Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-08-14T21:49:38.3064228Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-08-14T21:49:38.3064747Z * [new branch] gh/laithsakka/234/base -> origin/gh/laithsakka/234/base 2025-08-14T21:49:38.3065254Z * [new branch] gh/laithsakka/234/head -> origin/gh/laithsakka/234/head 2025-08-14T21:49:38.3065776Z * [new branch] gh/laithsakka/234/orig -> origin/gh/laithsakka/234/orig 2025-08-14T21:49:38.3066288Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-08-14T21:49:38.3066807Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-08-14T21:49:38.3067319Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-08-14T21:49:38.3067829Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-08-14T21:49:38.3068342Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-08-14T21:49:38.3068898Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-08-14T21:49:38.3069455Z * [new branch] gh/laithsakka/239/base -> origin/gh/laithsakka/239/base 2025-08-14T21:49:38.3069987Z * [new branch] gh/laithsakka/239/head -> origin/gh/laithsakka/239/head 2025-08-14T21:49:38.3070499Z * [new branch] gh/laithsakka/239/orig -> origin/gh/laithsakka/239/orig 2025-08-14T21:49:38.3071106Z * [new branch] gh/laithsakka/240/base -> origin/gh/laithsakka/240/base 2025-08-14T21:49:38.3071622Z * [new branch] gh/laithsakka/240/head -> origin/gh/laithsakka/240/head 2025-08-14T21:49:38.3072140Z * [new branch] gh/laithsakka/240/orig -> origin/gh/laithsakka/240/orig 2025-08-14T21:49:38.3072661Z * [new branch] gh/laithsakka/242/base -> origin/gh/laithsakka/242/base 2025-08-14T21:49:38.3073179Z * [new branch] gh/laithsakka/242/head -> origin/gh/laithsakka/242/head 2025-08-14T21:49:38.3073705Z * [new branch] gh/laithsakka/242/orig -> origin/gh/laithsakka/242/orig 2025-08-14T21:49:38.3074216Z * [new branch] gh/laithsakka/243/base -> origin/gh/laithsakka/243/base 2025-08-14T21:49:38.3074785Z * [new branch] gh/laithsakka/243/head -> origin/gh/laithsakka/243/head 2025-08-14T21:49:38.3075349Z * [new branch] gh/laithsakka/243/orig -> origin/gh/laithsakka/243/orig 2025-08-14T21:49:38.3075866Z * [new branch] gh/laithsakka/244/base -> origin/gh/laithsakka/244/base 2025-08-14T21:49:38.3076379Z * [new branch] gh/laithsakka/244/head -> origin/gh/laithsakka/244/head 2025-08-14T21:49:38.3076989Z * [new branch] gh/laithsakka/244/orig -> origin/gh/laithsakka/244/orig 2025-08-14T21:49:38.3077505Z * [new branch] gh/laithsakka/245/base -> origin/gh/laithsakka/245/base 2025-08-14T21:49:38.3078005Z * [new branch] gh/laithsakka/245/head -> origin/gh/laithsakka/245/head 2025-08-14T21:49:38.3078518Z * [new branch] gh/laithsakka/245/orig -> origin/gh/laithsakka/245/orig 2025-08-14T21:49:38.3485238Z * [new branch] gh/laithsakka/246/base -> origin/gh/laithsakka/246/base 2025-08-14T21:49:38.3485795Z * [new branch] gh/laithsakka/246/head -> origin/gh/laithsakka/246/head 2025-08-14T21:49:38.3486455Z * [new branch] gh/laithsakka/246/orig -> origin/gh/laithsakka/246/orig 2025-08-14T21:49:38.3486978Z * [new branch] gh/laithsakka/247/base -> origin/gh/laithsakka/247/base 2025-08-14T21:49:38.3487495Z * [new branch] gh/laithsakka/247/head -> origin/gh/laithsakka/247/head 2025-08-14T21:49:38.3488017Z * [new branch] gh/laithsakka/247/orig -> origin/gh/laithsakka/247/orig 2025-08-14T21:49:38.3488531Z * [new branch] gh/laithsakka/248/base -> origin/gh/laithsakka/248/base 2025-08-14T21:49:38.3489043Z * [new branch] gh/laithsakka/248/head -> origin/gh/laithsakka/248/head 2025-08-14T21:49:38.3489555Z * [new branch] gh/laithsakka/248/orig -> origin/gh/laithsakka/248/orig 2025-08-14T21:49:38.3490070Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-08-14T21:49:38.3490597Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-08-14T21:49:38.3491104Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-08-14T21:49:38.3491636Z * [new branch] gh/laithsakka/250/base -> origin/gh/laithsakka/250/base 2025-08-14T21:49:38.3492154Z * [new branch] gh/laithsakka/250/head -> origin/gh/laithsakka/250/head 2025-08-14T21:49:38.3492664Z * [new branch] gh/laithsakka/250/orig -> origin/gh/laithsakka/250/orig 2025-08-14T21:49:38.3493180Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-08-14T21:49:38.3493686Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-08-14T21:49:38.3494196Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-08-14T21:49:38.3494707Z * [new branch] gh/laithsakka/252/base -> origin/gh/laithsakka/252/base 2025-08-14T21:49:38.3495299Z * [new branch] gh/laithsakka/252/head -> origin/gh/laithsakka/252/head 2025-08-14T21:49:38.3495817Z * [new branch] gh/laithsakka/252/orig -> origin/gh/laithsakka/252/orig 2025-08-14T21:49:38.3496325Z * [new branch] gh/laithsakka/253/base -> origin/gh/laithsakka/253/base 2025-08-14T21:49:38.3496844Z * [new branch] gh/laithsakka/253/head -> origin/gh/laithsakka/253/head 2025-08-14T21:49:38.3497353Z * [new branch] gh/laithsakka/253/orig -> origin/gh/laithsakka/253/orig 2025-08-14T21:49:38.3497865Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-08-14T21:49:38.3498378Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-08-14T21:49:38.3498889Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-08-14T21:49:38.3499413Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-08-14T21:49:38.3499916Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-08-14T21:49:38.3500433Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-08-14T21:49:38.3500947Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-08-14T21:49:38.3501454Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-08-14T21:49:38.3501971Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-08-14T21:49:38.3502479Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-08-14T21:49:38.3502994Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-08-14T21:49:38.3503511Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-08-14T21:49:38.3504091Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-08-14T21:49:38.3504614Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-08-14T21:49:38.3505127Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-08-14T21:49:38.3505660Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-08-14T21:49:38.3506181Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-08-14T21:49:38.3506686Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-08-14T21:49:38.3507201Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-08-14T21:49:38.3507708Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-08-14T21:49:38.3508236Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-08-14T21:49:38.3508760Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-08-14T21:49:38.4276635Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-08-14T21:49:38.4277238Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-08-14T21:49:38.4277760Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-08-14T21:49:38.4278292Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-08-14T21:49:38.4278866Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-08-14T21:49:38.4279373Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-08-14T21:49:38.4279986Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-08-14T21:49:38.4280702Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-08-14T21:49:38.4281249Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-08-14T21:49:38.4281785Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-08-14T21:49:38.4282379Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-08-14T21:49:38.4282933Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-08-14T21:49:38.4283480Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-08-14T21:49:38.4284073Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-08-14T21:49:38.4284611Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-08-14T21:49:38.4285129Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-08-14T21:49:38.4285655Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-08-14T21:49:38.4286169Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-08-14T21:49:38.4286682Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-08-14T21:49:38.4287197Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-08-14T21:49:38.4287754Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-08-14T21:49:38.4288269Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-08-14T21:49:38.4288861Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-08-14T21:49:38.4289484Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-08-14T21:49:38.4290185Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-08-14T21:49:38.4290736Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-08-14T21:49:38.4291276Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-08-14T21:49:38.4291881Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-08-14T21:49:38.4292452Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-08-14T21:49:38.4293017Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-08-14T21:49:38.4293592Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-08-14T21:49:38.4294195Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-08-14T21:49:38.4294709Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-08-14T21:49:38.4295239Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-08-14T21:49:38.4295752Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-08-14T21:49:38.4296274Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-08-14T21:49:38.4296790Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-08-14T21:49:38.4297298Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-08-14T21:49:38.4297814Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-08-14T21:49:38.4298324Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-08-14T21:49:38.4298841Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-08-14T21:49:38.4299468Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-08-14T21:49:38.4299975Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-08-14T21:49:38.4300494Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-08-14T21:49:38.4300996Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-08-14T21:49:38.4925888Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-08-14T21:49:38.4926443Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-08-14T21:49:38.4926980Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-08-14T21:49:38.4927489Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-08-14T21:49:38.4928001Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-08-14T21:49:38.4928526Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-08-14T21:49:38.4929028Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-08-14T21:49:38.4929539Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-08-14T21:49:38.4930048Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-08-14T21:49:38.4930573Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-08-14T21:49:38.4931082Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-08-14T21:49:38.4931590Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-08-14T21:49:38.4932113Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-08-14T21:49:38.4932761Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-08-14T21:49:38.4933297Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-08-14T21:49:38.4933818Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-08-14T21:49:38.4934326Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-08-14T21:49:38.4934850Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-08-14T21:49:38.4935325Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-08-14T21:49:38.4935775Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-08-14T21:49:38.4936210Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-08-14T21:49:38.4936634Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-08-14T21:49:38.4937071Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-08-14T21:49:38.4937494Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-08-14T21:49:38.4937923Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-08-14T21:49:38.4938352Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-08-14T21:49:38.4938779Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-08-14T21:49:38.4939235Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-08-14T21:49:38.4939710Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-08-14T21:49:38.4940191Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-08-14T21:49:38.4940659Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-08-14T21:49:38.4941226Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-08-14T21:49:38.4941706Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-08-14T21:49:38.4942176Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-08-14T21:49:38.4942647Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-08-14T21:49:38.4943119Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-08-14T21:49:38.4943599Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-08-14T21:49:38.4944071Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-08-14T21:49:38.4944539Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-08-14T21:49:38.4945020Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-08-14T21:49:38.4945494Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-08-14T21:49:38.4945974Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-08-14T21:49:38.4946440Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-08-14T21:49:38.4946915Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-08-14T21:49:38.4947392Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-08-14T21:49:38.4947859Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-08-14T21:49:38.4948335Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-08-14T21:49:38.4948807Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-08-14T21:49:38.5386678Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-08-14T21:49:38.5387385Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-08-14T21:49:38.5387879Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-08-14T21:49:38.5388367Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-08-14T21:49:38.5388839Z * [new branch] gh/malfet/422/base -> origin/gh/malfet/422/base 2025-08-14T21:49:38.5389325Z * [new branch] gh/malfet/422/head -> origin/gh/malfet/422/head 2025-08-14T21:49:38.5389798Z * [new branch] gh/malfet/422/orig -> origin/gh/malfet/422/orig 2025-08-14T21:49:38.5390269Z * [new branch] gh/malfet/438/base -> origin/gh/malfet/438/base 2025-08-14T21:49:38.5390743Z * [new branch] gh/malfet/438/head -> origin/gh/malfet/438/head 2025-08-14T21:49:38.5391216Z * [new branch] gh/malfet/438/orig -> origin/gh/malfet/438/orig 2025-08-14T21:49:38.5391704Z * [new branch] gh/malfet/439/base -> origin/gh/malfet/439/base 2025-08-14T21:49:38.5392199Z * [new branch] gh/malfet/439/head -> origin/gh/malfet/439/head 2025-08-14T21:49:38.5392663Z * [new branch] gh/malfet/439/orig -> origin/gh/malfet/439/orig 2025-08-14T21:49:38.5393146Z * [new branch] gh/malfet/440/base -> origin/gh/malfet/440/base 2025-08-14T21:49:38.5393617Z * [new branch] gh/malfet/440/head -> origin/gh/malfet/440/head 2025-08-14T21:49:38.5394087Z * [new branch] gh/malfet/440/orig -> origin/gh/malfet/440/orig 2025-08-14T21:49:38.5394560Z * [new branch] gh/malfet/441/base -> origin/gh/malfet/441/base 2025-08-14T21:49:38.5395029Z * [new branch] gh/malfet/441/head -> origin/gh/malfet/441/head 2025-08-14T21:49:38.5395501Z * [new branch] gh/malfet/441/orig -> origin/gh/malfet/441/orig 2025-08-14T21:49:38.5396154Z * [new branch] gh/malfet/442/base -> origin/gh/malfet/442/base 2025-08-14T21:49:38.5396637Z * [new branch] gh/malfet/442/head -> origin/gh/malfet/442/head 2025-08-14T21:49:38.5397118Z * [new branch] gh/malfet/442/orig -> origin/gh/malfet/442/orig 2025-08-14T21:49:38.5397587Z * [new branch] gh/malfet/443/base -> origin/gh/malfet/443/base 2025-08-14T21:49:38.5398073Z * [new branch] gh/malfet/443/head -> origin/gh/malfet/443/head 2025-08-14T21:49:38.5398549Z * [new branch] gh/malfet/443/orig -> origin/gh/malfet/443/orig 2025-08-14T21:49:38.5399027Z * [new branch] gh/malfet/444/base -> origin/gh/malfet/444/base 2025-08-14T21:49:38.5399511Z * [new branch] gh/malfet/444/head -> origin/gh/malfet/444/head 2025-08-14T21:49:38.5399979Z * [new branch] gh/malfet/444/orig -> origin/gh/malfet/444/orig 2025-08-14T21:49:38.5400466Z * [new branch] gh/malfet/445/base -> origin/gh/malfet/445/base 2025-08-14T21:49:38.5400927Z * [new branch] gh/malfet/445/head -> origin/gh/malfet/445/head 2025-08-14T21:49:38.5401402Z * [new branch] gh/malfet/445/orig -> origin/gh/malfet/445/orig 2025-08-14T21:49:38.5401875Z * [new branch] gh/malfet/446/base -> origin/gh/malfet/446/base 2025-08-14T21:49:38.5402344Z * [new branch] gh/malfet/446/head -> origin/gh/malfet/446/head 2025-08-14T21:49:38.5402817Z * [new branch] gh/malfet/446/orig -> origin/gh/malfet/446/orig 2025-08-14T21:49:38.5403280Z * [new branch] gh/malfet/447/base -> origin/gh/malfet/447/base 2025-08-14T21:49:38.5403754Z * [new branch] gh/malfet/447/head -> origin/gh/malfet/447/head 2025-08-14T21:49:38.5404311Z * [new branch] gh/malfet/448/base -> origin/gh/malfet/448/base 2025-08-14T21:49:38.5404791Z * [new branch] gh/malfet/448/head -> origin/gh/malfet/448/head 2025-08-14T21:49:38.5405277Z * [new branch] gh/malfet/449/base -> origin/gh/malfet/449/base 2025-08-14T21:49:38.5405752Z * [new branch] gh/malfet/449/head -> origin/gh/malfet/449/head 2025-08-14T21:49:38.5406233Z * [new branch] gh/malfet/450/base -> origin/gh/malfet/450/base 2025-08-14T21:49:38.5406697Z * [new branch] gh/malfet/450/head -> origin/gh/malfet/450/head 2025-08-14T21:49:38.5407177Z * [new branch] gh/malfet/451/base -> origin/gh/malfet/451/base 2025-08-14T21:49:38.5407656Z * [new branch] gh/malfet/451/head -> origin/gh/malfet/451/head 2025-08-14T21:49:38.5408125Z * [new branch] gh/malfet/452/base -> origin/gh/malfet/452/base 2025-08-14T21:49:38.5408610Z * [new branch] gh/malfet/452/head -> origin/gh/malfet/452/head 2025-08-14T21:49:38.5409083Z * [new branch] gh/malfet/452/orig -> origin/gh/malfet/452/orig 2025-08-14T21:49:38.5409558Z * [new branch] gh/malfet/453/base -> origin/gh/malfet/453/base 2025-08-14T21:49:38.5854920Z * [new branch] gh/malfet/453/head -> origin/gh/malfet/453/head 2025-08-14T21:49:38.5855438Z * [new branch] gh/malfet/453/orig -> origin/gh/malfet/453/orig 2025-08-14T21:49:38.5855920Z * [new branch] gh/malfet/454/base -> origin/gh/malfet/454/base 2025-08-14T21:49:38.5856395Z * [new branch] gh/malfet/454/head -> origin/gh/malfet/454/head 2025-08-14T21:49:38.5856876Z * [new branch] gh/malfet/454/orig -> origin/gh/malfet/454/orig 2025-08-14T21:49:38.5857369Z * [new branch] gh/malfet/455/base -> origin/gh/malfet/455/base 2025-08-14T21:49:38.5858011Z * [new branch] gh/malfet/455/head -> origin/gh/malfet/455/head 2025-08-14T21:49:38.5858501Z * [new branch] gh/malfet/455/orig -> origin/gh/malfet/455/orig 2025-08-14T21:49:38.5858977Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-08-14T21:49:38.5859462Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-08-14T21:49:38.5859938Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-08-14T21:49:38.5860405Z * [new branch] gh/malfet/457/base -> origin/gh/malfet/457/base 2025-08-14T21:49:38.5860885Z * [new branch] gh/malfet/457/head -> origin/gh/malfet/457/head 2025-08-14T21:49:38.5861351Z * [new branch] gh/malfet/457/orig -> origin/gh/malfet/457/orig 2025-08-14T21:49:38.5861835Z * [new branch] gh/malfet/458/base -> origin/gh/malfet/458/base 2025-08-14T21:49:38.5862320Z * [new branch] gh/malfet/458/head -> origin/gh/malfet/458/head 2025-08-14T21:49:38.5862791Z * [new branch] gh/malfet/458/orig -> origin/gh/malfet/458/orig 2025-08-14T21:49:38.5863262Z * [new branch] gh/malfet/459/base -> origin/gh/malfet/459/base 2025-08-14T21:49:38.5863733Z * [new branch] gh/malfet/459/head -> origin/gh/malfet/459/head 2025-08-14T21:49:38.5864208Z * [new branch] gh/malfet/459/orig -> origin/gh/malfet/459/orig 2025-08-14T21:49:38.5864685Z * [new branch] gh/malfet/460/base -> origin/gh/malfet/460/base 2025-08-14T21:49:38.5865150Z * [new branch] gh/malfet/460/head -> origin/gh/malfet/460/head 2025-08-14T21:49:38.5865640Z * [new branch] gh/malfet/460/orig -> origin/gh/malfet/460/orig 2025-08-14T21:49:38.5866105Z * [new branch] gh/malfet/461/base -> origin/gh/malfet/461/base 2025-08-14T21:49:38.5866680Z * [new branch] gh/malfet/461/head -> origin/gh/malfet/461/head 2025-08-14T21:49:38.5867171Z * [new branch] gh/malfet/461/orig -> origin/gh/malfet/461/orig 2025-08-14T21:49:38.5867646Z * [new branch] gh/malfet/462/base -> origin/gh/malfet/462/base 2025-08-14T21:49:38.5868137Z * [new branch] gh/malfet/462/head -> origin/gh/malfet/462/head 2025-08-14T21:49:38.5868626Z * [new branch] gh/malfet/462/orig -> origin/gh/malfet/462/orig 2025-08-14T21:49:38.5869103Z * [new branch] gh/malfet/463/base -> origin/gh/malfet/463/base 2025-08-14T21:49:38.5869577Z * [new branch] gh/malfet/463/head -> origin/gh/malfet/463/head 2025-08-14T21:49:38.5870054Z * [new branch] gh/malfet/463/orig -> origin/gh/malfet/463/orig 2025-08-14T21:49:38.5870527Z * [new branch] gh/malfet/464/base -> origin/gh/malfet/464/base 2025-08-14T21:49:38.5871009Z * [new branch] gh/malfet/464/head -> origin/gh/malfet/464/head 2025-08-14T21:49:38.5871474Z * [new branch] gh/malfet/464/orig -> origin/gh/malfet/464/orig 2025-08-14T21:49:38.5871949Z * [new branch] gh/malfet/465/base -> origin/gh/malfet/465/base 2025-08-14T21:49:38.5872429Z * [new branch] gh/malfet/465/head -> origin/gh/malfet/465/head 2025-08-14T21:49:38.5872898Z * [new branch] gh/malfet/465/orig -> origin/gh/malfet/465/orig 2025-08-14T21:49:38.5873382Z * [new branch] gh/malfet/466/base -> origin/gh/malfet/466/base 2025-08-14T21:49:38.5873847Z * [new branch] gh/malfet/466/head -> origin/gh/malfet/466/head 2025-08-14T21:49:38.5874323Z * [new branch] gh/malfet/466/orig -> origin/gh/malfet/466/orig 2025-08-14T21:49:38.5875243Z * [new branch] gh/malfet/467/base -> origin/gh/malfet/467/base 2025-08-14T21:49:38.5875844Z * [new branch] gh/malfet/467/head -> origin/gh/malfet/467/head 2025-08-14T21:49:38.5876336Z * [new branch] gh/malfet/467/orig -> origin/gh/malfet/467/orig 2025-08-14T21:49:38.5876811Z * [new branch] gh/malfet/468/base -> origin/gh/malfet/468/base 2025-08-14T21:49:38.5877290Z * [new branch] gh/malfet/468/head -> origin/gh/malfet/468/head 2025-08-14T21:49:38.5877770Z * [new branch] gh/malfet/468/orig -> origin/gh/malfet/468/orig 2025-08-14T21:49:38.6335499Z * [new branch] gh/malfet/469/base -> origin/gh/malfet/469/base 2025-08-14T21:49:38.6336041Z * [new branch] gh/malfet/469/head -> origin/gh/malfet/469/head 2025-08-14T21:49:38.6336534Z * [new branch] gh/malfet/469/orig -> origin/gh/malfet/469/orig 2025-08-14T21:49:38.6337038Z * [new branch] gh/malfet/470/base -> origin/gh/malfet/470/base 2025-08-14T21:49:38.6337508Z * [new branch] gh/malfet/470/head -> origin/gh/malfet/470/head 2025-08-14T21:49:38.6338004Z * [new branch] gh/malfet/470/orig -> origin/gh/malfet/470/orig 2025-08-14T21:49:38.6338479Z * [new branch] gh/malfet/471/base -> origin/gh/malfet/471/base 2025-08-14T21:49:38.6338947Z * [new branch] gh/malfet/471/head -> origin/gh/malfet/471/head 2025-08-14T21:49:38.6339423Z * [new branch] gh/malfet/471/orig -> origin/gh/malfet/471/orig 2025-08-14T21:49:38.6339892Z * [new branch] gh/malfet/472/base -> origin/gh/malfet/472/base 2025-08-14T21:49:38.6340366Z * [new branch] gh/malfet/472/head -> origin/gh/malfet/472/head 2025-08-14T21:49:38.6340838Z * [new branch] gh/malfet/472/orig -> origin/gh/malfet/472/orig 2025-08-14T21:49:38.6341459Z * [new branch] gh/malfet/473/base -> origin/gh/malfet/473/base 2025-08-14T21:49:38.6341945Z * [new branch] gh/malfet/473/head -> origin/gh/malfet/473/head 2025-08-14T21:49:38.6342414Z * [new branch] gh/malfet/473/orig -> origin/gh/malfet/473/orig 2025-08-14T21:49:38.6342889Z * [new branch] gh/malfet/474/base -> origin/gh/malfet/474/base 2025-08-14T21:49:38.6343364Z * [new branch] gh/malfet/474/head -> origin/gh/malfet/474/head 2025-08-14T21:49:38.6343844Z * [new branch] gh/malfet/474/orig -> origin/gh/malfet/474/orig 2025-08-14T21:49:38.6344324Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-08-14T21:49:38.6344800Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-08-14T21:49:38.6345274Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-08-14T21:49:38.6345755Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-08-14T21:49:38.6346236Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-08-14T21:49:38.6346720Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-08-14T21:49:38.6347190Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-08-14T21:49:38.6347670Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-08-14T21:49:38.6348138Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-08-14T21:49:38.6348621Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-08-14T21:49:38.6349094Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-08-14T21:49:38.6349566Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-08-14T21:49:38.6350142Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-08-14T21:49:38.6350613Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-08-14T21:49:38.6351102Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-08-14T21:49:38.6351576Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-08-14T21:49:38.6352064Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-08-14T21:49:38.6352547Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-08-14T21:49:38.6353021Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-08-14T21:49:38.6353492Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-08-14T21:49:38.6353960Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-08-14T21:49:38.6354439Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-08-14T21:49:38.6354918Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-08-14T21:49:38.6355464Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-08-14T21:49:38.6355955Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-08-14T21:49:38.6356432Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-08-14T21:49:38.6356912Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-08-14T21:49:38.6357401Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-08-14T21:49:38.6357865Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-08-14T21:49:38.6358429Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-08-14T21:49:38.6811831Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-08-14T21:49:38.6812436Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-08-14T21:49:38.6812982Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-08-14T21:49:38.6813515Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-08-14T21:49:38.6814045Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-08-14T21:49:38.6814560Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-08-14T21:49:38.6815127Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-08-14T21:49:38.6815650Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-08-14T21:49:38.6816195Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-08-14T21:49:38.6816675Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-08-14T21:49:38.6817140Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-08-14T21:49:38.6817613Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-08-14T21:49:38.6818085Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-08-14T21:49:38.6818554Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-08-14T21:49:38.6819029Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-08-14T21:49:38.6819499Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-08-14T21:49:38.6819975Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-08-14T21:49:38.6820598Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-08-14T21:49:38.6821073Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-08-14T21:49:38.6821595Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-08-14T21:49:38.6822151Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-08-14T21:49:38.6822812Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-08-14T21:49:38.6823455Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-08-14T21:49:38.6824067Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-08-14T21:49:38.6824714Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-08-14T21:49:38.6825348Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-08-14T21:49:38.6825922Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-08-14T21:49:38.6826459Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-08-14T21:49:38.6827058Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-08-14T21:49:38.6827642Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-08-14T21:49:38.6828206Z * [new branch] gh/masnesral/223/base -> origin/gh/masnesral/223/base 2025-08-14T21:49:38.6828761Z * [new branch] gh/masnesral/223/head -> origin/gh/masnesral/223/head 2025-08-14T21:49:38.6829348Z * [new branch] gh/masnesral/223/orig -> origin/gh/masnesral/223/orig 2025-08-14T21:49:38.6829907Z * [new branch] gh/masnesral/224/base -> origin/gh/masnesral/224/base 2025-08-14T21:49:38.6830621Z * [new branch] gh/masnesral/224/head -> origin/gh/masnesral/224/head 2025-08-14T21:49:38.6831215Z * [new branch] gh/masnesral/224/orig -> origin/gh/masnesral/224/orig 2025-08-14T21:49:38.6831772Z * [new branch] gh/masnesral/225/base -> origin/gh/masnesral/225/base 2025-08-14T21:49:38.6832363Z * [new branch] gh/masnesral/225/head -> origin/gh/masnesral/225/head 2025-08-14T21:49:38.6832905Z * [new branch] gh/masnesral/225/orig -> origin/gh/masnesral/225/orig 2025-08-14T21:49:38.6833496Z * [new branch] gh/masnesral/226/base -> origin/gh/masnesral/226/base 2025-08-14T21:49:38.6834043Z * [new branch] gh/masnesral/226/head -> origin/gh/masnesral/226/head 2025-08-14T21:49:38.6834636Z * [new branch] gh/masnesral/226/orig -> origin/gh/masnesral/226/orig 2025-08-14T21:49:38.6835247Z * [new branch] gh/masnesral/227/base -> origin/gh/masnesral/227/base 2025-08-14T21:49:38.6835860Z * [new branch] gh/masnesral/227/head -> origin/gh/masnesral/227/head 2025-08-14T21:49:38.6836400Z * [new branch] gh/masnesral/227/orig -> origin/gh/masnesral/227/orig 2025-08-14T21:49:38.6836992Z * [new branch] gh/masnesral/228/base -> origin/gh/masnesral/228/base 2025-08-14T21:49:38.6837548Z * [new branch] gh/masnesral/228/head -> origin/gh/masnesral/228/head 2025-08-14T21:49:38.7292525Z * [new branch] gh/masnesral/228/orig -> origin/gh/masnesral/228/orig 2025-08-14T21:49:38.7293208Z * [new branch] gh/masnesral/229/base -> origin/gh/masnesral/229/base 2025-08-14T21:49:38.7293742Z * [new branch] gh/masnesral/229/head -> origin/gh/masnesral/229/head 2025-08-14T21:49:38.7294254Z * [new branch] gh/masnesral/229/orig -> origin/gh/masnesral/229/orig 2025-08-14T21:49:38.7294944Z * [new branch] gh/masnesral/230/base -> origin/gh/masnesral/230/base 2025-08-14T21:49:38.7295450Z * [new branch] gh/masnesral/230/head -> origin/gh/masnesral/230/head 2025-08-14T21:49:38.7295967Z * [new branch] gh/masnesral/230/orig -> origin/gh/masnesral/230/orig 2025-08-14T21:49:38.7296472Z * [new branch] gh/masnesral/231/base -> origin/gh/masnesral/231/base 2025-08-14T21:49:38.7296976Z * [new branch] gh/masnesral/231/head -> origin/gh/masnesral/231/head 2025-08-14T21:49:38.7297479Z * [new branch] gh/masnesral/231/orig -> origin/gh/masnesral/231/orig 2025-08-14T21:49:38.7297974Z * [new branch] gh/masnesral/232/base -> origin/gh/masnesral/232/base 2025-08-14T21:49:38.7298482Z * [new branch] gh/masnesral/232/head -> origin/gh/masnesral/232/head 2025-08-14T21:49:38.7299051Z * [new branch] gh/masnesral/232/orig -> origin/gh/masnesral/232/orig 2025-08-14T21:49:38.7299605Z * [new branch] gh/masnesral/233/base -> origin/gh/masnesral/233/base 2025-08-14T21:49:38.7300210Z * [new branch] gh/masnesral/233/head -> origin/gh/masnesral/233/head 2025-08-14T21:49:38.7300711Z * [new branch] gh/masnesral/233/orig -> origin/gh/masnesral/233/orig 2025-08-14T21:49:38.7301259Z * [new branch] gh/masnesral/234/base -> origin/gh/masnesral/234/base 2025-08-14T21:49:38.7301763Z * [new branch] gh/masnesral/234/head -> origin/gh/masnesral/234/head 2025-08-14T21:49:38.7302266Z * [new branch] gh/masnesral/234/orig -> origin/gh/masnesral/234/orig 2025-08-14T21:49:38.7302770Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-08-14T21:49:38.7303272Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-08-14T21:49:38.7303884Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-08-14T21:49:38.7304400Z * [new branch] gh/masnesral/236/base -> origin/gh/masnesral/236/base 2025-08-14T21:49:38.7304913Z * [new branch] gh/masnesral/236/head -> origin/gh/masnesral/236/head 2025-08-14T21:49:38.7305426Z * [new branch] gh/masnesral/236/orig -> origin/gh/masnesral/236/orig 2025-08-14T21:49:38.7305938Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-08-14T21:49:38.7306497Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-08-14T21:49:38.7307074Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-08-14T21:49:38.7307620Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-08-14T21:49:38.7308199Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-08-14T21:49:38.7308737Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-08-14T21:49:38.7309310Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-08-14T21:49:38.7309851Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-08-14T21:49:38.7310390Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-08-14T21:49:38.7311035Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-08-14T21:49:38.7311576Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-08-14T21:49:38.7312158Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-08-14T21:49:38.7312692Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-08-14T21:49:38.7313278Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-08-14T21:49:38.7313919Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-08-14T21:49:38.7314548Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-08-14T21:49:38.7315315Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-08-14T21:49:38.7315990Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-08-14T21:49:38.7316644Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-08-14T21:49:38.7317329Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-08-14T21:49:38.7717063Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-08-14T21:49:38.7717725Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-08-14T21:49:38.7718349Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-08-14T21:49:38.7719004Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-08-14T21:49:38.7719661Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-08-14T21:49:38.7720310Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-08-14T21:49:38.7720913Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-08-14T21:49:38.7721505Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-08-14T21:49:38.7722105Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-08-14T21:49:38.7722701Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-08-14T21:49:38.7723436Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-08-14T21:49:38.7724042Z * [new branch] gh/mikaylagawarecki/318/base -> origin/gh/mikaylagawarecki/318/base 2025-08-14T21:49:38.7724648Z * [new branch] gh/mikaylagawarecki/318/head -> origin/gh/mikaylagawarecki/318/head 2025-08-14T21:49:38.7725244Z * [new branch] gh/mikaylagawarecki/318/orig -> origin/gh/mikaylagawarecki/318/orig 2025-08-14T21:49:38.7725838Z * [new branch] gh/mikaylagawarecki/319/base -> origin/gh/mikaylagawarecki/319/base 2025-08-14T21:49:38.7726423Z * [new branch] gh/mikaylagawarecki/319/head -> origin/gh/mikaylagawarecki/319/head 2025-08-14T21:49:38.7727019Z * [new branch] gh/mikaylagawarecki/319/orig -> origin/gh/mikaylagawarecki/319/orig 2025-08-14T21:49:38.7727606Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-08-14T21:49:38.7728212Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-08-14T21:49:38.7728814Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-08-14T21:49:38.7729405Z * [new branch] gh/mikaylagawarecki/321/base -> origin/gh/mikaylagawarecki/321/base 2025-08-14T21:49:38.7730006Z * [new branch] gh/mikaylagawarecki/321/head -> origin/gh/mikaylagawarecki/321/head 2025-08-14T21:49:38.7730601Z * [new branch] gh/mikaylagawarecki/321/orig -> origin/gh/mikaylagawarecki/321/orig 2025-08-14T21:49:38.7731209Z * [new branch] gh/mikaylagawarecki/322/base -> origin/gh/mikaylagawarecki/322/base 2025-08-14T21:49:38.7731814Z * [new branch] gh/mikaylagawarecki/322/head -> origin/gh/mikaylagawarecki/322/head 2025-08-14T21:49:38.7732412Z * [new branch] gh/mikaylagawarecki/322/orig -> origin/gh/mikaylagawarecki/322/orig 2025-08-14T21:49:38.7733103Z * [new branch] gh/mikaylagawarecki/323/base -> origin/gh/mikaylagawarecki/323/base 2025-08-14T21:49:38.7733699Z * [new branch] gh/mikaylagawarecki/323/head -> origin/gh/mikaylagawarecki/323/head 2025-08-14T21:49:38.7734314Z * [new branch] gh/mikaylagawarecki/323/orig -> origin/gh/mikaylagawarecki/323/orig 2025-08-14T21:49:38.7734932Z * [new branch] gh/mikaylagawarecki/324/base -> origin/gh/mikaylagawarecki/324/base 2025-08-14T21:49:38.7735592Z * [new branch] gh/mikaylagawarecki/324/head -> origin/gh/mikaylagawarecki/324/head 2025-08-14T21:49:38.7736242Z * [new branch] gh/mikaylagawarecki/324/orig -> origin/gh/mikaylagawarecki/324/orig 2025-08-14T21:49:38.7736884Z * [new branch] gh/mikaylagawarecki/325/base -> origin/gh/mikaylagawarecki/325/base 2025-08-14T21:49:38.7737485Z * [new branch] gh/mikaylagawarecki/325/head -> origin/gh/mikaylagawarecki/325/head 2025-08-14T21:49:38.7738096Z * [new branch] gh/mikaylagawarecki/325/orig -> origin/gh/mikaylagawarecki/325/orig 2025-08-14T21:49:38.7738695Z * [new branch] gh/mikaylagawarecki/326/base -> origin/gh/mikaylagawarecki/326/base 2025-08-14T21:49:38.7739306Z * [new branch] gh/mikaylagawarecki/326/head -> origin/gh/mikaylagawarecki/326/head 2025-08-14T21:49:38.7739903Z * [new branch] gh/mikaylagawarecki/326/orig -> origin/gh/mikaylagawarecki/326/orig 2025-08-14T21:49:38.7740512Z * [new branch] gh/mikaylagawarecki/327/base -> origin/gh/mikaylagawarecki/327/base 2025-08-14T21:49:38.7741110Z * [new branch] gh/mikaylagawarecki/327/head -> origin/gh/mikaylagawarecki/327/head 2025-08-14T21:49:38.7741697Z * [new branch] gh/mikaylagawarecki/327/orig -> origin/gh/mikaylagawarecki/327/orig 2025-08-14T21:49:38.7742301Z * [new branch] gh/mikaylagawarecki/328/base -> origin/gh/mikaylagawarecki/328/base 2025-08-14T21:49:38.7742975Z * [new branch] gh/mikaylagawarecki/328/head -> origin/gh/mikaylagawarecki/328/head 2025-08-14T21:49:38.8165216Z * [new branch] gh/mikaylagawarecki/328/orig -> origin/gh/mikaylagawarecki/328/orig 2025-08-14T21:49:38.8165853Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-08-14T21:49:38.8166468Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-08-14T21:49:38.8167079Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-08-14T21:49:38.8167671Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-08-14T21:49:38.8168364Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-08-14T21:49:38.8168960Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-08-14T21:49:38.8169562Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-08-14T21:49:38.8170173Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-08-14T21:49:38.8170764Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-08-14T21:49:38.8171363Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-08-14T21:49:38.8171969Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-08-14T21:49:38.8172555Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-08-14T21:49:38.8173152Z * [new branch] gh/mikaylagawarecki/333/base -> origin/gh/mikaylagawarecki/333/base 2025-08-14T21:49:38.8173785Z * [new branch] gh/mikaylagawarecki/333/head -> origin/gh/mikaylagawarecki/333/head 2025-08-14T21:49:38.8174458Z * [new branch] gh/mikaylagawarecki/333/orig -> origin/gh/mikaylagawarecki/333/orig 2025-08-14T21:49:38.8175821Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-08-14T21:49:38.8176412Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-08-14T21:49:38.8177006Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-08-14T21:49:38.8177548Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-08-14T21:49:38.8178023Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-08-14T21:49:38.8178494Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-08-14T21:49:38.8178969Z * [new branch] gh/mlazos/10/base -> origin/gh/mlazos/10/base 2025-08-14T21:49:38.8179448Z * [new branch] gh/mlazos/10/head -> origin/gh/mlazos/10/head 2025-08-14T21:49:38.8180007Z * [new branch] gh/mlazos/10/orig -> origin/gh/mlazos/10/orig 2025-08-14T21:49:38.8180518Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-08-14T21:49:38.8180993Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-08-14T21:49:38.8181458Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-08-14T21:49:38.8181930Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-08-14T21:49:38.8182402Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-08-14T21:49:38.8182861Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-08-14T21:49:38.8183333Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-08-14T21:49:38.8183798Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-08-14T21:49:38.8184376Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-08-14T21:49:38.8184843Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-08-14T21:49:38.8185326Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-08-14T21:49:38.8185849Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-08-14T21:49:38.8186359Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-08-14T21:49:38.8186819Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-08-14T21:49:38.8187281Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-08-14T21:49:38.8187745Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-08-14T21:49:38.8188209Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-08-14T21:49:38.8188676Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-08-14T21:49:38.8189135Z * [new branch] gh/mlazos/5/base -> origin/gh/mlazos/5/base 2025-08-14T21:49:38.8189588Z * [new branch] gh/mlazos/5/head -> origin/gh/mlazos/5/head 2025-08-14T21:49:38.8639070Z * [new branch] gh/mlazos/5/orig -> origin/gh/mlazos/5/orig 2025-08-14T21:49:38.8639587Z * [new branch] gh/mlazos/6/base -> origin/gh/mlazos/6/base 2025-08-14T21:49:38.8640060Z * [new branch] gh/mlazos/6/head -> origin/gh/mlazos/6/head 2025-08-14T21:49:38.8640530Z * [new branch] gh/mlazos/6/orig -> origin/gh/mlazos/6/orig 2025-08-14T21:49:38.8640987Z * [new branch] gh/mlazos/7/base -> origin/gh/mlazos/7/base 2025-08-14T21:49:38.8641456Z * [new branch] gh/mlazos/7/head -> origin/gh/mlazos/7/head 2025-08-14T21:49:38.8642102Z * [new branch] gh/mlazos/7/orig -> origin/gh/mlazos/7/orig 2025-08-14T21:49:38.8642568Z * [new branch] gh/mlazos/8/base -> origin/gh/mlazos/8/base 2025-08-14T21:49:38.8643033Z * [new branch] gh/mlazos/8/head -> origin/gh/mlazos/8/head 2025-08-14T21:49:38.8643486Z * [new branch] gh/mlazos/8/orig -> origin/gh/mlazos/8/orig 2025-08-14T21:49:38.8643953Z * [new branch] gh/mlazos/9/base -> origin/gh/mlazos/9/base 2025-08-14T21:49:38.8644421Z * [new branch] gh/mlazos/9/head -> origin/gh/mlazos/9/head 2025-08-14T21:49:38.8644883Z * [new branch] gh/mlazos/9/orig -> origin/gh/mlazos/9/orig 2025-08-14T21:49:38.8645365Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-08-14T21:49:38.8645839Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-08-14T21:49:38.8646348Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-08-14T21:49:38.8647578Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-08-14T21:49:38.8648493Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-08-14T21:49:38.8649012Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-08-14T21:49:38.8649508Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-08-14T21:49:38.8650017Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-08-14T21:49:38.8650506Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-08-14T21:49:38.8651006Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-08-14T21:49:38.8651505Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-08-14T21:49:38.8652656Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-08-14T21:49:38.8653182Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-08-14T21:49:38.8653676Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-08-14T21:49:38.8654176Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-08-14T21:49:38.8654657Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-08-14T21:49:38.8655123Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-08-14T21:49:38.8655596Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-08-14T21:49:38.8656062Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-08-14T21:49:38.8656541Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-08-14T21:49:38.8657018Z * [new branch] gh/oulgen/45/base -> origin/gh/oulgen/45/base 2025-08-14T21:49:38.8657481Z * [new branch] gh/oulgen/45/head -> origin/gh/oulgen/45/head 2025-08-14T21:49:38.8657952Z * [new branch] gh/oulgen/45/orig -> origin/gh/oulgen/45/orig 2025-08-14T21:49:38.8658413Z * [new branch] gh/oulgen/46/base -> origin/gh/oulgen/46/base 2025-08-14T21:49:38.8658882Z * [new branch] gh/oulgen/46/head -> origin/gh/oulgen/46/head 2025-08-14T21:49:38.8659350Z * [new branch] gh/oulgen/46/orig -> origin/gh/oulgen/46/orig 2025-08-14T21:49:38.8659831Z * [new branch] gh/oulgen/47/base -> origin/gh/oulgen/47/base 2025-08-14T21:49:38.8660297Z * [new branch] gh/oulgen/47/head -> origin/gh/oulgen/47/head 2025-08-14T21:49:38.8660857Z * [new branch] gh/oulgen/47/orig -> origin/gh/oulgen/47/orig 2025-08-14T21:49:38.8661340Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-08-14T21:49:38.8661811Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-08-14T21:49:38.8662289Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-08-14T21:49:38.8662766Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-08-14T21:49:38.8663229Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-08-14T21:49:38.8663690Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-08-14T21:49:38.9159491Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-08-14T21:49:38.9160010Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-08-14T21:49:38.9160512Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-08-14T21:49:38.9160984Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-08-14T21:49:38.9161457Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-08-14T21:49:38.9161943Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-08-14T21:49:38.9162526Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-08-14T21:49:38.9164179Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-08-14T21:49:38.9164689Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-08-14T21:49:38.9165150Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-08-14T21:49:38.9165602Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-08-14T21:49:38.9166212Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-08-14T21:49:38.9166665Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-08-14T21:49:38.9167106Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-08-14T21:49:38.9167559Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-08-14T21:49:38.9168005Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-08-14T21:49:38.9169462Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-08-14T21:49:38.9169932Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-08-14T21:49:38.9170370Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-08-14T21:49:38.9170824Z * [new branch] gh/rec/158/base -> origin/gh/rec/158/base 2025-08-14T21:49:38.9171282Z * [new branch] gh/rec/158/head -> origin/gh/rec/158/head 2025-08-14T21:49:38.9171738Z * [new branch] gh/rec/158/orig -> origin/gh/rec/158/orig 2025-08-14T21:49:38.9172172Z * [new branch] gh/rec/159/base -> origin/gh/rec/159/base 2025-08-14T21:49:38.9172621Z * [new branch] gh/rec/159/head -> origin/gh/rec/159/head 2025-08-14T21:49:38.9173063Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-08-14T21:49:38.9173501Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-08-14T21:49:38.9173945Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-08-14T21:49:38.9175374Z * [new branch] gh/rec/161/base -> origin/gh/rec/161/base 2025-08-14T21:49:38.9175831Z * [new branch] gh/rec/161/head -> origin/gh/rec/161/head 2025-08-14T21:49:38.9176414Z * [new branch] gh/rec/161/orig -> origin/gh/rec/161/orig 2025-08-14T21:49:38.9176857Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-08-14T21:49:38.9177312Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-08-14T21:49:38.9177763Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-08-14T21:49:38.9178224Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-08-14T21:49:38.9178669Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-08-14T21:49:38.9179107Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-08-14T21:49:38.9179552Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-08-14T21:49:38.9180981Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-08-14T21:49:38.9181444Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-08-14T21:49:38.9181959Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-08-14T21:49:38.9182525Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-08-14T21:49:38.9183082Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-08-14T21:49:38.9183620Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-08-14T21:49:38.9184173Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-08-14T21:49:38.9184711Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-08-14T21:49:38.9185262Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-08-14T21:49:38.9186793Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-08-14T21:49:38.9187459Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-08-14T21:49:38.9641552Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-08-14T21:49:38.9642189Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-08-14T21:49:38.9642739Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-08-14T21:49:38.9643343Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-08-14T21:49:38.9643837Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-08-14T21:49:38.9644309Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-08-14T21:49:38.9644790Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-08-14T21:49:38.9645283Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-08-14T21:49:38.9645756Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-08-14T21:49:38.9646218Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-08-14T21:49:38.9646691Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-08-14T21:49:38.9647159Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-08-14T21:49:38.9647621Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-08-14T21:49:38.9648088Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-08-14T21:49:38.9648556Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-08-14T21:49:38.9649074Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-08-14T21:49:38.9649755Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-08-14T21:49:38.9650217Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-08-14T21:49:38.9650694Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-08-14T21:49:38.9651153Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-08-14T21:49:38.9651620Z * [new branch] gh/rtimpe/5/base -> origin/gh/rtimpe/5/base 2025-08-14T21:49:38.9652090Z * [new branch] gh/rtimpe/5/head -> origin/gh/rtimpe/5/head 2025-08-14T21:49:38.9652547Z * [new branch] gh/rtimpe/5/orig -> origin/gh/rtimpe/5/orig 2025-08-14T21:49:38.9653008Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-08-14T21:49:38.9653466Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-08-14T21:49:38.9653937Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-08-14T21:49:38.9654395Z * [new branch] gh/rtimpe/7/base -> origin/gh/rtimpe/7/base 2025-08-14T21:49:38.9654904Z * [new branch] gh/rtimpe/7/head -> origin/gh/rtimpe/7/head 2025-08-14T21:49:38.9655414Z * [new branch] gh/rtimpe/7/orig -> origin/gh/rtimpe/7/orig 2025-08-14T21:49:38.9655872Z * [new branch] gh/rtimpe/8/base -> origin/gh/rtimpe/8/base 2025-08-14T21:49:38.9656339Z * [new branch] gh/rtimpe/8/head -> origin/gh/rtimpe/8/head 2025-08-14T21:49:38.9656792Z * [new branch] gh/rtimpe/8/orig -> origin/gh/rtimpe/8/orig 2025-08-14T21:49:38.9657262Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-08-14T21:49:38.9657726Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-08-14T21:49:38.9658285Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-08-14T21:49:38.9658800Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-08-14T21:49:38.9659342Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-08-14T21:49:38.9659889Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-08-14T21:49:38.9660435Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-08-14T21:49:38.9661005Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-08-14T21:49:38.9661586Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-08-14T21:49:38.9662107Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-08-14T21:49:38.9662634Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-08-14T21:49:38.9663176Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-08-14T21:49:38.9663696Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-08-14T21:49:38.9664222Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-08-14T21:49:38.9664739Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-08-14T21:49:39.0122064Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-08-14T21:49:39.0122695Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-08-14T21:49:39.0123233Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-08-14T21:49:39.0123779Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-08-14T21:49:39.0124457Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-08-14T21:49:39.0125010Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-08-14T21:49:39.0125516Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-08-14T21:49:39.0125984Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-08-14T21:49:39.0126453Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-08-14T21:49:39.0126939Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-08-14T21:49:39.0127457Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-08-14T21:49:39.0127961Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-08-14T21:49:39.0128516Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-08-14T21:49:39.0129082Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-08-14T21:49:39.0129580Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-08-14T21:49:39.0130093Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-08-14T21:49:39.0130600Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-08-14T21:49:39.0131097Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-08-14T21:49:39.0131598Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-08-14T21:49:39.0132092Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-08-14T21:49:39.0132598Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-08-14T21:49:39.0133196Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-08-14T21:49:39.0133713Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-08-14T21:49:39.0134274Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-08-14T21:49:39.0134821Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-08-14T21:49:39.0135332Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-08-14T21:49:39.0135835Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-08-14T21:49:39.0136343Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-08-14T21:49:39.0136855Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-08-14T21:49:39.0137357Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-08-14T21:49:39.0137871Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-08-14T21:49:39.0138375Z * [new branch] gh/seemethere/39/base -> origin/gh/seemethere/39/base 2025-08-14T21:49:39.0138885Z * [new branch] gh/seemethere/39/head -> origin/gh/seemethere/39/head 2025-08-14T21:49:39.0139387Z * [new branch] gh/seemethere/39/orig -> origin/gh/seemethere/39/orig 2025-08-14T21:49:39.0139886Z * [new branch] gh/seemethere/40/base -> origin/gh/seemethere/40/base 2025-08-14T21:49:39.0140436Z * [new branch] gh/seemethere/40/head -> origin/gh/seemethere/40/head 2025-08-14T21:49:39.0140979Z * [new branch] gh/seemethere/40/orig -> origin/gh/seemethere/40/orig 2025-08-14T21:49:39.0141491Z * [new branch] gh/seemethere/41/base -> origin/gh/seemethere/41/base 2025-08-14T21:49:39.0142001Z * [new branch] gh/seemethere/41/head -> origin/gh/seemethere/41/head 2025-08-14T21:49:39.0142597Z * [new branch] gh/seemethere/41/orig -> origin/gh/seemethere/41/orig 2025-08-14T21:49:39.0143123Z * [new branch] gh/seemethere/42/base -> origin/gh/seemethere/42/base 2025-08-14T21:49:39.0143626Z * [new branch] gh/seemethere/42/head -> origin/gh/seemethere/42/head 2025-08-14T21:49:39.0144148Z * [new branch] gh/seemethere/42/orig -> origin/gh/seemethere/42/orig 2025-08-14T21:49:39.0144655Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-08-14T21:49:39.0145163Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-08-14T21:49:39.0145679Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-08-14T21:49:39.0550899Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-08-14T21:49:39.0551510Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-08-14T21:49:39.0552031Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-08-14T21:49:39.0552544Z * [new branch] gh/seemethere/45/base -> origin/gh/seemethere/45/base 2025-08-14T21:49:39.0553056Z * [new branch] gh/seemethere/45/head -> origin/gh/seemethere/45/head 2025-08-14T21:49:39.0553557Z * [new branch] gh/seemethere/45/orig -> origin/gh/seemethere/45/orig 2025-08-14T21:49:39.0554149Z * [new branch] gh/seemethere/46/base -> origin/gh/seemethere/46/base 2025-08-14T21:49:39.0554653Z * [new branch] gh/seemethere/46/head -> origin/gh/seemethere/46/head 2025-08-14T21:49:39.0555208Z * [new branch] gh/seemethere/46/orig -> origin/gh/seemethere/46/orig 2025-08-14T21:49:39.0555769Z * [new branch] gh/seemethere/47/base -> origin/gh/seemethere/47/base 2025-08-14T21:49:39.0556408Z * [new branch] gh/seemethere/47/head -> origin/gh/seemethere/47/head 2025-08-14T21:49:39.0556942Z * [new branch] gh/seemethere/47/orig -> origin/gh/seemethere/47/orig 2025-08-14T21:49:39.0557459Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-08-14T21:49:39.0557968Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-08-14T21:49:39.0558484Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-08-14T21:49:39.0558994Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-08-14T21:49:39.0559516Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-08-14T21:49:39.0560017Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-08-14T21:49:39.0560542Z * [new branch] gh/seemethere/50/base -> origin/gh/seemethere/50/base 2025-08-14T21:49:39.0561103Z * [new branch] gh/seemethere/50/head -> origin/gh/seemethere/50/head 2025-08-14T21:49:39.0561607Z * [new branch] gh/seemethere/50/orig -> origin/gh/seemethere/50/orig 2025-08-14T21:49:39.0562162Z * [new branch] gh/seemethere/51/base -> origin/gh/seemethere/51/base 2025-08-14T21:49:39.0562664Z * [new branch] gh/seemethere/51/head -> origin/gh/seemethere/51/head 2025-08-14T21:49:39.0563171Z * [new branch] gh/seemethere/51/orig -> origin/gh/seemethere/51/orig 2025-08-14T21:49:39.0563685Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-08-14T21:49:39.0564188Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-08-14T21:49:39.0564694Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-08-14T21:49:39.0565292Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-08-14T21:49:39.0565820Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-08-14T21:49:39.0566321Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-08-14T21:49:39.0566838Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-08-14T21:49:39.0567401Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-08-14T21:49:39.0567943Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-08-14T21:49:39.0568456Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-08-14T21:49:39.0568955Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-08-14T21:49:39.0569463Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-08-14T21:49:39.0569986Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-08-14T21:49:39.0570484Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-08-14T21:49:39.0570985Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-08-14T21:49:39.0571483Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-08-14T21:49:39.0571988Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-08-14T21:49:39.0572496Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-08-14T21:49:39.0572999Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-08-14T21:49:39.0573607Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-08-14T21:49:39.0574195Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-08-14T21:49:39.0574713Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-08-14T21:49:39.0982033Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-08-14T21:49:39.0982611Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-08-14T21:49:39.0983133Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-08-14T21:49:39.0983651Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-08-14T21:49:39.0984183Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-08-14T21:49:39.0984708Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-08-14T21:49:39.0985224Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-08-14T21:49:39.0985769Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-08-14T21:49:39.0986282Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-08-14T21:49:39.0986801Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-08-14T21:49:39.0987374Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-08-14T21:49:39.0987943Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-08-14T21:49:39.0988472Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-08-14T21:49:39.0988984Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-08-14T21:49:39.0989506Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-08-14T21:49:39.0990156Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-08-14T21:49:39.0990672Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-08-14T21:49:39.0991199Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-08-14T21:49:39.0991714Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-08-14T21:49:39.0992231Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-08-14T21:49:39.0992739Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-08-14T21:49:39.0993278Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-08-14T21:49:39.0993895Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-08-14T21:49:39.0994380Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-08-14T21:49:39.0994893Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-08-14T21:49:39.0995381Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-08-14T21:49:39.0995902Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-08-14T21:49:39.0996431Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-08-14T21:49:39.0996925Z * [new branch] gh/skarjala/11/base -> origin/gh/skarjala/11/base 2025-08-14T21:49:39.0997416Z * [new branch] gh/skarjala/11/head -> origin/gh/skarjala/11/head 2025-08-14T21:49:39.0997901Z * [new branch] gh/skarjala/11/orig -> origin/gh/skarjala/11/orig 2025-08-14T21:49:39.0998391Z * [new branch] gh/skarjala/13/base -> origin/gh/skarjala/13/base 2025-08-14T21:49:39.0998877Z * [new branch] gh/skarjala/13/head -> origin/gh/skarjala/13/head 2025-08-14T21:49:39.0999502Z * [new branch] gh/skarjala/13/orig -> origin/gh/skarjala/13/orig 2025-08-14T21:49:39.1000048Z * [new branch] gh/skarjala/14/base -> origin/gh/skarjala/14/base 2025-08-14T21:49:39.1000539Z * [new branch] gh/skarjala/14/head -> origin/gh/skarjala/14/head 2025-08-14T21:49:39.1001040Z * [new branch] gh/skarjala/14/orig -> origin/gh/skarjala/14/orig 2025-08-14T21:49:39.1001534Z * [new branch] gh/skarjala/15/base -> origin/gh/skarjala/15/base 2025-08-14T21:49:39.1002015Z * [new branch] gh/skarjala/15/head -> origin/gh/skarjala/15/head 2025-08-14T21:49:39.1002510Z * [new branch] gh/skarjala/15/orig -> origin/gh/skarjala/15/orig 2025-08-14T21:49:39.1002986Z * [new branch] gh/skarjala/16/base -> origin/gh/skarjala/16/base 2025-08-14T21:49:39.1003477Z * [new branch] gh/skarjala/16/head -> origin/gh/skarjala/16/head 2025-08-14T21:49:39.1003957Z * [new branch] gh/skarjala/16/orig -> origin/gh/skarjala/16/orig 2025-08-14T21:49:39.1004446Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-08-14T21:49:39.1004931Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-08-14T21:49:39.1005470Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-08-14T21:49:39.1006023Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-08-14T21:49:39.1436089Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-08-14T21:49:39.1436646Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-08-14T21:49:39.1437144Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-08-14T21:49:39.1437801Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-08-14T21:49:39.1438311Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-08-14T21:49:39.1438823Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-08-14T21:49:39.1439334Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-08-14T21:49:39.1439845Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-08-14T21:49:39.1440345Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-08-14T21:49:39.1440850Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-08-14T21:49:39.1441353Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-08-14T21:49:39.1441850Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-08-14T21:49:39.1442363Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-08-14T21:49:39.1442862Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-08-14T21:49:39.1443372Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-08-14T21:49:39.1443878Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-08-14T21:49:39.1444374Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-08-14T21:49:39.1444879Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-08-14T21:49:39.1445379Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-08-14T21:49:39.1445889Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-08-14T21:49:39.1446476Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-08-14T21:49:39.1446992Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-08-14T21:49:39.1447508Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-08-14T21:49:39.1448012Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-08-14T21:49:39.1448534Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-08-14T21:49:39.1449035Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-08-14T21:49:39.1449550Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-08-14T21:49:39.1450064Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-08-14T21:49:39.1450564Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-08-14T21:49:39.1451087Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-08-14T21:49:39.1451588Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-08-14T21:49:39.1452104Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-08-14T21:49:39.1452622Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-08-14T21:49:39.1453122Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-08-14T21:49:39.1453624Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-08-14T21:49:39.1454124Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-08-14T21:49:39.1454628Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-08-14T21:49:39.1455126Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-08-14T21:49:39.1455719Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-08-14T21:49:39.1456238Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-08-14T21:49:39.1456740Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-08-14T21:49:39.1457255Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-08-14T21:49:39.1457754Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-08-14T21:49:39.1458269Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-08-14T21:49:39.1458778Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-08-14T21:49:39.1459269Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-08-14T21:49:39.4284888Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-08-14T21:49:39.4285516Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-08-14T21:49:39.4286073Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-08-14T21:49:39.4286653Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-08-14T21:49:39.4287241Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-08-14T21:49:39.4287794Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-08-14T21:49:39.4288340Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-08-14T21:49:39.4288890Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-08-14T21:49:39.4289439Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-08-14T21:49:39.4290123Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-08-14T21:49:39.4290689Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-08-14T21:49:39.4291270Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-08-14T21:49:39.4291818Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-08-14T21:49:39.4292375Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-08-14T21:49:39.4292918Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-08-14T21:49:39.4293479Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-08-14T21:49:39.4294021Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-08-14T21:49:39.4294577Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-08-14T21:49:39.4295129Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-08-14T21:49:39.4295676Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-08-14T21:49:39.4296229Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-08-14T21:49:39.4296809Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-08-14T21:49:39.4297352Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-08-14T21:49:39.4297904Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-08-14T21:49:39.4298437Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-08-14T21:49:39.4298989Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-08-14T21:49:39.4299624Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-08-14T21:49:39.4300168Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-08-14T21:49:39.4300716Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-08-14T21:49:39.4301254Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-08-14T21:49:39.4301831Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-08-14T21:49:39.4302372Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-08-14T21:49:39.4302925Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-08-14T21:49:39.4303470Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-08-14T21:49:39.4304011Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-08-14T21:49:39.4304564Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-08-14T21:49:39.4305097Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-08-14T21:49:39.4305639Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-08-14T21:49:39.4306171Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-08-14T21:49:39.4306712Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-08-14T21:49:39.4307267Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-08-14T21:49:39.4307805Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-08-14T21:49:39.4308346Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-08-14T21:49:39.4308923Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-08-14T21:49:39.4309421Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-08-14T21:49:39.4309930Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-08-14T21:49:39.4746559Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-08-14T21:49:39.4747162Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-08-14T21:49:39.4747709Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-08-14T21:49:39.4748224Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-08-14T21:49:39.4748729Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-08-14T21:49:39.4749211Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-08-14T21:49:39.4749722Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-08-14T21:49:39.4750209Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-08-14T21:49:39.4750709Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-08-14T21:49:39.4751202Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-08-14T21:49:39.4751690Z * [new branch] gh/teja-rao/3/base -> origin/gh/teja-rao/3/base 2025-08-14T21:49:39.4752196Z * [new branch] gh/teja-rao/3/head -> origin/gh/teja-rao/3/head 2025-08-14T21:49:39.4752730Z * [new branch] gh/teja-rao/3/orig -> origin/gh/teja-rao/3/orig 2025-08-14T21:49:39.4753256Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-08-14T21:49:39.4753787Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-08-14T21:49:39.4754405Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-08-14T21:49:39.4754912Z * [new branch] gh/titaiwangms/1/base -> origin/gh/titaiwangms/1/base 2025-08-14T21:49:39.4755429Z * [new branch] gh/titaiwangms/1/head -> origin/gh/titaiwangms/1/head 2025-08-14T21:49:39.4755949Z * [new branch] gh/titaiwangms/1/orig -> origin/gh/titaiwangms/1/orig 2025-08-14T21:49:39.4756464Z * [new branch] gh/titaiwangms/2/base -> origin/gh/titaiwangms/2/base 2025-08-14T21:49:39.4756969Z * [new branch] gh/titaiwangms/2/head -> origin/gh/titaiwangms/2/head 2025-08-14T21:49:39.4757483Z * [new branch] gh/titaiwangms/2/orig -> origin/gh/titaiwangms/2/orig 2025-08-14T21:49:39.4757990Z * [new branch] gh/titaiwangms/3/base -> origin/gh/titaiwangms/3/base 2025-08-14T21:49:39.4758510Z * [new branch] gh/titaiwangms/3/head -> origin/gh/titaiwangms/3/head 2025-08-14T21:49:39.4759064Z * [new branch] gh/titaiwangms/3/orig -> origin/gh/titaiwangms/3/orig 2025-08-14T21:49:39.4759622Z * [new branch] gh/titaiwangms/4/base -> origin/gh/titaiwangms/4/base 2025-08-14T21:49:39.4760145Z * [new branch] gh/titaiwangms/4/head -> origin/gh/titaiwangms/4/head 2025-08-14T21:49:39.4760650Z * [new branch] gh/titaiwangms/4/orig -> origin/gh/titaiwangms/4/orig 2025-08-14T21:49:39.4761164Z * [new branch] gh/titaiwangms/5/base -> origin/gh/titaiwangms/5/base 2025-08-14T21:49:39.4761669Z * [new branch] gh/titaiwangms/5/head -> origin/gh/titaiwangms/5/head 2025-08-14T21:49:39.4762176Z * [new branch] gh/titaiwangms/5/orig -> origin/gh/titaiwangms/5/orig 2025-08-14T21:49:39.4762691Z * [new branch] gh/titaiwangms/6/base -> origin/gh/titaiwangms/6/base 2025-08-14T21:49:39.4763290Z * [new branch] gh/titaiwangms/6/head -> origin/gh/titaiwangms/6/head 2025-08-14T21:49:39.4763818Z * [new branch] gh/titaiwangms/6/orig -> origin/gh/titaiwangms/6/orig 2025-08-14T21:49:39.4764326Z * [new branch] gh/titaiwangms/7/base -> origin/gh/titaiwangms/7/base 2025-08-14T21:49:39.4764893Z * [new branch] gh/titaiwangms/7/head -> origin/gh/titaiwangms/7/head 2025-08-14T21:49:39.4765441Z * [new branch] gh/titaiwangms/7/orig -> origin/gh/titaiwangms/7/orig 2025-08-14T21:49:39.4765960Z * [new branch] gh/titaiwangms/8/base -> origin/gh/titaiwangms/8/base 2025-08-14T21:49:39.4766471Z * [new branch] gh/titaiwangms/8/head -> origin/gh/titaiwangms/8/head 2025-08-14T21:49:39.4766978Z * [new branch] gh/titaiwangms/8/orig -> origin/gh/titaiwangms/8/orig 2025-08-14T21:49:39.4767511Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-08-14T21:49:39.4768069Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-08-14T21:49:39.4768628Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-08-14T21:49:39.4769131Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-08-14T21:49:39.4769572Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-08-14T21:49:39.4770011Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-08-14T21:49:39.4770442Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-08-14T21:49:39.5202049Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-08-14T21:49:39.5202564Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-08-14T21:49:39.5202998Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-08-14T21:49:39.5203579Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-08-14T21:49:39.5204031Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-08-14T21:49:39.5204466Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-08-14T21:49:39.5204909Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-08-14T21:49:39.5205340Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-08-14T21:49:39.5205777Z * [new branch] gh/v0i0/5/base -> origin/gh/v0i0/5/base 2025-08-14T21:49:39.5206252Z * [new branch] gh/v0i0/5/head -> origin/gh/v0i0/5/head 2025-08-14T21:49:39.5206734Z * [new branch] gh/v0i0/5/orig -> origin/gh/v0i0/5/orig 2025-08-14T21:49:39.5207168Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-08-14T21:49:39.5207605Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-08-14T21:49:39.5208040Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-08-14T21:49:39.5208479Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-08-14T21:49:39.5208936Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-08-14T21:49:39.5209395Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-08-14T21:49:39.5209870Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-08-14T21:49:39.5210378Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-08-14T21:49:39.5210866Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-08-14T21:49:39.5211370Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-08-14T21:49:39.5211986Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-08-14T21:49:39.5212565Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-08-14T21:49:39.5213071Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-08-14T21:49:39.5213564Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-08-14T21:49:39.5214063Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-08-14T21:49:39.5214555Z * [new branch] gh/wconstab/425/base -> origin/gh/wconstab/425/base 2025-08-14T21:49:39.5215057Z * [new branch] gh/wconstab/425/head -> origin/gh/wconstab/425/head 2025-08-14T21:49:39.5215564Z * [new branch] gh/wconstab/425/orig -> origin/gh/wconstab/425/orig 2025-08-14T21:49:39.5216063Z * [new branch] gh/wconstab/426/base -> origin/gh/wconstab/426/base 2025-08-14T21:49:39.5216558Z * [new branch] gh/wconstab/426/head -> origin/gh/wconstab/426/head 2025-08-14T21:49:39.5217043Z * [new branch] gh/wconstab/426/orig -> origin/gh/wconstab/426/orig 2025-08-14T21:49:39.5217545Z * [new branch] gh/wconstab/427/base -> origin/gh/wconstab/427/base 2025-08-14T21:49:39.5218085Z * [new branch] gh/wconstab/427/head -> origin/gh/wconstab/427/head 2025-08-14T21:49:39.5218623Z * [new branch] gh/wconstab/427/orig -> origin/gh/wconstab/427/orig 2025-08-14T21:49:39.5219116Z * [new branch] gh/wconstab/428/base -> origin/gh/wconstab/428/base 2025-08-14T21:49:39.5219599Z * [new branch] gh/wconstab/428/head -> origin/gh/wconstab/428/head 2025-08-14T21:49:39.5220096Z * [new branch] gh/wconstab/428/orig -> origin/gh/wconstab/428/orig 2025-08-14T21:49:39.5220684Z * [new branch] gh/wconstab/429/base -> origin/gh/wconstab/429/base 2025-08-14T21:49:39.5221171Z * [new branch] gh/wconstab/429/head -> origin/gh/wconstab/429/head 2025-08-14T21:49:39.5221665Z * [new branch] gh/wconstab/429/orig -> origin/gh/wconstab/429/orig 2025-08-14T21:49:39.5222168Z * [new branch] gh/wconstab/430/base -> origin/gh/wconstab/430/base 2025-08-14T21:49:39.5222675Z * [new branch] gh/wconstab/430/head -> origin/gh/wconstab/430/head 2025-08-14T21:49:39.5223181Z * [new branch] gh/wconstab/430/orig -> origin/gh/wconstab/430/orig 2025-08-14T21:49:39.5223718Z * [new branch] gh/wconstab/431/base -> origin/gh/wconstab/431/base 2025-08-14T21:49:39.5224257Z * [new branch] gh/wconstab/431/head -> origin/gh/wconstab/431/head 2025-08-14T21:49:39.5224746Z * [new branch] gh/wconstab/431/orig -> origin/gh/wconstab/431/orig 2025-08-14T21:49:39.5622314Z * [new branch] gh/wconstab/432/base -> origin/gh/wconstab/432/base 2025-08-14T21:49:39.5622876Z * [new branch] gh/wconstab/432/head -> origin/gh/wconstab/432/head 2025-08-14T21:49:39.5623385Z * [new branch] gh/wconstab/432/orig -> origin/gh/wconstab/432/orig 2025-08-14T21:49:39.5623901Z * [new branch] gh/wconstab/433/base -> origin/gh/wconstab/433/base 2025-08-14T21:49:39.5624392Z * [new branch] gh/wconstab/433/head -> origin/gh/wconstab/433/head 2025-08-14T21:49:39.5624952Z * [new branch] gh/wconstab/433/orig -> origin/gh/wconstab/433/orig 2025-08-14T21:49:39.5625494Z * [new branch] gh/wconstab/434/base -> origin/gh/wconstab/434/base 2025-08-14T21:49:39.5625991Z * [new branch] gh/wconstab/434/head -> origin/gh/wconstab/434/head 2025-08-14T21:49:39.5626628Z * [new branch] gh/wconstab/434/orig -> origin/gh/wconstab/434/orig 2025-08-14T21:49:39.5627133Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-08-14T21:49:39.5627633Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-08-14T21:49:39.5628128Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-08-14T21:49:39.5628630Z * [new branch] gh/wconstab/436/base -> origin/gh/wconstab/436/base 2025-08-14T21:49:39.5629134Z * [new branch] gh/wconstab/436/head -> origin/gh/wconstab/436/head 2025-08-14T21:49:39.5629635Z * [new branch] gh/wconstab/436/orig -> origin/gh/wconstab/436/orig 2025-08-14T21:49:39.5630134Z * [new branch] gh/wconstab/437/base -> origin/gh/wconstab/437/base 2025-08-14T21:49:39.5630688Z * [new branch] gh/wconstab/437/head -> origin/gh/wconstab/437/head 2025-08-14T21:49:39.5631248Z * [new branch] gh/wconstab/437/orig -> origin/gh/wconstab/437/orig 2025-08-14T21:49:39.5631743Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-08-14T21:49:39.5632299Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-08-14T21:49:39.5632804Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-08-14T21:49:39.5633300Z * [new branch] gh/wconstab/439/base -> origin/gh/wconstab/439/base 2025-08-14T21:49:39.5633803Z * [new branch] gh/wconstab/439/head -> origin/gh/wconstab/439/head 2025-08-14T21:49:39.5634305Z * [new branch] gh/wconstab/439/orig -> origin/gh/wconstab/439/orig 2025-08-14T21:49:39.5634800Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-08-14T21:49:39.5635296Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-08-14T21:49:39.5635880Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-08-14T21:49:39.5636460Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-08-14T21:49:39.5637018Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-08-14T21:49:39.5637513Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-08-14T21:49:39.5638029Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-08-14T21:49:39.5638518Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-08-14T21:49:39.5639010Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-08-14T21:49:39.5639512Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-08-14T21:49:39.5640015Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-08-14T21:49:39.5640521Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-08-14T21:49:39.5641015Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-08-14T21:49:39.5641521Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-08-14T21:49:39.5642062Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-08-14T21:49:39.5642614Z * [new branch] gh/weifengpy/31/base -> origin/gh/weifengpy/31/base 2025-08-14T21:49:39.5643111Z * [new branch] gh/weifengpy/31/head -> origin/gh/weifengpy/31/head 2025-08-14T21:49:39.5643604Z * [new branch] gh/weifengpy/31/orig -> origin/gh/weifengpy/31/orig 2025-08-14T21:49:39.5644107Z * [new branch] gh/weifengpy/32/base -> origin/gh/weifengpy/32/base 2025-08-14T21:49:39.5644699Z * [new branch] gh/weifengpy/32/head -> origin/gh/weifengpy/32/head 2025-08-14T21:49:39.5645211Z * [new branch] gh/weifengpy/32/orig -> origin/gh/weifengpy/32/orig 2025-08-14T21:49:39.5645725Z * [new branch] gh/weifengpy/33/base -> origin/gh/weifengpy/33/base 2025-08-14T21:49:39.5646227Z * [new branch] gh/weifengpy/33/head -> origin/gh/weifengpy/33/head 2025-08-14T21:49:39.6048468Z * [new branch] gh/weifengpy/33/orig -> origin/gh/weifengpy/33/orig 2025-08-14T21:49:39.6049067Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-08-14T21:49:39.6049607Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-08-14T21:49:39.6050191Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-08-14T21:49:39.6050769Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-08-14T21:49:39.6051327Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-08-14T21:49:39.6051859Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-08-14T21:49:39.6052389Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-08-14T21:49:39.6052919Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-08-14T21:49:39.6053444Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-08-14T21:49:39.6053975Z * [new branch] gh/williamwen42/252/base -> origin/gh/williamwen42/252/base 2025-08-14T21:49:39.6054509Z * [new branch] gh/williamwen42/252/head -> origin/gh/williamwen42/252/head 2025-08-14T21:49:39.6055036Z * [new branch] gh/williamwen42/252/orig -> origin/gh/williamwen42/252/orig 2025-08-14T21:49:39.6056547Z * [new branch] gh/williamwen42/256/base -> origin/gh/williamwen42/256/base 2025-08-14T21:49:39.6057090Z * [new branch] gh/williamwen42/256/head -> origin/gh/williamwen42/256/head 2025-08-14T21:49:39.6057622Z * [new branch] gh/williamwen42/256/orig -> origin/gh/williamwen42/256/orig 2025-08-14T21:49:39.6058153Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-08-14T21:49:39.6058692Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-08-14T21:49:39.6059228Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-08-14T21:49:39.6059754Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-08-14T21:49:39.6060294Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-08-14T21:49:39.6060829Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-08-14T21:49:39.6061371Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-08-14T21:49:39.6061954Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-08-14T21:49:39.6062528Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-08-14T21:49:39.6063067Z * [new branch] gh/williamwen42/262/base -> origin/gh/williamwen42/262/base 2025-08-14T21:49:39.6063592Z * [new branch] gh/williamwen42/262/head -> origin/gh/williamwen42/262/head 2025-08-14T21:49:39.6064121Z * [new branch] gh/williamwen42/262/orig -> origin/gh/williamwen42/262/orig 2025-08-14T21:49:39.6064655Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-08-14T21:49:39.6065180Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-08-14T21:49:39.6065838Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-08-14T21:49:39.6066371Z * [new branch] gh/williamwen42/264/base -> origin/gh/williamwen42/264/base 2025-08-14T21:49:39.6066922Z * [new branch] gh/williamwen42/264/head -> origin/gh/williamwen42/264/head 2025-08-14T21:49:39.6067467Z * [new branch] gh/williamwen42/264/orig -> origin/gh/williamwen42/264/orig 2025-08-14T21:49:39.6068080Z * [new branch] gh/williamwen42/265/base -> origin/gh/williamwen42/265/base 2025-08-14T21:49:39.6068621Z * [new branch] gh/williamwen42/265/head -> origin/gh/williamwen42/265/head 2025-08-14T21:49:39.6069154Z * [new branch] gh/williamwen42/265/orig -> origin/gh/williamwen42/265/orig 2025-08-14T21:49:39.6069689Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-08-14T21:49:39.6070231Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-08-14T21:49:39.6070761Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-08-14T21:49:39.6071298Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-08-14T21:49:39.6071897Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-08-14T21:49:39.6072435Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-08-14T21:49:39.6072975Z * [new branch] gh/williamwen42/268/base -> origin/gh/williamwen42/268/base 2025-08-14T21:49:39.6073544Z * [new branch] gh/williamwen42/268/head -> origin/gh/williamwen42/268/head 2025-08-14T21:49:39.6510463Z * [new branch] gh/williamwen42/268/orig -> origin/gh/williamwen42/268/orig 2025-08-14T21:49:39.6511053Z * [new branch] gh/williamwen42/269/base -> origin/gh/williamwen42/269/base 2025-08-14T21:49:39.6512120Z * [new branch] gh/williamwen42/269/head -> origin/gh/williamwen42/269/head 2025-08-14T21:49:39.6512675Z * [new branch] gh/williamwen42/269/orig -> origin/gh/williamwen42/269/orig 2025-08-14T21:49:39.6513209Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-08-14T21:49:39.6513751Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-08-14T21:49:39.6514284Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-08-14T21:49:39.6514868Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-08-14T21:49:39.6515457Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-08-14T21:49:39.6515988Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-08-14T21:49:39.6516535Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-08-14T21:49:39.6517065Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-08-14T21:49:39.6517600Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-08-14T21:49:39.6518133Z * [new branch] gh/williamwen42/273/base -> origin/gh/williamwen42/273/base 2025-08-14T21:49:39.6518660Z * [new branch] gh/williamwen42/273/head -> origin/gh/williamwen42/273/head 2025-08-14T21:49:39.6519204Z * [new branch] gh/williamwen42/273/orig -> origin/gh/williamwen42/273/orig 2025-08-14T21:49:39.6519738Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-08-14T21:49:39.6520271Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-08-14T21:49:39.6521470Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-08-14T21:49:39.6522022Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-08-14T21:49:39.6522569Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-08-14T21:49:39.6523105Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-08-14T21:49:39.6523646Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-08-14T21:49:39.6524187Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-08-14T21:49:39.6524720Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-08-14T21:49:39.6525259Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-08-14T21:49:39.6525786Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-08-14T21:49:39.6526333Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-08-14T21:49:39.6526954Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-08-14T21:49:39.6527492Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-08-14T21:49:39.6528039Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-08-14T21:49:39.6528567Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-08-14T21:49:39.6529108Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-08-14T21:49:39.6529613Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-08-14T21:49:39.6530089Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-08-14T21:49:39.6530900Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-08-14T21:49:39.6531374Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-08-14T21:49:39.6531848Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-08-14T21:49:39.6532306Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-08-14T21:49:39.6532861Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-08-14T21:49:39.6533342Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-08-14T21:49:39.6533806Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-08-14T21:49:39.6534271Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-08-14T21:49:39.6534733Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-08-14T21:49:39.6535209Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-08-14T21:49:39.6959501Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-08-14T21:49:39.6960032Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-08-14T21:49:39.6960514Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-08-14T21:49:39.6960979Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-08-14T21:49:39.6961465Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-08-14T21:49:39.6961930Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-08-14T21:49:39.6962396Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-08-14T21:49:39.6962859Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-08-14T21:49:39.6963468Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-08-14T21:49:39.6963946Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-08-14T21:49:39.6964415Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-08-14T21:49:39.6964876Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-08-14T21:49:39.6965345Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-08-14T21:49:39.6965802Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-08-14T21:49:39.6966270Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-08-14T21:49:39.6966736Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-08-14T21:49:39.6967189Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-08-14T21:49:39.6967670Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-08-14T21:49:39.6968126Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-08-14T21:49:39.6968594Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-08-14T21:49:39.6969054Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-08-14T21:49:39.6969524Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-08-14T21:49:39.6969998Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-08-14T21:49:39.6970458Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-08-14T21:49:39.6970930Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-08-14T21:49:39.6971387Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-08-14T21:49:39.6972254Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-08-14T21:49:39.6972734Z * [new branch] gh/xmfan/268/base -> origin/gh/xmfan/268/base 2025-08-14T21:49:39.6973196Z * [new branch] gh/xmfan/268/head -> origin/gh/xmfan/268/head 2025-08-14T21:49:39.6973672Z * [new branch] gh/xmfan/268/orig -> origin/gh/xmfan/268/orig 2025-08-14T21:49:39.6974132Z * [new branch] gh/xmfan/269/base -> origin/gh/xmfan/269/base 2025-08-14T21:49:39.6974594Z * [new branch] gh/xmfan/269/head -> origin/gh/xmfan/269/head 2025-08-14T21:49:39.6975067Z * [new branch] gh/xmfan/269/orig -> origin/gh/xmfan/269/orig 2025-08-14T21:49:39.6975522Z * [new branch] gh/xmfan/270/base -> origin/gh/xmfan/270/base 2025-08-14T21:49:39.6975991Z * [new branch] gh/xmfan/270/head -> origin/gh/xmfan/270/head 2025-08-14T21:49:39.6976459Z * [new branch] gh/xmfan/270/orig -> origin/gh/xmfan/270/orig 2025-08-14T21:49:39.6976924Z * [new branch] gh/xmfan/271/base -> origin/gh/xmfan/271/base 2025-08-14T21:49:39.6977391Z * [new branch] gh/xmfan/271/head -> origin/gh/xmfan/271/head 2025-08-14T21:49:39.6977862Z * [new branch] gh/xmfan/271/orig -> origin/gh/xmfan/271/orig 2025-08-14T21:49:39.6978538Z * [new branch] gh/xmfan/272/base -> origin/gh/xmfan/272/base 2025-08-14T21:49:39.6980559Z * [new branch] gh/xmfan/272/head -> origin/gh/xmfan/272/head 2025-08-14T21:49:39.6981520Z * [new branch] gh/xmfan/272/orig -> origin/gh/xmfan/272/orig 2025-08-14T21:49:39.6982286Z * [new branch] gh/xmfan/273/base -> origin/gh/xmfan/273/base 2025-08-14T21:49:39.6983071Z * [new branch] gh/xmfan/273/head -> origin/gh/xmfan/273/head 2025-08-14T21:49:39.6984029Z * [new branch] gh/xmfan/273/orig -> origin/gh/xmfan/273/orig 2025-08-14T21:49:39.6984769Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-08-14T21:49:39.6985468Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-08-14T21:49:39.6986112Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-08-14T21:49:39.7429660Z * [new branch] gh/xmfan/275/base -> origin/gh/xmfan/275/base 2025-08-14T21:49:39.7430212Z * [new branch] gh/xmfan/275/head -> origin/gh/xmfan/275/head 2025-08-14T21:49:39.7430681Z * [new branch] gh/xmfan/275/orig -> origin/gh/xmfan/275/orig 2025-08-14T21:49:39.7431160Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-08-14T21:49:39.7431680Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-08-14T21:49:39.7432183Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-08-14T21:49:39.7432651Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-08-14T21:49:39.7433111Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-08-14T21:49:39.7433580Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-08-14T21:49:39.7434075Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-08-14T21:49:39.7434617Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-08-14T21:49:39.7435145Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-08-14T21:49:39.7435666Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-08-14T21:49:39.7436656Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-08-14T21:49:39.7437183Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-08-14T21:49:39.7437723Z * [new branch] gh/xuanzhang816/18/base -> origin/gh/xuanzhang816/18/base 2025-08-14T21:49:39.7438255Z * [new branch] gh/xuanzhang816/18/head -> origin/gh/xuanzhang816/18/head 2025-08-14T21:49:39.7438775Z * [new branch] gh/xuanzhang816/18/orig -> origin/gh/xuanzhang816/18/orig 2025-08-14T21:49:39.7439302Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-08-14T21:49:39.7439819Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-08-14T21:49:39.7440348Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-08-14T21:49:39.7440878Z * [new branch] gh/xuanzhang816/20/base -> origin/gh/xuanzhang816/20/base 2025-08-14T21:49:39.7441407Z * [new branch] gh/xuanzhang816/20/head -> origin/gh/xuanzhang816/20/head 2025-08-14T21:49:39.7441940Z * [new branch] gh/xuanzhang816/20/orig -> origin/gh/xuanzhang816/20/orig 2025-08-14T21:49:39.7442462Z * [new branch] gh/xuanzhang816/21/base -> origin/gh/xuanzhang816/21/base 2025-08-14T21:49:39.7442991Z * [new branch] gh/xuanzhang816/21/head -> origin/gh/xuanzhang816/21/head 2025-08-14T21:49:39.7443508Z * [new branch] gh/xuanzhang816/21/orig -> origin/gh/xuanzhang816/21/orig 2025-08-14T21:49:39.7444030Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-08-14T21:49:39.7444553Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-08-14T21:49:39.7445068Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-08-14T21:49:39.7445695Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-08-14T21:49:39.7446220Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-08-14T21:49:39.7446755Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-08-14T21:49:39.7447286Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-08-14T21:49:39.7447803Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-08-14T21:49:39.7448338Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-08-14T21:49:39.7448857Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-08-14T21:49:39.7449366Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-08-14T21:49:39.7450644Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-08-14T21:49:39.7451166Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-08-14T21:49:39.7451674Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-08-14T21:49:39.7452157Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-08-14T21:49:39.7452644Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-08-14T21:49:39.7453134Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-08-14T21:49:39.7453618Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-08-14T21:49:39.7454104Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-08-14T21:49:39.8143276Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-08-14T21:49:39.8143854Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-08-14T21:49:39.8144508Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-08-14T21:49:39.8145010Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-08-14T21:49:39.8145502Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-08-14T21:49:39.8145994Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-08-14T21:49:39.8146484Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-08-14T21:49:39.8147031Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-08-14T21:49:39.8160882Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-08-14T21:49:39.8161514Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-08-14T21:49:39.8162047Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-08-14T21:49:39.8162553Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-08-14T21:49:39.8163048Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-08-14T21:49:39.8163544Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-08-14T21:49:39.8164047Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-08-14T21:49:39.8164645Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-08-14T21:49:39.8165139Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-08-14T21:49:39.8165624Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-08-14T21:49:39.8166121Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-08-14T21:49:39.8166772Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-08-14T21:49:39.8167286Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-08-14T21:49:39.8167774Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-08-14T21:49:39.8168265Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-08-14T21:49:39.8168757Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-08-14T21:49:39.8169245Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-08-14T21:49:39.8169747Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-08-14T21:49:39.8170341Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-08-14T21:49:39.8170838Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-08-14T21:49:39.8171343Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-08-14T21:49:39.8171834Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-08-14T21:49:39.8172337Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-08-14T21:49:39.8172835Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-08-14T21:49:39.8173327Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-08-14T21:49:39.8173827Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-08-14T21:49:39.8174310Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-08-14T21:49:39.8174812Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-08-14T21:49:39.8175417Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-08-14T21:49:39.8176000Z * [new branch] gh/yanbing-j/39/base -> origin/gh/yanbing-j/39/base 2025-08-14T21:49:39.8176501Z * [new branch] gh/yanbing-j/39/head -> origin/gh/yanbing-j/39/head 2025-08-14T21:49:39.8176988Z * [new branch] gh/yanbing-j/39/orig -> origin/gh/yanbing-j/39/orig 2025-08-14T21:49:39.8177498Z * [new branch] gh/yangw-dev/1/base -> origin/gh/yangw-dev/1/base 2025-08-14T21:49:39.8177997Z * [new branch] gh/yangw-dev/10/base -> origin/gh/yangw-dev/10/base 2025-08-14T21:49:39.8178501Z * [new branch] gh/yangw-dev/10/head -> origin/gh/yangw-dev/10/head 2025-08-14T21:49:39.8178999Z * [new branch] gh/yangw-dev/10/orig -> origin/gh/yangw-dev/10/orig 2025-08-14T21:49:39.8179490Z * [new branch] gh/yangw-dev/11/base -> origin/gh/yangw-dev/11/base 2025-08-14T21:49:39.8179999Z * [new branch] gh/yangw-dev/11/head -> origin/gh/yangw-dev/11/head 2025-08-14T21:49:39.8180485Z * [new branch] gh/yangw-dev/11/orig -> origin/gh/yangw-dev/11/orig 2025-08-14T21:49:39.8585901Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-08-14T21:49:39.8586453Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-08-14T21:49:39.8586955Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-08-14T21:49:39.8587455Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-08-14T21:49:39.8587935Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-08-14T21:49:39.8588426Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-08-14T21:49:39.8588931Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-08-14T21:49:39.8589571Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-08-14T21:49:39.8591175Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-08-14T21:49:39.8591677Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-08-14T21:49:39.8592178Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-08-14T21:49:39.8592677Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-08-14T21:49:39.8593160Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-08-14T21:49:39.8593665Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-08-14T21:49:39.8594152Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-08-14T21:49:39.8594655Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-08-14T21:49:39.8595144Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-08-14T21:49:39.8595633Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-08-14T21:49:39.8597139Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-08-14T21:49:39.8597632Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-08-14T21:49:39.8598123Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-08-14T21:49:39.8598617Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-08-14T21:49:39.8599108Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-08-14T21:49:39.8599599Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-08-14T21:49:39.8600218Z * [new branch] gh/yangw-dev/2/base -> origin/gh/yangw-dev/2/base 2025-08-14T21:49:39.8600739Z * [new branch] gh/yangw-dev/2/head -> origin/gh/yangw-dev/2/head 2025-08-14T21:49:39.8601236Z * [new branch] gh/yangw-dev/3/base -> origin/gh/yangw-dev/3/base 2025-08-14T21:49:39.8602734Z * [new branch] gh/yangw-dev/3/head -> origin/gh/yangw-dev/3/head 2025-08-14T21:49:39.8603236Z * [new branch] gh/yangw-dev/4/base -> origin/gh/yangw-dev/4/base 2025-08-14T21:49:39.8603717Z * [new branch] gh/yangw-dev/4/head -> origin/gh/yangw-dev/4/head 2025-08-14T21:49:39.8604217Z * [new branch] gh/yangw-dev/5/base -> origin/gh/yangw-dev/5/base 2025-08-14T21:49:39.8604719Z * [new branch] gh/yangw-dev/5/head -> origin/gh/yangw-dev/5/head 2025-08-14T21:49:39.8605209Z * [new branch] gh/yangw-dev/6/base -> origin/gh/yangw-dev/6/base 2025-08-14T21:49:39.8605724Z * [new branch] gh/yangw-dev/6/head -> origin/gh/yangw-dev/6/head 2025-08-14T21:49:39.8606214Z * [new branch] gh/yangw-dev/7/base -> origin/gh/yangw-dev/7/base 2025-08-14T21:49:39.8606712Z * [new branch] gh/yangw-dev/7/head -> origin/gh/yangw-dev/7/head 2025-08-14T21:49:39.8607192Z * [new branch] gh/yangw-dev/8/base -> origin/gh/yangw-dev/8/base 2025-08-14T21:49:39.8608681Z * [new branch] gh/yangw-dev/8/head -> origin/gh/yangw-dev/8/head 2025-08-14T21:49:39.8609177Z * [new branch] gh/yangw-dev/8/orig -> origin/gh/yangw-dev/8/orig 2025-08-14T21:49:39.8609662Z * [new branch] gh/yangw-dev/9/base -> origin/gh/yangw-dev/9/base 2025-08-14T21:49:39.8610164Z * [new branch] gh/yangw-dev/9/head -> origin/gh/yangw-dev/9/head 2025-08-14T21:49:39.8610759Z * [new branch] gh/yangw-dev/9/orig -> origin/gh/yangw-dev/9/orig 2025-08-14T21:49:39.8611261Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-08-14T21:49:39.8611739Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-08-14T21:49:39.8612217Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-08-14T21:49:39.8612694Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-08-14T21:49:39.8614158Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-08-14T21:49:39.9043514Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-08-14T21:49:39.9044042Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-08-14T21:49:39.9044517Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-08-14T21:49:39.9045020Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-08-14T21:49:39.9045478Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-08-14T21:49:39.9045954Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-08-14T21:49:39.9046421Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-08-14T21:49:39.9046876Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-08-14T21:49:39.9047351Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-08-14T21:49:39.9047806Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-08-14T21:49:39.9048271Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-08-14T21:49:39.9048746Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-08-14T21:49:39.9049351Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-08-14T21:49:39.9049817Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-08-14T21:49:39.9050277Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-08-14T21:49:39.9050751Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-08-14T21:49:39.9051228Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-08-14T21:49:39.9051686Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-08-14T21:49:39.9052145Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-08-14T21:49:39.9052620Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-08-14T21:49:39.9053081Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-08-14T21:49:39.9053560Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-08-14T21:49:39.9054022Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-08-14T21:49:39.9054486Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-08-14T21:49:39.9054944Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-08-14T21:49:39.9055412Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-08-14T21:49:39.9055873Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-08-14T21:49:39.9056332Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-08-14T21:49:39.9056806Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-08-14T21:49:39.9057264Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-08-14T21:49:39.9057814Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-08-14T21:49:39.9058280Z * [new branch] gh/ydwu4/277/base -> origin/gh/ydwu4/277/base 2025-08-14T21:49:39.9058744Z * [new branch] gh/ydwu4/277/head -> origin/gh/ydwu4/277/head 2025-08-14T21:49:39.9059218Z * [new branch] gh/ydwu4/277/orig -> origin/gh/ydwu4/277/orig 2025-08-14T21:49:39.9059676Z * [new branch] gh/ydwu4/278/base -> origin/gh/ydwu4/278/base 2025-08-14T21:49:39.9060153Z * [new branch] gh/ydwu4/278/head -> origin/gh/ydwu4/278/head 2025-08-14T21:49:39.9060624Z * [new branch] gh/ydwu4/278/orig -> origin/gh/ydwu4/278/orig 2025-08-14T21:49:39.9061083Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-08-14T21:49:39.9061559Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-08-14T21:49:39.9062025Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-08-14T21:49:39.9062492Z * [new branch] gh/ydwu4/280/base -> origin/gh/ydwu4/280/base 2025-08-14T21:49:39.9062945Z * [new branch] gh/ydwu4/280/head -> origin/gh/ydwu4/280/head 2025-08-14T21:49:39.9063408Z * [new branch] gh/ydwu4/280/orig -> origin/gh/ydwu4/280/orig 2025-08-14T21:49:39.9063872Z * [new branch] gh/ydwu4/281/base -> origin/gh/ydwu4/281/base 2025-08-14T21:49:39.9064322Z * [new branch] gh/ydwu4/281/head -> origin/gh/ydwu4/281/head 2025-08-14T21:49:39.9064796Z * [new branch] gh/ydwu4/281/orig -> origin/gh/ydwu4/281/orig 2025-08-14T21:49:39.9065258Z * [new branch] gh/ydwu4/282/base -> origin/gh/ydwu4/282/base 2025-08-14T21:49:39.9065722Z * [new branch] gh/ydwu4/282/head -> origin/gh/ydwu4/282/head 2025-08-14T21:49:39.9474837Z * [new branch] gh/ydwu4/282/orig -> origin/gh/ydwu4/282/orig 2025-08-14T21:49:39.9475371Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-08-14T21:49:39.9475850Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-08-14T21:49:39.9476329Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-08-14T21:49:39.9476792Z * [new branch] gh/ydwu4/284/base -> origin/gh/ydwu4/284/base 2025-08-14T21:49:39.9477261Z * [new branch] gh/ydwu4/284/head -> origin/gh/ydwu4/284/head 2025-08-14T21:49:39.9477728Z * [new branch] gh/ydwu4/284/orig -> origin/gh/ydwu4/284/orig 2025-08-14T21:49:39.9478190Z * [new branch] gh/ydwu4/285/base -> origin/gh/ydwu4/285/base 2025-08-14T21:49:39.9478657Z * [new branch] gh/ydwu4/285/head -> origin/gh/ydwu4/285/head 2025-08-14T21:49:39.9479127Z * [new branch] gh/ydwu4/285/orig -> origin/gh/ydwu4/285/orig 2025-08-14T21:49:39.9479591Z * [new branch] gh/ydwu4/286/base -> origin/gh/ydwu4/286/base 2025-08-14T21:49:39.9480050Z * [new branch] gh/ydwu4/286/head -> origin/gh/ydwu4/286/head 2025-08-14T21:49:39.9480517Z * [new branch] gh/ydwu4/286/orig -> origin/gh/ydwu4/286/orig 2025-08-14T21:49:39.9480985Z * [new branch] gh/ydwu4/287/base -> origin/gh/ydwu4/287/base 2025-08-14T21:49:39.9481449Z * [new branch] gh/ydwu4/287/head -> origin/gh/ydwu4/287/head 2025-08-14T21:49:39.9481913Z * [new branch] gh/ydwu4/287/orig -> origin/gh/ydwu4/287/orig 2025-08-14T21:49:39.9482375Z * [new branch] gh/ydwu4/288/base -> origin/gh/ydwu4/288/base 2025-08-14T21:49:39.9482840Z * [new branch] gh/ydwu4/288/head -> origin/gh/ydwu4/288/head 2025-08-14T21:49:39.9483440Z * [new branch] gh/ydwu4/288/orig -> origin/gh/ydwu4/288/orig 2025-08-14T21:49:39.9483914Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-08-14T21:49:39.9484395Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-08-14T21:49:39.9484864Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-08-14T21:49:39.9485341Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-08-14T21:49:39.9485800Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-08-14T21:49:39.9486279Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-08-14T21:49:39.9486741Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-08-14T21:49:39.9487211Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-08-14T21:49:39.9487687Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-08-14T21:49:39.9488145Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-08-14T21:49:39.9488617Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-08-14T21:49:39.9489074Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-08-14T21:49:39.9489540Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-08-14T21:49:39.9490002Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-08-14T21:49:39.9490459Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-08-14T21:49:39.9490933Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-08-14T21:49:39.9491392Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-08-14T21:49:39.9491959Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-08-14T21:49:39.9492430Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-08-14T21:49:39.9492896Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-08-14T21:49:39.9493366Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-08-14T21:49:39.9493839Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-08-14T21:49:39.9494304Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-08-14T21:49:39.9494760Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-08-14T21:49:39.9495225Z * [new branch] gh/ydwu4/297/base -> origin/gh/ydwu4/297/base 2025-08-14T21:49:39.9495694Z * [new branch] gh/ydwu4/297/head -> origin/gh/ydwu4/297/head 2025-08-14T21:49:39.9496150Z * [new branch] gh/ydwu4/297/orig -> origin/gh/ydwu4/297/orig 2025-08-14T21:49:39.9496621Z * [new branch] gh/ydwu4/298/base -> origin/gh/ydwu4/298/base 2025-08-14T21:49:39.9497077Z * [new branch] gh/ydwu4/298/head -> origin/gh/ydwu4/298/head 2025-08-14T21:49:39.9934259Z * [new branch] gh/ydwu4/298/orig -> origin/gh/ydwu4/298/orig 2025-08-14T21:49:39.9934779Z * [new branch] gh/ydwu4/299/base -> origin/gh/ydwu4/299/base 2025-08-14T21:49:39.9935253Z * [new branch] gh/ydwu4/299/head -> origin/gh/ydwu4/299/head 2025-08-14T21:49:39.9935721Z * [new branch] gh/ydwu4/299/orig -> origin/gh/ydwu4/299/orig 2025-08-14T21:49:39.9936192Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-08-14T21:49:39.9936802Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-08-14T21:49:39.9937279Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-08-14T21:49:39.9937740Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-08-14T21:49:39.9938204Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-08-14T21:49:39.9938690Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-08-14T21:49:39.9939152Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-08-14T21:49:39.9939608Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-08-14T21:49:39.9940067Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-08-14T21:49:39.9940521Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-08-14T21:49:39.9940991Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-08-14T21:49:39.9941460Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-08-14T21:49:39.9941911Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-08-14T21:49:39.9942376Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-08-14T21:49:39.9942834Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-08-14T21:49:39.9943298Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-08-14T21:49:39.9943768Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-08-14T21:49:39.9944221Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-08-14T21:49:39.9944676Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-08-14T21:49:39.9945232Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-08-14T21:49:39.9945699Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-08-14T21:49:39.9946166Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-08-14T21:49:39.9946637Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-08-14T21:49:39.9947103Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-08-14T21:49:39.9947571Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-08-14T21:49:39.9948031Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-08-14T21:49:39.9948491Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-08-14T21:49:39.9948960Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-08-14T21:49:39.9949427Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-08-14T21:49:39.9949882Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-08-14T21:49:39.9950428Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-08-14T21:49:39.9950888Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-08-14T21:49:39.9951353Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-08-14T21:49:39.9951821Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-08-14T21:49:39.9952273Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-08-14T21:49:39.9952743Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-08-14T21:49:39.9953197Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-08-14T21:49:39.9953741Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-08-14T21:49:39.9954195Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-08-14T21:49:39.9954663Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-08-14T21:49:39.9955124Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-08-14T21:49:39.9955593Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-08-14T21:49:39.9956064Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-08-14T21:49:39.9956521Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-08-14T21:49:40.0398427Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-08-14T21:49:40.0398960Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-08-14T21:49:40.0399467Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-08-14T21:49:40.0399976Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-08-14T21:49:40.0400477Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-08-14T21:49:40.0400966Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-08-14T21:49:40.0401459Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-08-14T21:49:40.0401947Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-08-14T21:49:40.0402444Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-08-14T21:49:40.0402937Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-08-14T21:49:40.0403442Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-08-14T21:49:40.0404100Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-08-14T21:49:40.0404596Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-08-14T21:49:40.0405109Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-08-14T21:49:40.0405609Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-08-14T21:49:40.0406113Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-08-14T21:49:40.0406620Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-08-14T21:49:40.0407110Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-08-14T21:49:40.0407612Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-08-14T21:49:40.0408111Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-08-14T21:49:40.0408610Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-08-14T21:49:40.0409115Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-08-14T21:49:40.0409610Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-08-14T21:49:40.0410105Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-08-14T21:49:40.0410599Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-08-14T21:49:40.0411102Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-08-14T21:49:40.0411599Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-08-14T21:49:40.0412087Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-08-14T21:49:40.0412669Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-08-14T21:49:40.0414636Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-08-14T21:49:40.0415169Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-08-14T21:49:40.0415665Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-08-14T21:49:40.0416166Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-08-14T21:49:40.0416652Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-08-14T21:49:40.0417117Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-08-14T21:49:40.0417585Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-08-14T21:49:40.0418041Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-08-14T21:49:40.0418518Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-08-14T21:49:40.0418988Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-08-14T21:49:40.0419462Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-08-14T21:49:40.0419970Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-08-14T21:49:40.0420455Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-08-14T21:49:40.0420948Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-08-14T21:49:40.0421451Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-08-14T21:49:40.0421935Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-08-14T21:49:40.0422551Z * [new branch] gh/zhxchen17/33/base -> origin/gh/zhxchen17/33/base 2025-08-14T21:49:40.0423041Z * [new branch] gh/zhxchen17/33/head -> origin/gh/zhxchen17/33/head 2025-08-14T21:49:40.0861020Z * [new branch] gh/zhxchen17/33/orig -> origin/gh/zhxchen17/33/orig 2025-08-14T21:49:40.0861584Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-08-14T21:49:40.0862081Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-08-14T21:49:40.0862576Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-08-14T21:49:40.0863068Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-08-14T21:49:40.0863574Z * [new branch] gh/zhxchen17/36/base -> origin/gh/zhxchen17/36/base 2025-08-14T21:49:40.0864073Z * [new branch] gh/zhxchen17/36/head -> origin/gh/zhxchen17/36/head 2025-08-14T21:49:40.0864573Z * [new branch] gh/zhxchen17/36/orig -> origin/gh/zhxchen17/36/orig 2025-08-14T21:49:40.0865060Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-08-14T21:49:40.0865527Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-08-14T21:49:40.0865992Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-08-14T21:49:40.0866467Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-08-14T21:49:40.0866941Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-08-14T21:49:40.0867410Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-08-14T21:49:40.0867879Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-08-14T21:49:40.0868355Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-08-14T21:49:40.0868956Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-08-14T21:49:40.0869427Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-08-14T21:49:40.0869898Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-08-14T21:49:40.0870454Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-08-14T21:49:40.0870923Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-08-14T21:49:40.0871383Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-08-14T21:49:40.0871852Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-08-14T21:49:40.0872336Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-08-14T21:49:40.0872802Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-08-14T21:49:40.0873285Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-08-14T21:49:40.0873750Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-08-14T21:49:40.0874213Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-08-14T21:49:40.0874679Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-08-14T21:49:40.0875137Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-08-14T21:49:40.0877116Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-08-14T21:49:40.0877580Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-08-14T21:49:40.0878048Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-08-14T21:49:40.0878522Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-08-14T21:49:40.0879110Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-08-14T21:49:40.0879584Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-08-14T21:49:40.0880048Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-08-14T21:49:40.0880519Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-08-14T21:49:40.0880989Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-08-14T21:49:40.0881461Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-08-14T21:49:40.0881930Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-08-14T21:49:40.0882388Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-08-14T21:49:40.0882852Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-08-14T21:49:40.0883314Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-08-14T21:49:40.0883789Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-08-14T21:49:40.0884279Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-08-14T21:49:40.0884754Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-08-14T21:49:40.0885242Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-08-14T21:49:40.1319605Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-08-14T21:49:40.1320259Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-08-14T21:49:40.1320851Z * [new branch] gh/zou3519/1187/base -> origin/gh/zou3519/1187/base 2025-08-14T21:49:40.1321557Z * [new branch] gh/zou3519/1187/head -> origin/gh/zou3519/1187/head 2025-08-14T21:49:40.1322106Z * [new branch] gh/zou3519/1187/orig -> origin/gh/zou3519/1187/orig 2025-08-14T21:49:40.1322632Z * [new branch] gh/zou3519/1188/base -> origin/gh/zou3519/1188/base 2025-08-14T21:49:40.1323223Z * [new branch] gh/zou3519/1188/head -> origin/gh/zou3519/1188/head 2025-08-14T21:49:40.1323754Z * [new branch] gh/zou3519/1188/orig -> origin/gh/zou3519/1188/orig 2025-08-14T21:49:40.1324321Z * [new branch] gh/zou3519/1189/base -> origin/gh/zou3519/1189/base 2025-08-14T21:49:40.1324850Z * [new branch] gh/zou3519/1189/head -> origin/gh/zou3519/1189/head 2025-08-14T21:49:40.1325412Z * [new branch] gh/zou3519/1189/orig -> origin/gh/zou3519/1189/orig 2025-08-14T21:49:40.1325942Z * [new branch] gh/zou3519/1190/base -> origin/gh/zou3519/1190/base 2025-08-14T21:49:40.1326471Z * [new branch] gh/zou3519/1190/head -> origin/gh/zou3519/1190/head 2025-08-14T21:49:40.1327075Z * [new branch] gh/zou3519/1190/orig -> origin/gh/zou3519/1190/orig 2025-08-14T21:49:40.1327560Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-08-14T21:49:40.1328046Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-08-14T21:49:40.1328526Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-08-14T21:49:40.1329014Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-08-14T21:49:40.1329482Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-08-14T21:49:40.1329956Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-08-14T21:49:40.1330433Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-08-14T21:49:40.1331017Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-08-14T21:49:40.1331498Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-08-14T21:49:40.1331972Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-08-14T21:49:40.1332503Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-08-14T21:49:40.1333079Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-08-14T21:49:40.1333546Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-08-14T21:49:40.1334015Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-08-14T21:49:40.1334483Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-08-14T21:49:40.1334950Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-08-14T21:49:40.1335411Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-08-14T21:49:40.1335876Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-08-14T21:49:40.1336331Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-08-14T21:49:40.1336794Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-08-14T21:49:40.1337252Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-08-14T21:49:40.1337704Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-08-14T21:49:40.1338207Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-08-14T21:49:40.1338727Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-08-14T21:49:40.1339232Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-08-14T21:49:40.1339779Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-08-14T21:49:40.1340252Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-08-14T21:49:40.1340724Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-08-14T21:49:40.1341184Z * [new branch] gh/zpcore/9/head -> origin/gh/zpcore/9/head 2025-08-14T21:49:40.1341652Z * [new branch] gh/zpcore/9/orig -> origin/gh/zpcore/9/orig 2025-08-14T21:49:40.1342106Z * [new branch] google-main -> origin/google-main 2025-08-14T21:49:40.1342611Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-08-14T21:49:40.1343139Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-08-14T21:49:40.1343625Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-08-14T21:49:40.1761168Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-08-14T21:49:40.1761856Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-08-14T21:49:40.1762360Z * [new branch] hc_baseline -> origin/hc_baseline 2025-08-14T21:49:40.1762860Z * [new branch] headeronlyScalarType -> origin/headeronlyScalarType 2025-08-14T21:49:40.1763384Z * [new branch] hf_update -> origin/hf_update 2025-08-14T21:49:40.1763828Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-08-14T21:49:40.1764303Z * [new branch] hhh_rand -> origin/hhh_rand 2025-08-14T21:49:40.1764728Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-08-14T21:49:40.1765205Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-08-14T21:49:40.1766214Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-08-14T21:49:40.1766843Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-08-14T21:49:40.1767417Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-08-14T21:49:40.1767993Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-08-14T21:49:40.1768537Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-08-14T21:49:40.1768990Z * [new branch] inline -> origin/inline 2025-08-14T21:49:40.1769459Z * [new branch] inlining -> origin/inlining 2025-08-14T21:49:40.1769947Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-08-14T21:49:40.1770407Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-08-14T21:49:40.1770846Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-08-14T21:49:40.1771315Z * [new branch] issue#58739 -> origin/issue#58739 2025-08-14T21:49:40.1771745Z * [new branch] issue-154849 -> origin/issue-154849 2025-08-14T21:49:40.1772278Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-08-14T21:49:40.1772968Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-08-14T21:49:40.1773668Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-08-14T21:49:40.1774260Z * [new branch] jithunnair-amd-patch-1 -> origin/jithunnair-amd-patch-1 2025-08-14T21:49:40.1774825Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-08-14T21:49:40.1775583Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-08-14T21:49:40.1776150Z * [new branch] justinchuby/JitScalarType -> origin/justinchuby/JitScalarType 2025-08-14T21:49:40.1776709Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-08-14T21:49:40.1777246Z * [new branch] justinchuby/opset-20 -> origin/justinchuby/opset-20 2025-08-14T21:49:40.1777751Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-08-14T21:49:40.1778213Z * [new branch] kainan_test -> origin/kainan_test 2025-08-14T21:49:40.1778774Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-08-14T21:49:40.1779417Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-08-14T21:49:40.1780055Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-08-14T21:49:40.1780681Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-08-14T21:49:40.1781237Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-08-14T21:49:40.1781806Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-08-14T21:49:40.1782381Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-08-14T21:49:40.1782893Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-08-14T21:49:40.1783364Z * [new branch] llama4-stable -> origin/llama4-stable 2025-08-14T21:49:40.1783800Z * [new branch] logdetfix -> origin/logdetfix 2025-08-14T21:49:40.1784256Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-08-14T21:49:40.1784809Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-08-14T21:49:40.1785326Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-08-14T21:49:40.2179592Z * [new branch] lucaskabela/fix_circular_import_158120 -> origin/lucaskabela/fix_circular_import_158120 2025-08-14T21:49:40.2180273Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-08-14T21:49:40.2180915Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-08-14T21:49:40.2181610Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-08-14T21:49:40.2182269Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-08-14T21:49:40.2182912Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-08-14T21:49:40.2183539Z * [new branch] lucaskabela/registry_fix -> origin/lucaskabela/registry_fix 2025-08-14T21:49:40.2184215Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-08-14T21:49:40.2184886Z * [new branch] lucaskabela/type_guards -> origin/lucaskabela/type_guards 2025-08-14T21:49:40.2185430Z * [new branch] lucaskabela/typing-misc -> origin/lucaskabela/typing-misc 2025-08-14T21:49:40.2185997Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-08-14T21:49:40.2186732Z * [new branch] lucaskabela/typing_bytecode_analysis_transform -> origin/lucaskabela/typing_bytecode_analysis_transform 2025-08-14T21:49:40.2187484Z * [new branch] lucaskabela/typing_cache_files -> origin/lucaskabela/typing_cache_files 2025-08-14T21:49:40.2188747Z * [new branch] lucaskabela/typing_compile_autograd -> origin/lucaskabela/typing_compile_autograd 2025-08-14T21:49:40.2189437Z * [new branch] lucaskabela/typing_debug_utils.py -> origin/lucaskabela/typing_debug_utils.py 2025-08-14T21:49:40.2190144Z * [new branch] lucaskabela/typing_decorators -> origin/lucaskabela/typing_decorators 2025-08-14T21:49:40.2190757Z * [new branch] lucaskabela/typing_eval_frame -> origin/lucaskabela/typing_eval_frame 2025-08-14T21:49:40.2191377Z * [new branch] lucaskabela/typing_for_codegen -> origin/lucaskabela/typing_for_codegen 2025-08-14T21:49:40.2192024Z * [new branch] lucaskabela/typing_output_graph -> origin/lucaskabela/typing_output_graph 2025-08-14T21:49:40.2192650Z * [new branch] lucaskabela/typing_side_effects -> origin/lucaskabela/typing_side_effects 2025-08-14T21:49:40.2193291Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-08-14T21:49:40.2193926Z * [new branch] lucaskabela/typing_trace_rules -> origin/lucaskabela/typing_trace_rules 2025-08-14T21:49:40.2194542Z * [new branch] lucaskabela/typing_utils.py -> origin/lucaskabela/typing_utils.py 2025-08-14T21:49:40.2195205Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-08-14T21:49:40.2195766Z * [new branch] main -> origin/main 2025-08-14T21:49:40.2196332Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-08-14T21:49:40.2196929Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-08-14T21:49:40.2197409Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-08-14T21:49:40.2197890Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-08-14T21:49:40.2198457Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-08-14T21:49:40.2198932Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-08-14T21:49:40.2199395Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-08-14T21:49:40.2199866Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-08-14T21:49:40.2200317Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-08-14T21:49:40.2200778Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-08-14T21:49:40.2201243Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-08-14T21:49:40.2201693Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-08-14T21:49:40.2202145Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-08-14T21:49:40.2202607Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-08-14T21:49:40.2203135Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-08-14T21:49:40.2203727Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-08-14T21:49:40.2204366Z * [new branch] manuel/fix_multidim_boolean_indexing -> origin/manuel/fix_multidim_boolean_indexing 2025-08-14T21:49:40.2204977Z * [new branch] manuel/np_empty_ellipsis -> origin/manuel/np_empty_ellipsis 2025-08-14T21:49:40.2607949Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-08-14T21:49:40.2608599Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-08-14T21:49:40.2609108Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-08-14T21:49:40.2609564Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-08-14T21:49:40.2610144Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-08-14T21:49:40.2610683Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-08-14T21:49:40.2611227Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-08-14T21:49:40.2611726Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-08-14T21:49:40.2612271Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-08-14T21:49:40.2612824Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-08-14T21:49:40.2613308Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-08-14T21:49:40.2613774Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-08-14T21:49:40.2614249Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-08-14T21:49:40.2614688Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-08-14T21:49:40.2615155Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-08-14T21:49:40.2615650Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-08-14T21:49:40.2616168Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-08-14T21:49:40.2616760Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-08-14T21:49:40.2617331Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-08-14T21:49:40.2617860Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-08-14T21:49:40.2618378Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-08-14T21:49:40.2618966Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-08-14T21:49:40.2619466Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-08-14T21:49:40.2619980Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-08-14T21:49:40.2620497Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-08-14T21:49:40.2620959Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-08-14T21:49:40.2621442Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-08-14T21:49:40.2621954Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-08-14T21:49:40.2622463Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-08-14T21:49:40.2622939Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-08-14T21:49:40.2623411Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-08-14T21:49:40.2623867Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-08-14T21:49:40.2624314Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-08-14T21:49:40.2624832Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-08-14T21:49:40.2625352Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-08-14T21:49:40.2625804Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-08-14T21:49:40.2626262Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-08-14T21:49:40.2626748Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-08-14T21:49:40.2627248Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-08-14T21:49:40.2627790Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-08-14T21:49:40.2628243Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-08-14T21:49:40.2628707Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-08-14T21:49:40.2629145Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-08-14T21:49:40.2629688Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-08-14T21:49:40.2630153Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-08-14T21:49:40.2630612Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-08-14T21:49:40.2631076Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-08-14T21:49:40.2631527Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-08-14T21:49:40.3087000Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-08-14T21:49:40.3087484Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-08-14T21:49:40.3087911Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-08-14T21:49:40.3088336Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-08-14T21:49:40.3088754Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-08-14T21:49:40.3089185Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-08-14T21:49:40.3089597Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-08-14T21:49:40.3090020Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-08-14T21:49:40.3090438Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-08-14T21:49:40.3091025Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-08-14T21:49:40.3091455Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-08-14T21:49:40.3091873Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-08-14T21:49:40.3092301Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-08-14T21:49:40.3092723Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-08-14T21:49:40.3093183Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-08-14T21:49:40.3093670Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-08-14T21:49:40.3094178Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-08-14T21:49:40.3094703Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-08-14T21:49:40.3095198Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-08-14T21:49:40.3095723Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-08-14T21:49:40.3096212Z * [new branch] mlazos/main -> origin/mlazos/main 2025-08-14T21:49:40.3096713Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-08-14T21:49:40.3097228Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-08-14T21:49:40.3097659Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-08-14T21:49:40.3098100Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-08-14T21:49:40.3098565Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-08-14T21:49:40.3099049Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-08-14T21:49:40.3099706Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-08-14T21:49:40.3100328Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-08-14T21:49:40.3100869Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-08-14T21:49:40.3101346Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-08-14T21:49:40.3101816Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-08-14T21:49:40.3102311Z * [new branch] mlazos/nested-dc -> origin/mlazos/nested-dc 2025-08-14T21:49:40.3102774Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-08-14T21:49:40.3103315Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-08-14T21:49:40.3103862Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-08-14T21:49:40.3104365Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-08-14T21:49:40.3104880Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-08-14T21:49:40.3105356Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-08-14T21:49:40.3105845Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-08-14T21:49:40.3106312Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-08-14T21:49:40.3106802Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-08-14T21:49:40.3107283Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-08-14T21:49:40.3107712Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-08-14T21:49:40.3108191Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-08-14T21:49:40.3108823Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-08-14T21:49:40.3109446Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-08-14T21:49:40.3109944Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-08-14T21:49:40.3110434Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-08-14T21:49:40.3516923Z * [new branch] mlazos/test -> origin/mlazos/test 2025-08-14T21:49:40.3517501Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-08-14T21:49:40.3518004Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-08-14T21:49:40.3518587Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-08-14T21:49:40.3519104Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-08-14T21:49:40.3519646Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-08-14T21:49:40.3520148Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-08-14T21:49:40.3520643Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-08-14T21:49:40.3521161Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-08-14T21:49:40.3521649Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-08-14T21:49:40.3522154Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-08-14T21:49:40.3522655Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-08-14T21:49:40.3523166Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-08-14T21:49:40.3523699Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-08-14T21:49:40.3524448Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-08-14T21:49:40.3524990Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-08-14T21:49:40.3525568Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-08-14T21:49:40.3526108Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-08-14T21:49:40.3526708Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-08-14T21:49:40.3527243Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-08-14T21:49:40.3527739Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-08-14T21:49:40.3528289Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-08-14T21:49:40.3528886Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-08-14T21:49:40.3529526Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-08-14T21:49:40.3530041Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-08-14T21:49:40.3530576Z * [new branch] muon_dev -> origin/muon_dev 2025-08-14T21:49:40.3531098Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-08-14T21:49:40.3531642Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-08-14T21:49:40.3532185Z * [new branch] newtest-base -> origin/newtest-base 2025-08-14T21:49:40.3532683Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-08-14T21:49:40.3533277Z * [new branch] ngimel/cudamoduleload -> origin/ngimel/cudamoduleload 2025-08-14T21:49:40.3534007Z * [new branch] ngimel/fabric_driver_version -> origin/ngimel/fabric_driver_version 2025-08-14T21:49:40.3534613Z * [new branch] ngimel/fabric_symm -> origin/ngimel/fabric_symm 2025-08-14T21:49:40.3535149Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-08-14T21:49:40.3535713Z * [new branch] ngimel/grouped_mm_checks -> origin/ngimel/grouped_mm_checks 2025-08-14T21:49:40.3536282Z * [new branch] ngimel/guardfabric -> origin/ngimel/guardfabric 2025-08-14T21:49:40.3536858Z * [new branch] ngimel/index_None -> origin/ngimel/index_None 2025-08-14T21:49:40.3537392Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-08-14T21:49:40.3537975Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-08-14T21:49:40.3538537Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-08-14T21:49:40.3539108Z * [new branch] nightly -> origin/nightly 2025-08-14T21:49:40.3539622Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-08-14T21:49:40.3540240Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-08-14T21:49:40.3540788Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-08-14T21:49:40.3541390Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-08-14T21:49:40.3541937Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-08-14T21:49:40.3542694Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-08-14T21:49:40.3942700Z * [new branch] one-off -> origin/one-off 2025-08-14T21:49:40.3943203Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-08-14T21:49:40.3943838Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-08-14T21:49:40.3944320Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-08-14T21:49:40.3944789Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-08-14T21:49:40.3945271Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-08-14T21:49:40.3945740Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-08-14T21:49:40.3946201Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-08-14T21:49:40.3946662Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-08-14T21:49:40.3947117Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-08-14T21:49:40.3947584Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-08-14T21:49:40.3948044Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-08-14T21:49:40.3948507Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-08-14T21:49:40.3949026Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-08-14T21:49:40.3949485Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-08-14T21:49:40.3949945Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-08-14T21:49:40.3950397Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-08-14T21:49:40.3950867Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-08-14T21:49:40.3951321Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-08-14T21:49:40.3951793Z * [new branch] padded-tensor -> origin/padded-tensor 2025-08-14T21:49:40.3952340Z * [new branch] parallel_cat -> origin/parallel_cat 2025-08-14T21:49:40.3952760Z * [new branch] pca2 -> origin/pca2 2025-08-14T21:49:40.3953215Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-08-14T21:49:40.3953804Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-08-14T21:49:40.3954441Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-08-14T21:49:40.3955024Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-08-14T21:49:40.3955619Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-08-14T21:49:40.3956212Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-08-14T21:49:40.3956814Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-08-14T21:49:40.3957369Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-08-14T21:49:40.3957883Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-08-14T21:49:40.3958499Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-08-14T21:49:40.3959167Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-08-14T21:49:40.3959784Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-08-14T21:49:40.3960383Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-08-14T21:49:40.3960933Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-08-14T21:49:40.3961557Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-08-14T21:49:40.3962149Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-08-14T21:49:40.3962747Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-08-14T21:49:40.3963272Z * [new branch] pianpwk/sym_sym -> origin/pianpwk/sym_sym 2025-08-14T21:49:40.3963803Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-08-14T21:49:40.3964399Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-08-14T21:49:40.3965006Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-08-14T21:49:40.3965575Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-08-14T21:49:40.3966157Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-08-14T21:49:40.4389396Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-08-14T21:49:40.4390038Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-08-14T21:49:40.4390654Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-08-14T21:49:40.4391255Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-08-14T21:49:40.4391828Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-08-14T21:49:40.4392393Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-08-14T21:49:40.4392951Z * [new branch] pin-torchao -> origin/pin-torchao 2025-08-14T21:49:40.4393529Z * [new branch] piz/fall_back_missing_0705 -> origin/piz/fall_back_missing_0705 2025-08-14T21:49:40.4394208Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-08-14T21:49:40.4394744Z * [new branch] piz/fill_dist_cost_0702-3 -> origin/piz/fill_dist_cost_0702-3 2025-08-14T21:49:40.4395268Z * [new branch] piz/fill_dist_cost_0702-4 -> origin/piz/fill_dist_cost_0702-4 2025-08-14T21:49:40.4395777Z * [new branch] piz/fill_dist_cost_0702-5 -> origin/piz/fill_dist_cost_0702-5 2025-08-14T21:49:40.4396306Z * [new branch] piz/fix_sort_ -> origin/piz/fix_sort_ 2025-08-14T21:49:40.4396805Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-08-14T21:49:40.4397305Z * [new branch] pool-separate -> origin/pool-separate 2025-08-14T21:49:40.4397745Z * [new branch] pr-156087 -> origin/pr-156087 2025-08-14T21:49:40.4398160Z * [new branch] pr/131860 -> origin/pr/131860 2025-08-14T21:49:40.4398601Z * [new branch] predispatch_to -> origin/predispatch_to 2025-08-14T21:49:40.4399067Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-08-14T21:49:40.4399567Z * [new branch] pt2e-cache-model-device -> origin/pt2e-cache-model-device 2025-08-14T21:49:40.4400088Z * [new branch] pull-latest-theme -> origin/pull-latest-theme 2025-08-14T21:49:40.4400559Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-08-14T21:49:40.4401058Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-08-14T21:49:40.4401589Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-08-14T21:49:40.4402077Z * [new branch] quint-bits -> origin/quint-bits 2025-08-14T21:49:40.4402620Z * [new branch] release/1.10 -> origin/release/1.10 2025-08-14T21:49:40.4403059Z * [new branch] release/1.11 -> origin/release/1.11 2025-08-14T21:49:40.4403497Z * [new branch] release/1.12 -> origin/release/1.12 2025-08-14T21:49:40.4403920Z * [new branch] release/1.13 -> origin/release/1.13 2025-08-14T21:49:40.4404363Z * [new branch] release/1.4 -> origin/release/1.4 2025-08-14T21:49:40.4404792Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-08-14T21:49:40.4405234Z * [new branch] release/1.5 -> origin/release/1.5 2025-08-14T21:49:40.4405658Z * [new branch] release/1.6 -> origin/release/1.6 2025-08-14T21:49:40.4406077Z * [new branch] release/1.7 -> origin/release/1.7 2025-08-14T21:49:40.4406505Z * [new branch] release/1.8 -> origin/release/1.8 2025-08-14T21:49:40.4406929Z * [new branch] release/1.9 -> origin/release/1.9 2025-08-14T21:49:40.4407358Z * [new branch] release/2.0 -> origin/release/2.0 2025-08-14T21:49:40.4407780Z * [new branch] release/2.1 -> origin/release/2.1 2025-08-14T21:49:40.4408200Z * [new branch] release/2.2 -> origin/release/2.2 2025-08-14T21:49:40.4408629Z * [new branch] release/2.3 -> origin/release/2.3 2025-08-14T21:49:40.4409112Z * [new branch] release/2.4 -> origin/release/2.4 2025-08-14T21:49:40.4409641Z * [new branch] release/2.5 -> origin/release/2.5 2025-08-14T21:49:40.4410078Z * [new branch] release/2.6 -> origin/release/2.6 2025-08-14T21:49:40.4410510Z * [new branch] release/2.7 -> origin/release/2.7 2025-08-14T21:49:40.4411045Z * [new branch] release/2.8 -> origin/release/2.8 2025-08-14T21:49:40.4411476Z * [new branch] release_notes -> origin/release_notes 2025-08-14T21:49:40.4411983Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-08-14T21:49:40.4412487Z * [new branch] remove-ao -> origin/remove-ao 2025-08-14T21:49:40.4413083Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-08-14T21:49:40.4811904Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-08-14T21:49:40.4812663Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-08-14T21:49:40.4813414Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-08-14T21:49:40.4814174Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-08-14T21:49:40.4814909Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-08-14T21:49:40.4815779Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-08-14T21:49:40.4816514Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-08-14T21:49:40.4817180Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-08-14T21:49:40.4817993Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-08-14T21:49:40.4818757Z * [new branch] revert-direct-updates -> origin/revert-direct-updates 2025-08-14T21:49:40.4819417Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-08-14T21:49:40.4820107Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-08-14T21:49:40.4820834Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-08-14T21:49:40.4821483Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-08-14T21:49:40.4821944Z * [new branch] rzou/njt -> origin/rzou/njt 2025-08-14T21:49:40.4822380Z * [new branch] rzou/operator -> origin/rzou/operator 2025-08-14T21:49:40.4822805Z * [new branch] rzou/pca -> origin/rzou/pca 2025-08-14T21:49:40.4823254Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-08-14T21:49:40.4823716Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-08-14T21:49:40.4824197Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-08-14T21:49:40.4824843Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-08-14T21:49:40.4825727Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-08-14T21:49:40.4826517Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-08-14T21:49:40.4827063Z * [new branch] save -> origin/save 2025-08-14T21:49:40.4827519Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-08-14T21:49:40.4827987Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-08-14T21:49:40.4828469Z * [new branch] setup-torchci -> origin/setup-torchci 2025-08-14T21:49:40.4829067Z * [new branch] setupvllm -> origin/setupvllm 2025-08-14T21:49:40.4829526Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-08-14T21:49:40.4830022Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-08-14T21:49:40.4830538Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-08-14T21:49:40.4831064Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-08-14T21:49:40.4831596Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-08-14T21:49:40.4832133Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-08-14T21:49:40.4832671Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-08-14T21:49:40.4833251Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-08-14T21:49:40.4833845Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-08-14T21:49:40.4834455Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-08-14T21:49:40.4835033Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-08-14T21:49:40.4835682Z * [new branch] standalone-templates -> origin/standalone-templates 2025-08-14T21:49:40.4836317Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-08-14T21:49:40.4836896Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-08-14T21:49:40.4837454Z * [new branch] step2vllmsetup -> origin/step2vllmsetup 2025-08-14T21:49:40.5180016Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-08-14T21:49:40.5180603Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-08-14T21:49:40.5181322Z * [new branch] suryasub/fix-nccl-hang -> origin/suryasub/fix-nccl-hang 2025-08-14T21:49:40.5181814Z * [new branch] sve-poc -> origin/sve-poc 2025-08-14T21:49:40.5182265Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-08-14T21:49:40.5182792Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-08-14T21:49:40.5183292Z * [new branch] switch-bn -> origin/switch-bn 2025-08-14T21:49:40.5183781Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-08-14T21:49:40.5184366Z * [new branch] tenpercent/ck_inductor_gfx950 -> origin/tenpercent/ck_inductor_gfx950 2025-08-14T21:49:40.5184927Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-08-14T21:49:40.5185540Z * [new branch] test-half-migration-internally -> origin/test-half-migration-internally 2025-08-14T21:49:40.5186119Z * [new branch] test-internal-et -> origin/test-internal-et 2025-08-14T21:49:40.5186633Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-08-14T21:49:40.5187213Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-08-14T21:49:40.5187730Z * [new branch] test-old -> origin/test-old 2025-08-14T21:49:40.5188311Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-08-14T21:49:40.5188969Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-08-14T21:49:40.5189415Z * [new branch] test/inductor -> origin/test/inductor 2025-08-14T21:49:40.5189900Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-08-14T21:49:40.5190479Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-08-14T21:49:40.5190983Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-08-14T21:49:40.5191522Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-08-14T21:49:40.5192036Z * [new branch] trackMonitor -> origin/trackMonitor 2025-08-14T21:49:40.5192502Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-08-14T21:49:40.5192952Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-08-14T21:49:40.5193398Z * [new branch] triton-update -> origin/triton-update 2025-08-14T21:49:40.5193836Z * [new branch] triton_kernel -> origin/triton_kernel 2025-08-14T21:49:40.5194352Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-08-14T21:49:40.5194873Z * [new branch] try-runllm -> origin/try-runllm 2025-08-14T21:49:40.5195289Z * [new branch] type_dec -> origin/type_dec 2025-08-14T21:49:40.5195789Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-08-14T21:49:40.5196483Z * [new branch] update-audio-commit-hash/16307312222-1661-1 -> origin/update-audio-commit-hash/16307312222-1661-1 2025-08-14T21:49:40.5197293Z * [new branch] update-audio-commit-hash/16431348808-1673-1 -> origin/update-audio-commit-hash/16431348808-1673-1 2025-08-14T21:49:40.5198102Z * [new branch] update-audio-commit-hash/16510774365-1683-1 -> origin/update-audio-commit-hash/16510774365-1683-1 2025-08-14T21:49:40.5198895Z * [new branch] update-audio-commit-hash/16583472358-1693-1 -> origin/update-audio-commit-hash/16583472358-1693-1 2025-08-14T21:49:40.5199809Z * [new branch] update-audio-commit-hash/16663082088-1700-1 -> origin/update-audio-commit-hash/16663082088-1700-1 2025-08-14T21:49:40.5200659Z * [new branch] update-audio-commit-hash/16737365217-1704-1 -> origin/update-audio-commit-hash/16737365217-1704-1 2025-08-14T21:49:40.5201466Z * [new branch] update-audio-commit-hash/16791960928-1711-1 -> origin/update-audio-commit-hash/16791960928-1711-1 2025-08-14T21:49:40.5202267Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-08-14T21:49:40.5203061Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-08-14T21:49:40.5203874Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-08-14T21:49:40.5204564Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-08-14T21:49:40.5592655Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-08-14T21:49:40.5593584Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-08-14T21:49:40.5594425Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-08-14T21:49:40.5595221Z * [new branch] update-vllm-commit-hash/16431348808-1673-1 -> origin/update-vllm-commit-hash/16431348808-1673-1 2025-08-14T21:49:40.5596015Z * [new branch] update-vllm-commit-hash/16484773233-1682-1 -> origin/update-vllm-commit-hash/16484773233-1682-1 2025-08-14T21:49:40.5596791Z * [new branch] update-vllm-commit-hash/16510774365-1683-1 -> origin/update-vllm-commit-hash/16510774365-1683-1 2025-08-14T21:49:40.5597581Z * [new branch] update-vllm-commit-hash/16534031105-1684-1 -> origin/update-vllm-commit-hash/16534031105-1684-1 2025-08-14T21:49:40.5598512Z * [new branch] update-vllm-commit-hash/16545403308-1687-1 -> origin/update-vllm-commit-hash/16545403308-1687-1 2025-08-14T21:49:40.5599295Z * [new branch] update-vllm-commit-hash/16557202787-1688-1 -> origin/update-vllm-commit-hash/16557202787-1688-1 2025-08-14T21:49:40.5600081Z * [new branch] update-vllm-commit-hash/16583472358-1693-1 -> origin/update-vllm-commit-hash/16583472358-1693-1 2025-08-14T21:49:40.5600858Z * [new branch] update-vllm-commit-hash/16663082088-1700-1 -> origin/update-vllm-commit-hash/16663082088-1700-1 2025-08-14T21:49:40.5601647Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-08-14T21:49:40.5602425Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-08-14T21:49:40.5603208Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-08-14T21:49:40.5603982Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-08-14T21:49:40.5604761Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-08-14T21:49:40.5605523Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-08-14T21:49:40.5606280Z * [new branch] update-xla-commit-hash/16717126778-197-1 -> origin/update-xla-commit-hash/16717126778-197-1 2025-08-14T21:49:40.5607018Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-08-14T21:49:40.5607780Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-08-14T21:49:40.5608515Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-08-14T21:49:40.5609054Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-08-14T21:49:40.5609620Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-08-14T21:49:40.5610167Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-08-14T21:49:40.5610742Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-08-14T21:49:40.5611276Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-08-14T21:49:40.5611831Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-08-14T21:49:40.5612330Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-08-14T21:49:40.5612745Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-08-14T21:49:40.5613156Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-08-14T21:49:40.5613559Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-08-14T21:49:40.5613944Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-08-14T21:49:40.5614339Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-08-14T21:49:40.5614724Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-08-14T21:49:40.5615140Z * [new branch] validate_fn -> origin/validate_fn 2025-08-14T21:49:40.5615590Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-08-14T21:49:40.5616061Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-08-14T21:49:40.5616516Z * [new branch] viable/strict -> origin/viable/strict 2025-08-14T21:49:40.5617035Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-08-14T21:49:40.5617464Z * [new branch] vllmpin -> origin/vllmpin 2025-08-14T21:49:40.6037662Z * [new branch] vllmpintest -> origin/vllmpintest 2025-08-14T21:49:40.6038154Z * [new branch] wdvr-patch-1 -> origin/wdvr-patch-1 2025-08-14T21:49:40.6038613Z * [new branch] wdvr-patch-2 -> origin/wdvr-patch-2 2025-08-14T21:49:40.6039105Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-08-14T21:49:40.6039629Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-08-14T21:49:40.6040101Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-08-14T21:49:40.6040579Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-08-14T21:49:40.6067743Z * [new branch] whc/flight -> origin/whc/flight 2025-08-14T21:49:40.6068392Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-08-14T21:49:40.6068836Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-08-14T21:49:40.6069279Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-08-14T21:49:40.6069717Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-08-14T21:49:40.6070140Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-08-14T21:49:40.6070558Z * [new branch] whc/uneven -> origin/whc/uneven 2025-08-14T21:49:40.6070995Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-08-14T21:49:40.6071465Z * [new branch] win_warnings -> origin/win_warnings 2025-08-14T21:49:40.6072081Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-08-14T21:49:40.6072617Z * [new branch] wwen/programming-model-2.8 -> origin/wwen/programming-model-2.8 2025-08-14T21:49:40.6073128Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-08-14T21:49:40.6073572Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-08-14T21:49:40.6074277Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-08-14T21:49:40.6074985Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-08-14T21:49:40.6075472Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-08-14T21:49:40.6075940Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-08-14T21:49:40.6076375Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-08-14T21:49:40.6076836Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-08-14T21:49:40.6077315Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-08-14T21:49:40.6077795Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-08-14T21:49:40.6078260Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-08-14T21:49:40.6078729Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-08-14T21:49:40.6079236Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-08-14T21:49:40.6079717Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-08-14T21:49:40.6080155Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-08-14T21:49:40.6080601Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-08-14T21:49:40.6081141Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-08-14T21:49:40.6081612Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-08-14T21:49:40.6082078Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-08-14T21:49:40.6082603Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-08-14T21:49:40.6083178Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-08-14T21:49:40.6083700Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-08-14T21:49:40.6084183Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-08-14T21:49:40.6084641Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-08-14T21:49:40.6085170Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-08-14T21:49:40.6085680Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-08-14T21:49:40.6086172Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-08-14T21:49:40.6086676Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-08-14T21:49:40.6087155Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-08-14T21:49:40.6087640Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-08-14T21:49:40.6469791Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-08-14T21:49:40.6470274Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-08-14T21:49:40.6470742Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-08-14T21:49:40.6471383Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-08-14T21:49:40.6471960Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-08-14T21:49:40.6472631Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-08-14T21:49:40.6473252Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-08-14T21:49:40.6473836Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-08-14T21:49:40.6474386Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-08-14T21:49:40.6475104Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-14T21:49:40.6476005Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-14T21:49:40.6476695Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-08-14T21:49:40.6477190Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-08-14T21:49:40.6477663Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-08-14T21:49:40.6478108Z * [new branch] xmfan/test -> origin/xmfan/test 2025-08-14T21:49:40.6478642Z * [new branch] y-do-we-have-7-build-systems -> origin/y-do-we-have-7-build-systems 2025-08-14T21:49:40.6479216Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-08-14T21:49:40.6479763Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-08-14T21:49:40.6480325Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-08-14T21:49:40.6480984Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-08-14T21:49:40.6481537Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-08-14T21:49:40.6482074Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-08-14T21:49:40.6482565Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-08-14T21:49:40.6483103Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-08-14T21:49:40.6483630Z * [new branch] zainr/fixlint -> origin/zainr/fixlint 2025-08-14T21:49:40.6484114Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-08-14T21:49:40.6484607Z * [new branch] zainr/lint-py3.9 -> origin/zainr/lint-py3.9 2025-08-14T21:49:40.6485095Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-08-14T21:49:40.6485609Z * [new branch] zainr/pre-push-hooks -> origin/zainr/pre-push-hooks 2025-08-14T21:49:40.6486148Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-08-14T21:49:40.6486657Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-08-14T21:49:40.6487105Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-08-14T21:49:40.6487582Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-08-14T21:49:40.6488059Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-08-14T21:49:40.6488530Z * [new branch] zainr/vs-aarch64 -> origin/zainr/vs-aarch64 2025-08-14T21:49:40.6489006Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-08-14T21:49:40.6489466Z * [new branch] zb2p -> origin/zb2p 2025-08-14T21:49:40.6489993Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-08-14T21:49:40.6490515Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-08-14T21:49:40.6491066Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-08-14T21:49:40.6491575Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-08-14T21:49:40.6492093Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-08-14T21:49:40.6492584Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-08-14T21:49:40.6493063Z * [new branch] zxiiro/get-hardware -> origin/zxiiro/get-hardware 2025-08-14T21:49:40.6493539Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-08-14T21:49:40.6791188Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-08-14T21:49:40.6792079Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-08-14T21:49:40.6792798Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-08-14T21:49:40.6793231Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-08-14T21:49:40.6793673Z * [new tag] ciflow/binaries/143959 -> ciflow/binaries/143959 2025-08-14T21:49:40.6794112Z * [new tag] ciflow/binaries/154595 -> ciflow/binaries/154595 2025-08-14T21:49:40.6794538Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-08-14T21:49:40.6794973Z * [new tag] ciflow/binaries/156712 -> ciflow/binaries/156712 2025-08-14T21:49:40.6795402Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-08-14T21:49:40.6796499Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-08-14T21:49:40.6796996Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-08-14T21:49:40.6797491Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-08-14T21:49:40.6797931Z * [new tag] ciflow/binaries/158623 -> ciflow/binaries/158623 2025-08-14T21:49:40.6798367Z * [new tag] ciflow/binaries/159827 -> ciflow/binaries/159827 2025-08-14T21:49:40.6798805Z * [new tag] ciflow/binaries/159869 -> ciflow/binaries/159869 2025-08-14T21:49:40.6799237Z * [new tag] ciflow/binaries/160593 -> ciflow/binaries/160593 2025-08-14T21:49:40.6799747Z * [new tag] ciflow/binaries_libtorch/143959 -> ciflow/binaries_libtorch/143959 2025-08-14T21:49:40.6800299Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-08-14T21:49:40.6800852Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-08-14T21:49:40.6801376Z * [new tag] ciflow/binaries_wheel/143959 -> ciflow/binaries_wheel/143959 2025-08-14T21:49:40.6801870Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-08-14T21:49:40.6802366Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-08-14T21:49:40.6802911Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-08-14T21:49:40.6803443Z * [new tag] ciflow/binaries_wheel/160301 -> ciflow/binaries_wheel/160301 2025-08-14T21:49:40.6803948Z * [new tag] ciflow/binaries_wheel/160496 -> ciflow/binaries_wheel/160496 2025-08-14T21:49:40.6804453Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-08-14T21:49:40.6804966Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-08-14T21:49:40.6805547Z * [new tag] ciflow/h100-symm-mem/155923 -> ciflow/h100-symm-mem/155923 2025-08-14T21:49:40.6806009Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-08-14T21:49:40.6806476Z * [new tag] ciflow/h100-symm-mem/159118 -> ciflow/h100-symm-mem/159118 2025-08-14T21:49:40.6806938Z * [new tag] ciflow/h100-symm-mem/159562 -> ciflow/h100-symm-mem/159562 2025-08-14T21:49:40.6807404Z * [new tag] ciflow/h100-symm-mem/159889 -> ciflow/h100-symm-mem/159889 2025-08-14T21:49:40.6807838Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-08-14T21:49:40.6808249Z * [new tag] ciflow/h100/160450 -> ciflow/h100/160450 2025-08-14T21:49:40.6808695Z * [new tag] ciflow/h100/160480 -> ciflow/h100/160480 2025-08-14T21:49:40.6809132Z * [new tag] ciflow/h100/160614 -> ciflow/h100/160614 2025-08-14T21:49:40.6809766Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-08-14T21:49:40.6810588Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/160538 -> ciflow/inductor-perf-test-nightly-rocm/160538 2025-08-14T21:49:40.6811448Z * [new tag] ciflow/inductor-perf-test-nightly-x86-zen/156599 -> ciflow/inductor-perf-test-nightly-x86-zen/156599 2025-08-14T21:49:40.6812179Z * [new tag] ciflow/inductor-periodic/160406 -> ciflow/inductor-periodic/160406 2025-08-14T21:49:40.6812741Z * [new tag] ciflow/inductor-periodic/160538 -> ciflow/inductor-periodic/160538 2025-08-14T21:49:40.6813267Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-08-14T21:49:40.6813761Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-08-14T21:49:40.6814373Z * [new tag] ciflow/inductor-rocm/160073 -> ciflow/inductor-rocm/160073 2025-08-14T21:49:40.6814897Z * [new tag] ciflow/inductor-rocm/160538 -> ciflow/inductor-rocm/160538 2025-08-14T21:49:40.6815363Z * [new tag] ciflow/inductor/134881 -> ciflow/inductor/134881 2025-08-14T21:49:40.7096852Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-08-14T21:49:40.7097309Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-08-14T21:49:40.7097741Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-08-14T21:49:40.7098178Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-08-14T21:49:40.7098609Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-08-14T21:49:40.7099057Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-08-14T21:49:40.7099499Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-08-14T21:49:40.7099927Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-08-14T21:49:40.7100372Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-08-14T21:49:40.7100804Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-08-14T21:49:40.7101244Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-08-14T21:49:40.7101669Z * [new tag] ciflow/inductor/152198 -> ciflow/inductor/152198 2025-08-14T21:49:40.7102111Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-08-14T21:49:40.7102547Z * [new tag] ciflow/inductor/153966 -> ciflow/inductor/153966 2025-08-14T21:49:40.7102975Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-08-14T21:49:40.7103955Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-08-14T21:49:40.7104429Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-08-14T21:49:40.7104864Z * [new tag] ciflow/inductor/155072 -> ciflow/inductor/155072 2025-08-14T21:49:40.7105301Z * [new tag] ciflow/inductor/155152 -> ciflow/inductor/155152 2025-08-14T21:49:40.7105726Z * [new tag] ciflow/inductor/155153 -> ciflow/inductor/155153 2025-08-14T21:49:40.7106168Z * [new tag] ciflow/inductor/155154 -> ciflow/inductor/155154 2025-08-14T21:49:40.7106611Z * [new tag] ciflow/inductor/155501 -> ciflow/inductor/155501 2025-08-14T21:49:40.7107039Z * [new tag] ciflow/inductor/155502 -> ciflow/inductor/155502 2025-08-14T21:49:40.7107472Z * [new tag] ciflow/inductor/155503 -> ciflow/inductor/155503 2025-08-14T21:49:40.7107969Z * [new tag] ciflow/inductor/155504 -> ciflow/inductor/155504 2025-08-14T21:49:40.7108423Z * [new tag] ciflow/inductor/155557 -> ciflow/inductor/155557 2025-08-14T21:49:40.7108856Z * [new tag] ciflow/inductor/155608 -> ciflow/inductor/155608 2025-08-14T21:49:40.7109306Z * [new tag] ciflow/inductor/155923 -> ciflow/inductor/155923 2025-08-14T21:49:40.7109750Z * [new tag] ciflow/inductor/155928 -> ciflow/inductor/155928 2025-08-14T21:49:40.7110184Z * [new tag] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-08-14T21:49:40.7110622Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-08-14T21:49:40.7111049Z * [new tag] ciflow/inductor/156851 -> ciflow/inductor/156851 2025-08-14T21:49:40.7111493Z * [new tag] ciflow/inductor/156967 -> ciflow/inductor/156967 2025-08-14T21:49:40.7111932Z * [new tag] ciflow/inductor/157148 -> ciflow/inductor/157148 2025-08-14T21:49:40.7112466Z * [new tag] ciflow/inductor/157149 -> ciflow/inductor/157149 2025-08-14T21:49:40.7112907Z * [new tag] ciflow/inductor/157152 -> ciflow/inductor/157152 2025-08-14T21:49:40.7113340Z * [new tag] ciflow/inductor/157542 -> ciflow/inductor/157542 2025-08-14T21:49:40.7113781Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-08-14T21:49:40.7114223Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-08-14T21:49:40.7114653Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-08-14T21:49:40.7115106Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-08-14T21:49:40.7115536Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-08-14T21:49:40.7115973Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-08-14T21:49:40.7116409Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-08-14T21:49:40.7116849Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-08-14T21:49:40.7117285Z * [new tag] ciflow/inductor/157971 -> ciflow/inductor/157971 2025-08-14T21:49:40.7117717Z * [new tag] ciflow/inductor/157994 -> ciflow/inductor/157994 2025-08-14T21:49:40.7118155Z * [new tag] ciflow/inductor/158061 -> ciflow/inductor/158061 2025-08-14T21:49:40.7118588Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-08-14T21:49:40.7413745Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-08-14T21:49:40.7414241Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-08-14T21:49:40.7414679Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-08-14T21:49:40.7415263Z * [new tag] ciflow/inductor/158168 -> ciflow/inductor/158168 2025-08-14T21:49:40.7415701Z * [new tag] ciflow/inductor/158250 -> ciflow/inductor/158250 2025-08-14T21:49:40.7416147Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-08-14T21:49:40.7416593Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-08-14T21:49:40.7417024Z * [new tag] ciflow/inductor/158647 -> ciflow/inductor/158647 2025-08-14T21:49:40.7417472Z * [new tag] ciflow/inductor/158914 -> ciflow/inductor/158914 2025-08-14T21:49:40.7417924Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-08-14T21:49:40.7418375Z * [new tag] ciflow/inductor/158987 -> ciflow/inductor/158987 2025-08-14T21:49:40.7418821Z * [new tag] ciflow/inductor/159009 -> ciflow/inductor/159009 2025-08-14T21:49:40.7419273Z * [new tag] ciflow/inductor/159010 -> ciflow/inductor/159010 2025-08-14T21:49:40.7419711Z * [new tag] ciflow/inductor/159093 -> ciflow/inductor/159093 2025-08-14T21:49:40.7420198Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-08-14T21:49:40.7420678Z * [new tag] ciflow/inductor/159197 -> ciflow/inductor/159197 2025-08-14T21:49:40.7421162Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-08-14T21:49:40.7421589Z * [new tag] ciflow/inductor/159281 -> ciflow/inductor/159281 2025-08-14T21:49:40.7422027Z * [new tag] ciflow/inductor/159329 -> ciflow/inductor/159329 2025-08-14T21:49:40.7422450Z * [new tag] ciflow/inductor/159361 -> ciflow/inductor/159361 2025-08-14T21:49:40.7422886Z * [new tag] ciflow/inductor/159365 -> ciflow/inductor/159365 2025-08-14T21:49:40.7423409Z * [new tag] ciflow/inductor/159366 -> ciflow/inductor/159366 2025-08-14T21:49:40.7423856Z * [new tag] ciflow/inductor/159367 -> ciflow/inductor/159367 2025-08-14T21:49:40.7424294Z * [new tag] ciflow/inductor/159368 -> ciflow/inductor/159368 2025-08-14T21:49:40.7424721Z * [new tag] ciflow/inductor/159473 -> ciflow/inductor/159473 2025-08-14T21:49:40.7425166Z * [new tag] ciflow/inductor/159483 -> ciflow/inductor/159483 2025-08-14T21:49:40.7425592Z * [new tag] ciflow/inductor/159508 -> ciflow/inductor/159508 2025-08-14T21:49:40.7426028Z * [new tag] ciflow/inductor/159523 -> ciflow/inductor/159523 2025-08-14T21:49:40.7426464Z * [new tag] ciflow/inductor/159678 -> ciflow/inductor/159678 2025-08-14T21:49:40.7426887Z * [new tag] ciflow/inductor/159691 -> ciflow/inductor/159691 2025-08-14T21:49:40.7427333Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-08-14T21:49:40.7427850Z * [new tag] ciflow/inductor/159786 -> ciflow/inductor/159786 2025-08-14T21:49:40.7428293Z * [new tag] ciflow/inductor/159817 -> ciflow/inductor/159817 2025-08-14T21:49:40.7428720Z * [new tag] ciflow/inductor/159842 -> ciflow/inductor/159842 2025-08-14T21:49:40.7429159Z * [new tag] ciflow/inductor/159864 -> ciflow/inductor/159864 2025-08-14T21:49:40.7429591Z * [new tag] ciflow/inductor/159865 -> ciflow/inductor/159865 2025-08-14T21:49:40.7430023Z * [new tag] ciflow/inductor/159869 -> ciflow/inductor/159869 2025-08-14T21:49:40.7430460Z * [new tag] ciflow/inductor/159875 -> ciflow/inductor/159875 2025-08-14T21:49:40.7430890Z * [new tag] ciflow/inductor/159889 -> ciflow/inductor/159889 2025-08-14T21:49:40.7431414Z * [new tag] ciflow/inductor/159902 -> ciflow/inductor/159902 2025-08-14T21:49:40.7431859Z * [new tag] ciflow/inductor/159923 -> ciflow/inductor/159923 2025-08-14T21:49:40.7432286Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-08-14T21:49:40.7432723Z * [new tag] ciflow/inductor/160004 -> ciflow/inductor/160004 2025-08-14T21:49:40.7433157Z * [new tag] ciflow/inductor/160080 -> ciflow/inductor/160080 2025-08-14T21:49:40.7433598Z * [new tag] ciflow/inductor/160108 -> ciflow/inductor/160108 2025-08-14T21:49:40.7434040Z * [new tag] ciflow/inductor/160109 -> ciflow/inductor/160109 2025-08-14T21:49:40.7434467Z * [new tag] ciflow/inductor/160111 -> ciflow/inductor/160111 2025-08-14T21:49:40.7434897Z * [new tag] ciflow/inductor/160113 -> ciflow/inductor/160113 2025-08-14T21:49:40.7435332Z * [new tag] ciflow/inductor/160127 -> ciflow/inductor/160127 2025-08-14T21:49:40.7751781Z * [new tag] ciflow/inductor/160131 -> ciflow/inductor/160131 2025-08-14T21:49:40.7752252Z * [new tag] ciflow/inductor/160132 -> ciflow/inductor/160132 2025-08-14T21:49:40.7752682Z * [new tag] ciflow/inductor/160136 -> ciflow/inductor/160136 2025-08-14T21:49:40.7753124Z * [new tag] ciflow/inductor/160138 -> ciflow/inductor/160138 2025-08-14T21:49:40.7753556Z * [new tag] ciflow/inductor/160151 -> ciflow/inductor/160151 2025-08-14T21:49:40.7753991Z * [new tag] ciflow/inductor/160152 -> ciflow/inductor/160152 2025-08-14T21:49:40.7754432Z * [new tag] ciflow/inductor/160154 -> ciflow/inductor/160154 2025-08-14T21:49:40.7754855Z * [new tag] ciflow/inductor/160156 -> ciflow/inductor/160156 2025-08-14T21:49:40.7755425Z * [new tag] ciflow/inductor/160161 -> ciflow/inductor/160161 2025-08-14T21:49:40.7755866Z * [new tag] ciflow/inductor/160166 -> ciflow/inductor/160166 2025-08-14T21:49:40.7756314Z * [new tag] ciflow/inductor/160168 -> ciflow/inductor/160168 2025-08-14T21:49:40.7756756Z * [new tag] ciflow/inductor/160174 -> ciflow/inductor/160174 2025-08-14T21:49:40.7757192Z * [new tag] ciflow/inductor/160181 -> ciflow/inductor/160181 2025-08-14T21:49:40.7757622Z * [new tag] ciflow/inductor/160183 -> ciflow/inductor/160183 2025-08-14T21:49:40.7758046Z * [new tag] ciflow/inductor/160190 -> ciflow/inductor/160190 2025-08-14T21:49:40.7758482Z * [new tag] ciflow/inductor/160198 -> ciflow/inductor/160198 2025-08-14T21:49:40.7758925Z * [new tag] ciflow/inductor/160201 -> ciflow/inductor/160201 2025-08-14T21:49:40.7759412Z * [new tag] ciflow/inductor/160209 -> ciflow/inductor/160209 2025-08-14T21:49:40.7759894Z * [new tag] ciflow/inductor/160218 -> ciflow/inductor/160218 2025-08-14T21:49:40.7760317Z * [new tag] ciflow/inductor/160239 -> ciflow/inductor/160239 2025-08-14T21:49:40.7760746Z * [new tag] ciflow/inductor/160250 -> ciflow/inductor/160250 2025-08-14T21:49:40.7761177Z * [new tag] ciflow/inductor/160253 -> ciflow/inductor/160253 2025-08-14T21:49:40.7761619Z * [new tag] ciflow/inductor/160266 -> ciflow/inductor/160266 2025-08-14T21:49:40.7762053Z * [new tag] ciflow/inductor/160282 -> ciflow/inductor/160282 2025-08-14T21:49:40.7762488Z * [new tag] ciflow/inductor/160298 -> ciflow/inductor/160298 2025-08-14T21:49:40.7762919Z * [new tag] ciflow/inductor/160301 -> ciflow/inductor/160301 2025-08-14T21:49:40.7763442Z * [new tag] ciflow/inductor/160310 -> ciflow/inductor/160310 2025-08-14T21:49:40.7763887Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-08-14T21:49:40.7764328Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-08-14T21:49:40.7764762Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-08-14T21:49:40.7765199Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-08-14T21:49:40.7765628Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-08-14T21:49:40.7766074Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-08-14T21:49:40.7766511Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-08-14T21:49:40.7766936Z * [new tag] ciflow/inductor/160351 -> ciflow/inductor/160351 2025-08-14T21:49:40.7767379Z * [new tag] ciflow/inductor/160353 -> ciflow/inductor/160353 2025-08-14T21:49:40.7767807Z * [new tag] ciflow/inductor/160362 -> ciflow/inductor/160362 2025-08-14T21:49:40.7768246Z * [new tag] ciflow/inductor/160363 -> ciflow/inductor/160363 2025-08-14T21:49:40.7768671Z * [new tag] ciflow/inductor/160364 -> ciflow/inductor/160364 2025-08-14T21:49:40.7769101Z * [new tag] ciflow/inductor/160365 -> ciflow/inductor/160365 2025-08-14T21:49:40.7769543Z * [new tag] ciflow/inductor/160366 -> ciflow/inductor/160366 2025-08-14T21:49:40.7769980Z * [new tag] ciflow/inductor/160367 -> ciflow/inductor/160367 2025-08-14T21:49:40.7770415Z * [new tag] ciflow/inductor/160368 -> ciflow/inductor/160368 2025-08-14T21:49:40.7770842Z * [new tag] ciflow/inductor/160369 -> ciflow/inductor/160369 2025-08-14T21:49:40.7771376Z * [new tag] ciflow/inductor/160371 -> ciflow/inductor/160371 2025-08-14T21:49:40.7771819Z * [new tag] ciflow/inductor/160374 -> ciflow/inductor/160374 2025-08-14T21:49:40.7772250Z * [new tag] ciflow/inductor/160375 -> ciflow/inductor/160375 2025-08-14T21:49:40.7772690Z * [new tag] ciflow/inductor/160377 -> ciflow/inductor/160377 2025-08-14T21:49:40.7773119Z * [new tag] ciflow/inductor/160380 -> ciflow/inductor/160380 2025-08-14T21:49:40.7773564Z * [new tag] ciflow/inductor/160381 -> ciflow/inductor/160381 2025-08-14T21:49:40.8069377Z * [new tag] ciflow/inductor/160383 -> ciflow/inductor/160383 2025-08-14T21:49:40.8069902Z * [new tag] ciflow/inductor/160394 -> ciflow/inductor/160394 2025-08-14T21:49:40.8070350Z * [new tag] ciflow/inductor/160401 -> ciflow/inductor/160401 2025-08-14T21:49:40.8070809Z * [new tag] ciflow/inductor/160402 -> ciflow/inductor/160402 2025-08-14T21:49:40.8071258Z * [new tag] ciflow/inductor/160403 -> ciflow/inductor/160403 2025-08-14T21:49:40.8071693Z * [new tag] ciflow/inductor/160424 -> ciflow/inductor/160424 2025-08-14T21:49:40.8072122Z * [new tag] ciflow/inductor/160426 -> ciflow/inductor/160426 2025-08-14T21:49:40.8072558Z * [new tag] ciflow/inductor/160431 -> ciflow/inductor/160431 2025-08-14T21:49:40.8072989Z * [new tag] ciflow/inductor/160448 -> ciflow/inductor/160448 2025-08-14T21:49:40.8073433Z * [new tag] ciflow/inductor/160450 -> ciflow/inductor/160450 2025-08-14T21:49:40.8073868Z * [new tag] ciflow/inductor/160455 -> ciflow/inductor/160455 2025-08-14T21:49:40.8074295Z * [new tag] ciflow/inductor/160456 -> ciflow/inductor/160456 2025-08-14T21:49:40.8074923Z * [new tag] ciflow/inductor/160461 -> ciflow/inductor/160461 2025-08-14T21:49:40.8075408Z * [new tag] ciflow/inductor/160462 -> ciflow/inductor/160462 2025-08-14T21:49:40.8075847Z * [new tag] ciflow/inductor/160467 -> ciflow/inductor/160467 2025-08-14T21:49:40.8076288Z * [new tag] ciflow/inductor/160470 -> ciflow/inductor/160470 2025-08-14T21:49:40.8076713Z * [new tag] ciflow/inductor/160473 -> ciflow/inductor/160473 2025-08-14T21:49:40.8077147Z * [new tag] ciflow/inductor/160476 -> ciflow/inductor/160476 2025-08-14T21:49:40.8077579Z * [new tag] ciflow/inductor/160480 -> ciflow/inductor/160480 2025-08-14T21:49:40.8078013Z * [new tag] ciflow/inductor/160481 -> ciflow/inductor/160481 2025-08-14T21:49:40.8078446Z * [new tag] ciflow/inductor/160482 -> ciflow/inductor/160482 2025-08-14T21:49:40.8078894Z * [new tag] ciflow/inductor/160483 -> ciflow/inductor/160483 2025-08-14T21:49:40.8079328Z * [new tag] ciflow/inductor/160485 -> ciflow/inductor/160485 2025-08-14T21:49:40.8079757Z * [new tag] ciflow/inductor/160486 -> ciflow/inductor/160486 2025-08-14T21:49:40.8080193Z * [new tag] ciflow/inductor/160503 -> ciflow/inductor/160503 2025-08-14T21:49:40.8080616Z * [new tag] ciflow/inductor/160510 -> ciflow/inductor/160510 2025-08-14T21:49:40.8081061Z * [new tag] ciflow/inductor/160527 -> ciflow/inductor/160527 2025-08-14T21:49:40.8081501Z * [new tag] ciflow/inductor/160530 -> ciflow/inductor/160530 2025-08-14T21:49:40.8081944Z * [new tag] ciflow/inductor/160531 -> ciflow/inductor/160531 2025-08-14T21:49:40.8082378Z * [new tag] ciflow/inductor/160538 -> ciflow/inductor/160538 2025-08-14T21:49:40.8082904Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-08-14T21:49:40.8083346Z * [new tag] ciflow/inductor/160540 -> ciflow/inductor/160540 2025-08-14T21:49:40.8083774Z * [new tag] ciflow/inductor/160548 -> ciflow/inductor/160548 2025-08-14T21:49:40.8084206Z * [new tag] ciflow/inductor/160552 -> ciflow/inductor/160552 2025-08-14T21:49:40.8084651Z * [new tag] ciflow/inductor/160561 -> ciflow/inductor/160561 2025-08-14T21:49:40.8085077Z * [new tag] ciflow/inductor/160576 -> ciflow/inductor/160576 2025-08-14T21:49:40.8085513Z * [new tag] ciflow/inductor/160578 -> ciflow/inductor/160578 2025-08-14T21:49:40.8085939Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-08-14T21:49:40.8086374Z * [new tag] ciflow/inductor/160583 -> ciflow/inductor/160583 2025-08-14T21:49:40.8086825Z * [new tag] ciflow/inductor/160589 -> ciflow/inductor/160589 2025-08-14T21:49:40.8087253Z * [new tag] ciflow/inductor/160590 -> ciflow/inductor/160590 2025-08-14T21:49:40.8087687Z * [new tag] ciflow/inductor/160592 -> ciflow/inductor/160592 2025-08-14T21:49:40.8088118Z * [new tag] ciflow/inductor/160596 -> ciflow/inductor/160596 2025-08-14T21:49:40.8088560Z * [new tag] ciflow/inductor/160601 -> ciflow/inductor/160601 2025-08-14T21:49:40.8088998Z * [new tag] ciflow/inductor/160607 -> ciflow/inductor/160607 2025-08-14T21:49:40.8089419Z * [new tag] ciflow/inductor/160608 -> ciflow/inductor/160608 2025-08-14T21:49:40.8089848Z * [new tag] ciflow/inductor/160611 -> ciflow/inductor/160611 2025-08-14T21:49:40.8090273Z * [new tag] ciflow/inductor/160614 -> ciflow/inductor/160614 2025-08-14T21:49:40.8090712Z * [new tag] ciflow/inductor/160616 -> ciflow/inductor/160616 2025-08-14T21:49:40.8385019Z * [new tag] ciflow/inductor/160619 -> ciflow/inductor/160619 2025-08-14T21:49:40.8385507Z * [new tag] ciflow/inductor/160625 -> ciflow/inductor/160625 2025-08-14T21:49:40.8386001Z * [new tag] ciflow/inductor/160635 -> ciflow/inductor/160635 2025-08-14T21:49:40.8386523Z * [new tag] ciflow/inductor/160649 -> ciflow/inductor/160649 2025-08-14T21:49:40.8387012Z * [new tag] ciflow/inductor/160658 -> ciflow/inductor/160658 2025-08-14T21:49:40.8387540Z * [new tag] ciflow/inductor/160662 -> ciflow/inductor/160662 2025-08-14T21:49:40.8388055Z * [new tag] ciflow/inductor/160668 -> ciflow/inductor/160668 2025-08-14T21:49:40.8388569Z * [new tag] ciflow/inductor/160669 -> ciflow/inductor/160669 2025-08-14T21:49:40.8389041Z * [new tag] ciflow/inductor/160670 -> ciflow/inductor/160670 2025-08-14T21:49:40.8389534Z * [new tag] ciflow/inductor/160671 -> ciflow/inductor/160671 2025-08-14T21:49:40.8390050Z * [new tag] ciflow/inductor/160677 -> ciflow/inductor/160677 2025-08-14T21:49:40.8390538Z * [new tag] ciflow/inductor/160679 -> ciflow/inductor/160679 2025-08-14T21:49:40.8391035Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-08-14T21:49:40.8391568Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-08-14T21:49:40.8392152Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-08-14T21:49:40.8392751Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-08-14T21:49:40.8393348Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-08-14T21:49:40.8393840Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-08-14T21:49:40.8394419Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-08-14T21:49:40.8394907Z * [new tag] ciflow/linux-aarch64/160299 -> ciflow/linux-aarch64/160299 2025-08-14T21:49:40.8395375Z * [new tag] ciflow/linux-aarch64/160301 -> ciflow/linux-aarch64/160301 2025-08-14T21:49:40.8395825Z * [new tag] ciflow/mps/155923 -> ciflow/mps/155923 2025-08-14T21:49:40.8396229Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-08-14T21:49:40.8396625Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-08-14T21:49:40.8397042Z * [new tag] ciflow/mps/160541 -> ciflow/mps/160541 2025-08-14T21:49:40.8397461Z * [new tag] ciflow/nightly/156049 -> ciflow/nightly/156049 2025-08-14T21:49:40.8397886Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-08-14T21:49:40.8398400Z * [new tag] ciflow/op-benchmark/157994 -> ciflow/op-benchmark/157994 2025-08-14T21:49:40.8398990Z * [new tag] ciflow/periodic-rocm-mi300/139971 -> ciflow/periodic-rocm-mi300/139971 2025-08-14T21:49:40.8399645Z * [new tag] ciflow/periodic-rocm-mi300/160073 -> ciflow/periodic-rocm-mi300/160073 2025-08-14T21:49:40.8400226Z * [new tag] ciflow/periodic-rocm-mi300/160538 -> ciflow/periodic-rocm-mi300/160538 2025-08-14T21:49:40.8400756Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-08-14T21:49:40.8401221Z * [new tag] ciflow/periodic/131296 -> ciflow/periodic/131296 2025-08-14T21:49:40.8401655Z * [new tag] ciflow/periodic/139971 -> ciflow/periodic/139971 2025-08-14T21:49:40.8402099Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-08-14T21:49:40.8402623Z * [new tag] ciflow/periodic/154595 -> ciflow/periodic/154595 2025-08-14T21:49:40.8403070Z * [new tag] ciflow/periodic/156703 -> ciflow/periodic/156703 2025-08-14T21:49:40.8403517Z * [new tag] ciflow/periodic/160201 -> ciflow/periodic/160201 2025-08-14T21:49:40.8403958Z * [new tag] ciflow/periodic/160424 -> ciflow/periodic/160424 2025-08-14T21:49:40.8404444Z * [new tag] ciflow/periodic/160538 -> ciflow/periodic/160538 2025-08-14T21:49:40.8405237Z * [new tag] ciflow/periodic/1febab2a89302464f6c7d69cfbef7a24c421ea65 -> ciflow/periodic/1febab2a89302464f6c7d69cfbef7a24c421ea65 2025-08-14T21:49:40.8405989Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-08-14T21:49:40.8406726Z * [new tag] ciflow/periodic/2ee22e435131369a7e4f8cc4732579acc29a941b -> ciflow/periodic/2ee22e435131369a7e4f8cc4732579acc29a941b 2025-08-14T21:49:40.8407456Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-08-14T21:49:40.8407913Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-08-14T21:49:40.8408353Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-08-14T21:49:40.8708713Z * [new tag] ciflow/periodic/4a773e1e867f28a8ff0b15203e5cd9548f74fcee -> ciflow/periodic/4a773e1e867f28a8ff0b15203e5cd9548f74fcee 2025-08-14T21:49:40.8709729Z * [new tag] ciflow/periodic/5f5f508aa836a46dfe88857fb223049616b94e93 -> ciflow/periodic/5f5f508aa836a46dfe88857fb223049616b94e93 2025-08-14T21:49:40.8710470Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-08-14T21:49:40.8710999Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-08-14T21:49:40.8711520Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-08-14T21:49:40.8712162Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-08-14T21:49:40.8712944Z * [new tag] ciflow/periodic/d7114f05b10de8e6de81ffc567d63944c3117d51 -> ciflow/periodic/d7114f05b10de8e6de81ffc567d63944c3117d51 2025-08-14T21:49:40.8713702Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-08-14T21:49:40.8714236Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-08-14T21:49:40.8714765Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-08-14T21:49:40.8715235Z * [new tag] ciflow/rocm-mi300/151360 -> ciflow/rocm-mi300/151360 2025-08-14T21:49:40.8715683Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-08-14T21:49:40.8716117Z * [new tag] ciflow/rocm-mi300/160073 -> ciflow/rocm-mi300/160073 2025-08-14T21:49:40.8716589Z * [new tag] ciflow/rocm-mi300/160468 -> ciflow/rocm-mi300/160468 2025-08-14T21:49:40.8717029Z * [new tag] ciflow/rocm-mi300/160538 -> ciflow/rocm-mi300/160538 2025-08-14T21:49:40.8717469Z * [new tag] ciflow/rocm-mi355/160215 -> ciflow/rocm-mi355/160215 2025-08-14T21:49:40.8717896Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-08-14T21:49:40.8718293Z * [new tag] ciflow/rocm/151360 -> ciflow/rocm/151360 2025-08-14T21:49:40.8718694Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-08-14T21:49:40.8719087Z * [new tag] ciflow/rocm/154864 -> ciflow/rocm/154864 2025-08-14T21:49:40.8719478Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-08-14T21:49:40.8719875Z * [new tag] ciflow/rocm/158219 -> ciflow/rocm/158219 2025-08-14T21:49:40.8720361Z * [new tag] ciflow/rocm/158220 -> ciflow/rocm/158220 2025-08-14T21:49:40.8720763Z * [new tag] ciflow/rocm/158224 -> ciflow/rocm/158224 2025-08-14T21:49:40.8721160Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-08-14T21:49:40.8721583Z * [new tag] ciflow/rocm/160215 -> ciflow/rocm/160215 2025-08-14T21:49:40.8721995Z * [new tag] ciflow/rocm/160468 -> ciflow/rocm/160468 2025-08-14T21:49:40.8722390Z * [new tag] ciflow/rocm/160538 -> ciflow/rocm/160538 2025-08-14T21:49:40.8722804Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-08-14T21:49:40.8723204Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-08-14T21:49:40.8723617Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-08-14T21:49:40.8724360Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-08-14T21:49:40.8725098Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-08-14T21:49:40.8725506Z * [new tag] ciflow/slow/154595 -> ciflow/slow/154595 2025-08-14T21:49:40.8725903Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-08-14T21:49:40.8726312Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-08-14T21:49:40.8726724Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-08-14T21:49:40.8727127Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-08-14T21:49:40.8727533Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-08-14T21:49:40.8727939Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-08-14T21:49:40.8728549Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-08-14T21:49:40.8728952Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-08-14T21:49:40.8729658Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-08-14T21:49:40.8730361Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-08-14T21:49:40.8730765Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-08-14T21:49:40.8731180Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-08-14T21:49:40.8731582Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-08-14T21:49:40.9041424Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-08-14T21:49:40.9042255Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-08-14T21:49:40.9042996Z * [new tag] ciflow/trunk/131296 -> ciflow/trunk/131296 2025-08-14T21:49:40.9043417Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-08-14T21:49:40.9043835Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-08-14T21:49:40.9044240Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-08-14T21:49:40.9044645Z * [new tag] ciflow/trunk/147360 -> ciflow/trunk/147360 2025-08-14T21:49:40.9045044Z * [new tag] ciflow/trunk/147855 -> ciflow/trunk/147855 2025-08-14T21:49:40.9045456Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-08-14T21:49:40.9045865Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-08-14T21:49:40.9046261Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-08-14T21:49:40.9046808Z * [new tag] ciflow/trunk/150282 -> ciflow/trunk/150282 2025-08-14T21:49:40.9047216Z * [new tag] ciflow/trunk/150302 -> ciflow/trunk/150302 2025-08-14T21:49:40.9047630Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-08-14T21:49:40.9048026Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-08-14T21:49:40.9048446Z * [new tag] ciflow/trunk/154193 -> ciflow/trunk/154193 2025-08-14T21:49:40.9048854Z * [new tag] ciflow/trunk/154595 -> ciflow/trunk/154595 2025-08-14T21:49:40.9049252Z * [new tag] ciflow/trunk/154650 -> ciflow/trunk/154650 2025-08-14T21:49:40.9049732Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-08-14T21:49:40.9050140Z * [new tag] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-08-14T21:49:40.9050562Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-08-14T21:49:40.9050970Z * [new tag] ciflow/trunk/156703 -> ciflow/trunk/156703 2025-08-14T21:49:40.9051365Z * [new tag] ciflow/trunk/156851 -> ciflow/trunk/156851 2025-08-14T21:49:40.9051772Z * [new tag] ciflow/trunk/157148 -> ciflow/trunk/157148 2025-08-14T21:49:40.9052167Z * [new tag] ciflow/trunk/157152 -> ciflow/trunk/157152 2025-08-14T21:49:40.9052571Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-08-14T21:49:40.9052967Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-08-14T21:49:40.9053375Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-08-14T21:49:40.9053782Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-08-14T21:49:40.9054292Z * [new tag] ciflow/trunk/157813 -> ciflow/trunk/157813 2025-08-14T21:49:40.9054700Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-08-14T21:49:40.9055098Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-08-14T21:49:40.9055505Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-08-14T21:49:40.9055926Z * [new tag] ciflow/trunk/158219 -> ciflow/trunk/158219 2025-08-14T21:49:40.9056330Z * [new tag] ciflow/trunk/158220 -> ciflow/trunk/158220 2025-08-14T21:49:40.9056744Z * [new tag] ciflow/trunk/158224 -> ciflow/trunk/158224 2025-08-14T21:49:40.9057139Z * [new tag] ciflow/trunk/158529 -> ciflow/trunk/158529 2025-08-14T21:49:40.9057546Z * [new tag] ciflow/trunk/158647 -> ciflow/trunk/158647 2025-08-14T21:49:40.9057941Z * [new tag] ciflow/trunk/158810 -> ciflow/trunk/158810 2025-08-14T21:49:40.9058354Z * [new tag] ciflow/trunk/158812 -> ciflow/trunk/158812 2025-08-14T21:49:40.9058767Z * [new tag] ciflow/trunk/158863 -> ciflow/trunk/158863 2025-08-14T21:49:40.9059164Z * [new tag] ciflow/trunk/158864 -> ciflow/trunk/158864 2025-08-14T21:49:40.9059580Z * [new tag] ciflow/trunk/158883 -> ciflow/trunk/158883 2025-08-14T21:49:40.9059980Z * [new tag] ciflow/trunk/158914 -> ciflow/trunk/158914 2025-08-14T21:49:40.9060390Z * [new tag] ciflow/trunk/158965 -> ciflow/trunk/158965 2025-08-14T21:49:40.9060793Z * [new tag] ciflow/trunk/158987 -> ciflow/trunk/158987 2025-08-14T21:49:40.9061191Z * [new tag] ciflow/trunk/159033 -> ciflow/trunk/159033 2025-08-14T21:49:40.9061593Z * [new tag] ciflow/trunk/159140 -> ciflow/trunk/159140 2025-08-14T21:49:40.9062174Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-08-14T21:49:40.9062585Z * [new tag] ciflow/trunk/159553 -> ciflow/trunk/159553 2025-08-14T21:49:40.9062992Z * [new tag] ciflow/trunk/159562 -> ciflow/trunk/159562 2025-08-14T21:49:40.9379166Z * [new tag] ciflow/trunk/159682 -> ciflow/trunk/159682 2025-08-14T21:49:40.9379636Z * [new tag] ciflow/trunk/159691 -> ciflow/trunk/159691 2025-08-14T21:49:40.9380055Z * [new tag] ciflow/trunk/159842 -> ciflow/trunk/159842 2025-08-14T21:49:40.9380467Z * [new tag] ciflow/trunk/159889 -> ciflow/trunk/159889 2025-08-14T21:49:40.9380871Z * [new tag] ciflow/trunk/159923 -> ciflow/trunk/159923 2025-08-14T21:49:40.9381280Z * [new tag] ciflow/trunk/160004 -> ciflow/trunk/160004 2025-08-14T21:49:40.9381689Z * [new tag] ciflow/trunk/160113 -> ciflow/trunk/160113 2025-08-14T21:49:40.9382105Z * [new tag] ciflow/trunk/160161 -> ciflow/trunk/160161 2025-08-14T21:49:40.9382570Z * [new tag] ciflow/trunk/160168 -> ciflow/trunk/160168 2025-08-14T21:49:40.9383050Z * [new tag] ciflow/trunk/160181 -> ciflow/trunk/160181 2025-08-14T21:49:40.9383467Z * [new tag] ciflow/trunk/160183 -> ciflow/trunk/160183 2025-08-14T21:49:40.9383877Z * [new tag] ciflow/trunk/160190 -> ciflow/trunk/160190 2025-08-14T21:49:40.9384283Z * [new tag] ciflow/trunk/160198 -> ciflow/trunk/160198 2025-08-14T21:49:40.9384692Z * [new tag] ciflow/trunk/160205 -> ciflow/trunk/160205 2025-08-14T21:49:40.9385086Z * [new tag] ciflow/trunk/160219 -> ciflow/trunk/160219 2025-08-14T21:49:40.9385494Z * [new tag] ciflow/trunk/160224 -> ciflow/trunk/160224 2025-08-14T21:49:40.9386027Z * [new tag] ciflow/trunk/160250 -> ciflow/trunk/160250 2025-08-14T21:49:40.9386434Z * [new tag] ciflow/trunk/160253 -> ciflow/trunk/160253 2025-08-14T21:49:40.9386835Z * [new tag] ciflow/trunk/160335 -> ciflow/trunk/160335 2025-08-14T21:49:40.9387285Z * [new tag] ciflow/trunk/160338 -> ciflow/trunk/160338 2025-08-14T21:49:40.9387689Z * [new tag] ciflow/trunk/160383 -> ciflow/trunk/160383 2025-08-14T21:49:40.9388084Z * [new tag] ciflow/trunk/160401 -> ciflow/trunk/160401 2025-08-14T21:49:40.9388535Z * [new tag] ciflow/trunk/160403 -> ciflow/trunk/160403 2025-08-14T21:49:40.9388981Z * [new tag] ciflow/trunk/160430 -> ciflow/trunk/160430 2025-08-14T21:49:40.9389438Z * [new tag] ciflow/trunk/160431 -> ciflow/trunk/160431 2025-08-14T21:49:40.9389852Z * [new tag] ciflow/trunk/160439 -> ciflow/trunk/160439 2025-08-14T21:49:40.9390245Z * [new tag] ciflow/trunk/160449 -> ciflow/trunk/160449 2025-08-14T21:49:40.9390655Z * [new tag] ciflow/trunk/160454 -> ciflow/trunk/160454 2025-08-14T21:49:40.9391053Z * [new tag] ciflow/trunk/160455 -> ciflow/trunk/160455 2025-08-14T21:49:40.9391457Z * [new tag] ciflow/trunk/160468 -> ciflow/trunk/160468 2025-08-14T21:49:40.9391863Z * [new tag] ciflow/trunk/160481 -> ciflow/trunk/160481 2025-08-14T21:49:40.9392258Z * [new tag] ciflow/trunk/160485 -> ciflow/trunk/160485 2025-08-14T21:49:40.9392657Z * [new tag] ciflow/trunk/160519 -> ciflow/trunk/160519 2025-08-14T21:49:40.9393049Z * [new tag] ciflow/trunk/160527 -> ciflow/trunk/160527 2025-08-14T21:49:40.9393548Z * [new tag] ciflow/trunk/160552 -> ciflow/trunk/160552 2025-08-14T21:49:40.9393952Z * [new tag] ciflow/trunk/160560 -> ciflow/trunk/160560 2025-08-14T21:49:40.9394401Z * [new tag] ciflow/trunk/160578 -> ciflow/trunk/160578 2025-08-14T21:49:40.9394855Z * [new tag] ciflow/trunk/160589 -> ciflow/trunk/160589 2025-08-14T21:49:40.9395294Z * [new tag] ciflow/trunk/160592 -> ciflow/trunk/160592 2025-08-14T21:49:40.9395696Z * [new tag] ciflow/trunk/160649 -> ciflow/trunk/160649 2025-08-14T21:49:40.9396096Z * [new tag] ciflow/trunk/160656 -> ciflow/trunk/160656 2025-08-14T21:49:40.9396504Z * [new tag] ciflow/trunk/160672 -> ciflow/trunk/160672 2025-08-14T21:49:40.9396915Z * [new tag] ciflow/trunk/160675 -> ciflow/trunk/160675 2025-08-14T21:49:40.9397316Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-08-14T21:49:40.9397734Z * [new tag] ciflow/vllm/160116 -> ciflow/vllm/160116 2025-08-14T21:49:40.9398129Z * [new tag] ciflow/vllm/160583 -> ciflow/vllm/160583 2025-08-14T21:49:40.9398530Z * [new tag] ciflow/vllm/160619 -> ciflow/vllm/160619 2025-08-14T21:49:40.9398917Z * [new tag] ciflow/vllm/160625 -> ciflow/vllm/160625 2025-08-14T21:49:40.9399318Z * [new tag] ciflow/vllm/160627 -> ciflow/vllm/160627 2025-08-14T21:49:40.9399743Z * [new tag] ciflow/win-arm64/156049 -> ciflow/win-arm64/156049 2025-08-14T21:49:40.9400177Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-08-14T21:49:40.9728983Z * [new tag] ciflow/win-arm64/159553 -> ciflow/win-arm64/159553 2025-08-14T21:49:40.9729501Z * [new tag] ciflow/win-arm64/159562 -> ciflow/win-arm64/159562 2025-08-14T21:49:40.9730548Z * [new tag] ciflow/win-arm64/159777 -> ciflow/win-arm64/159777 2025-08-14T21:49:40.9731109Z * [new tag] ciflow/win-arm64/159780 -> ciflow/win-arm64/159780 2025-08-14T21:49:40.9731543Z * [new tag] ciflow/win-arm64/159842 -> ciflow/win-arm64/159842 2025-08-14T21:49:40.9731973Z * [new tag] ciflow/win-arm64/160250 -> ciflow/win-arm64/160250 2025-08-14T21:49:40.9732393Z * [new tag] ciflow/win-arm64/160253 -> ciflow/win-arm64/160253 2025-08-14T21:49:40.9732833Z * [new tag] ciflow/win-arm64/160454 -> ciflow/win-arm64/160454 2025-08-14T21:49:40.9733252Z * [new tag] ciflow/win-arm64/160560 -> ciflow/win-arm64/160560 2025-08-14T21:49:40.9733677Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-08-14T21:49:40.9734087Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-08-14T21:49:40.9734493Z * [new tag] ciflow/xpu/140972 -> ciflow/xpu/140972 2025-08-14T21:49:40.9734892Z * [new tag] ciflow/xpu/143553 -> ciflow/xpu/143553 2025-08-14T21:49:40.9735279Z * [new tag] ciflow/xpu/156272 -> ciflow/xpu/156272 2025-08-14T21:49:40.9735908Z * [new tag] ciflow/xpu/156812 -> ciflow/xpu/156812 2025-08-14T21:49:40.9736607Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-08-14T21:49:40.9737060Z * [new tag] ciflow/xpu/157994 -> ciflow/xpu/157994 2025-08-14T21:49:40.9737451Z * [new tag] ciflow/xpu/158336 -> ciflow/xpu/158336 2025-08-14T21:49:40.9737838Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-08-14T21:49:40.9738230Z * [new tag] ciflow/xpu/159033 -> ciflow/xpu/159033 2025-08-14T21:49:40.9738739Z * [new tag] ciflow/xpu/159118 -> ciflow/xpu/159118 2025-08-14T21:49:40.9739143Z * [new tag] ciflow/xpu/159140 -> ciflow/xpu/159140 2025-08-14T21:49:40.9739552Z * [new tag] ciflow/xpu/159241 -> ciflow/xpu/159241 2025-08-14T21:49:40.9739945Z * [new tag] ciflow/xpu/159473 -> ciflow/xpu/159473 2025-08-14T21:49:40.9740343Z * [new tag] ciflow/xpu/159474 -> ciflow/xpu/159474 2025-08-14T21:49:40.9740736Z * [new tag] ciflow/xpu/159553 -> ciflow/xpu/159553 2025-08-14T21:49:40.9741144Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-08-14T21:49:40.9741704Z * [new tag] ciflow/xpu/160062 -> ciflow/xpu/160062 2025-08-14T21:49:40.9742419Z * [new tag] ciflow/xpu/160067 -> ciflow/xpu/160067 2025-08-14T21:49:40.9742948Z * [new tag] ciflow/xpu/160158 -> ciflow/xpu/160158 2025-08-14T21:49:40.9743346Z * [new tag] ciflow/xpu/160173 -> ciflow/xpu/160173 2025-08-14T21:49:40.9743740Z * [new tag] ciflow/xpu/160183 -> ciflow/xpu/160183 2025-08-14T21:49:40.9744128Z * [new tag] ciflow/xpu/160301 -> ciflow/xpu/160301 2025-08-14T21:49:40.9744524Z * [new tag] ciflow/xpu/160403 -> ciflow/xpu/160403 2025-08-14T21:49:40.9744919Z * [new tag] ciflow/xpu/160606 -> ciflow/xpu/160606 2025-08-14T21:49:40.9745297Z * [new tag] cslpull75 -> cslpull75 2025-08-14T21:49:40.9745662Z * [new tag] cslpull76 -> cslpull76 2025-08-14T21:49:40.9746015Z * [new tag] cslpull77 -> cslpull77 2025-08-14T21:49:40.9746376Z * [new tag] cslpull78 -> cslpull78 2025-08-14T21:49:40.9746729Z * [new tag] cslpull79 -> cslpull79 2025-08-14T21:49:40.9747319Z * [new tag] cslpull80 -> cslpull80 2025-08-14T21:49:40.9747990Z * [new tag] cslpull81 -> cslpull81 2025-08-14T21:49:40.9748612Z * [new tag] cslpull82 -> cslpull82 2025-08-14T21:49:40.9748986Z * [new tag] cslpull83 -> cslpull83 2025-08-14T21:49:40.9749339Z * [new tag] cslpull84 -> cslpull84 2025-08-14T21:49:40.9749694Z * [new tag] cslpull85 -> cslpull85 2025-08-14T21:49:40.9750044Z * [new tag] cslpull86 -> cslpull86 2025-08-14T21:49:40.9750404Z * [new tag] cslpull87 -> cslpull87 2025-08-14T21:49:40.9750754Z * [new tag] cslpull88 -> cslpull88 2025-08-14T21:49:40.9751105Z * [new tag] cslpull89 -> cslpull89 2025-08-14T21:49:40.9751472Z * [new tag] cslpull90 -> cslpull90 2025-08-14T21:49:40.9751823Z * [new tag] cslpull91 -> cslpull91 2025-08-14T21:49:40.9752184Z * [new tag] cslpull92 -> cslpull92 2025-08-14T21:49:40.9984241Z * [new tag] flight_5 -> flight_5 2025-08-14T21:49:40.9984663Z * [new tag] flight_5.1 -> flight_5.1 2025-08-14T21:49:40.9985031Z * [new tag] flight_5.2 -> flight_5.2 2025-08-14T21:49:40.9985383Z * [new tag] flight_5.3 -> flight_5.3 2025-08-14T21:49:40.9985756Z * [new tag] forpull1 -> forpull1 2025-08-14T21:49:40.9986137Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-08-14T21:49:40.9986560Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-08-14T21:49:40.9987160Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-08-14T21:49:40.9987576Z * [new tag] nightly-binary -> nightly-binary 2025-08-14T21:49:40.9988001Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-08-14T21:49:40.9988408Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-08-14T21:49:40.9989024Z * [new tag] trunk/01584d2a7d029c9749eb73678cf1dc313cc35df6 -> trunk/01584d2a7d029c9749eb73678cf1dc313cc35df6 2025-08-14T21:49:40.9989832Z * [new tag] trunk/017259f9c65b6fad55fb9597d7077e2543eaae46 -> trunk/017259f9c65b6fad55fb9597d7077e2543eaae46 2025-08-14T21:49:40.9990634Z * [new tag] trunk/01bcf9a40dea937637d2cdd530bed2652510943d -> trunk/01bcf9a40dea937637d2cdd530bed2652510943d 2025-08-14T21:49:40.9991449Z * [new tag] trunk/01f66d08d93365015f4af005a252f439c4d4013a -> trunk/01f66d08d93365015f4af005a252f439c4d4013a 2025-08-14T21:49:40.9992253Z * [new tag] trunk/03b254e49f2d4c092e6ca712e5702cf2895aa47e -> trunk/03b254e49f2d4c092e6ca712e5702cf2895aa47e 2025-08-14T21:49:40.9993050Z * [new tag] trunk/05029ad1c30865d3f7e7fd13384db9d826e563eb -> trunk/05029ad1c30865d3f7e7fd13384db9d826e563eb 2025-08-14T21:49:40.9993849Z * [new tag] trunk/05c19d1acecc01b0d2512364183058a6885b9869 -> trunk/05c19d1acecc01b0d2512364183058a6885b9869 2025-08-14T21:49:40.9994641Z * [new tag] trunk/05c417715f791875fbf28cfc3fc86142de1a3206 -> trunk/05c417715f791875fbf28cfc3fc86142de1a3206 2025-08-14T21:49:40.9995429Z * [new tag] trunk/06824f3c7268bb807a422b663047cd0900ddd126 -> trunk/06824f3c7268bb807a422b663047cd0900ddd126 2025-08-14T21:49:40.9996227Z * [new tag] trunk/077cb389746a7d61cfc018aad2ba29a8aa195610 -> trunk/077cb389746a7d61cfc018aad2ba29a8aa195610 2025-08-14T21:49:40.9997040Z * [new tag] trunk/089c4a1ba007ed4abb3e5e0eafd97b7584566057 -> trunk/089c4a1ba007ed4abb3e5e0eafd97b7584566057 2025-08-14T21:49:40.9997974Z * [new tag] trunk/09381f5dacda7bbbfa361f5df76bde5cd309adc1 -> trunk/09381f5dacda7bbbfa361f5df76bde5cd309adc1 2025-08-14T21:49:40.9998810Z * [new tag] trunk/0bd3af4fb87445f4de3a1f9b823e399c8b3cefde -> trunk/0bd3af4fb87445f4de3a1f9b823e399c8b3cefde 2025-08-14T21:49:40.9999615Z * [new tag] trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 -> trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 2025-08-14T21:49:41.0000507Z * [new tag] trunk/0d40ff3b496e68193bc16d5391fa2e3623709f81 -> trunk/0d40ff3b496e68193bc16d5391fa2e3623709f81 2025-08-14T21:49:41.0001313Z * [new tag] trunk/0d71ca2c46753bb268bfdcf815c14415c122a289 -> trunk/0d71ca2c46753bb268bfdcf815c14415c122a289 2025-08-14T21:49:41.0002129Z * [new tag] trunk/0d88593dd826544c9e7bd4aa615ef86847a78d2b -> trunk/0d88593dd826544c9e7bd4aa615ef86847a78d2b 2025-08-14T21:49:41.0002952Z * [new tag] trunk/0e3e377bd5126cfcc69d70c4d77b352d3404cc11 -> trunk/0e3e377bd5126cfcc69d70c4d77b352d3404cc11 2025-08-14T21:49:41.0003771Z * [new tag] trunk/0f3b10b8eebe68e3c75d473d499b87dfe14a2eca -> trunk/0f3b10b8eebe68e3c75d473d499b87dfe14a2eca 2025-08-14T21:49:41.0004585Z * [new tag] trunk/101276f81b4d2a8c31bfd6796b986d4c1bfdf483 -> trunk/101276f81b4d2a8c31bfd6796b986d4c1bfdf483 2025-08-14T21:49:41.0005374Z * [new tag] trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 -> trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 2025-08-14T21:49:41.0006181Z * [new tag] trunk/10bc36fe840cb3510fab84d2ea22663b76702f1e -> trunk/10bc36fe840cb3510fab84d2ea22663b76702f1e 2025-08-14T21:49:41.0007070Z * [new tag] trunk/10e3514c962b58cbbee994257872a626ff76d51b -> trunk/10e3514c962b58cbbee994257872a626ff76d51b 2025-08-14T21:49:41.0007963Z * [new tag] trunk/1128f4c2a822cbe34a9d966306af15097179ffe1 -> trunk/1128f4c2a822cbe34a9d966306af15097179ffe1 2025-08-14T21:49:41.0008786Z * [new tag] trunk/114a6c40434bfb9cfa5abc30e9e34d81300d743e -> trunk/114a6c40434bfb9cfa5abc30e9e34d81300d743e 2025-08-14T21:49:41.0009657Z * [new tag] trunk/118bc97b14c24ac88a4b0c0750a9e7bf93154c76 -> trunk/118bc97b14c24ac88a4b0c0750a9e7bf93154c76 2025-08-14T21:49:41.0245193Z * [new tag] trunk/1196bb1c2e4d5a7edc09f2260e3034132f0c6c91 -> trunk/1196bb1c2e4d5a7edc09f2260e3034132f0c6c91 2025-08-14T21:49:41.0246049Z * [new tag] trunk/11a3565f1872bbad9c253a127e8d4ce7a1b40ec8 -> trunk/11a3565f1872bbad9c253a127e8d4ce7a1b40ec8 2025-08-14T21:49:41.0246860Z * [new tag] trunk/15e49f61643e4c0eef420f0981609709ef55b848 -> trunk/15e49f61643e4c0eef420f0981609709ef55b848 2025-08-14T21:49:41.0248315Z * [new tag] trunk/16d15445f8bd8740095b23de4af89d757af793ca -> trunk/16d15445f8bd8740095b23de4af89d757af793ca 2025-08-14T21:49:41.0249145Z * [new tag] trunk/178515d0ff6833c8e9221482b2a650ab31e00019 -> trunk/178515d0ff6833c8e9221482b2a650ab31e00019 2025-08-14T21:49:41.0249943Z * [new tag] trunk/182efe31dbe43376e7eef7338356aaf94d5bcabe -> trunk/182efe31dbe43376e7eef7338356aaf94d5bcabe 2025-08-14T21:49:41.0250772Z * [new tag] trunk/194fcfcfbdad0add1a1b695321e31a576058f4cf -> trunk/194fcfcfbdad0add1a1b695321e31a576058f4cf 2025-08-14T21:49:41.0251660Z * [new tag] trunk/195b5c2e27eb8f21cbc8ad1e90f42db5a8cfccca -> trunk/195b5c2e27eb8f21cbc8ad1e90f42db5a8cfccca 2025-08-14T21:49:41.0252474Z * [new tag] trunk/198b5fd2d47fa3d5110ceba6827a3b18e0064014 -> trunk/198b5fd2d47fa3d5110ceba6827a3b18e0064014 2025-08-14T21:49:41.0253697Z * [new tag] trunk/199e9abb6a366bbd27c39d1da7c3123b4eea9b5a -> trunk/199e9abb6a366bbd27c39d1da7c3123b4eea9b5a 2025-08-14T21:49:41.0254764Z * [new tag] trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 -> trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 2025-08-14T21:49:41.0255733Z * [new tag] trunk/1c2587119152cec3905647a47c65d3d26619c5a8 -> trunk/1c2587119152cec3905647a47c65d3d26619c5a8 2025-08-14T21:49:41.0256516Z * [new tag] trunk/1c26c53851c212a7c90a325549a72f0571613a8c -> trunk/1c26c53851c212a7c90a325549a72f0571613a8c 2025-08-14T21:49:41.0257319Z * [new tag] trunk/1c2cba17eab2b09d87142883da2bdbdbcf018613 -> trunk/1c2cba17eab2b09d87142883da2bdbdbcf018613 2025-08-14T21:49:41.0258148Z * [new tag] trunk/1d80d697a269234b47ec7ede192faf3bb9b159e3 -> trunk/1d80d697a269234b47ec7ede192faf3bb9b159e3 2025-08-14T21:49:41.0259179Z * [new tag] trunk/1ea688f9a2602fbcde32c0302b822526ca4219dc -> trunk/1ea688f9a2602fbcde32c0302b822526ca4219dc 2025-08-14T21:49:41.0260428Z * [new tag] trunk/1f4057c11ac941fb324386ca594d0a6882185aad -> trunk/1f4057c11ac941fb324386ca594d0a6882185aad 2025-08-14T21:49:41.0261242Z * [new tag] trunk/1fc683cf17c8c673044538d10266c00f92987be2 -> trunk/1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:49:41.0262046Z * [new tag] trunk/1febab2a89302464f6c7d69cfbef7a24c421ea65 -> trunk/1febab2a89302464f6c7d69cfbef7a24c421ea65 2025-08-14T21:49:41.0262855Z * [new tag] trunk/206c1eef6571f906c2792d899a09136b3fce9673 -> trunk/206c1eef6571f906c2792d899a09136b3fce9673 2025-08-14T21:49:41.0263660Z * [new tag] trunk/20bdabbb3c5d6b118a94b2e045c777662563d5bb -> trunk/20bdabbb3c5d6b118a94b2e045c777662563d5bb 2025-08-14T21:49:41.0264453Z * [new tag] trunk/21392c0e06ac2b2621950455975ca6332f0bf641 -> trunk/21392c0e06ac2b2621950455975ca6332f0bf641 2025-08-14T21:49:41.0265755Z * [new tag] trunk/2247aa6d1d43e256255f5c74a781c3190a4387b6 -> trunk/2247aa6d1d43e256255f5c74a781c3190a4387b6 2025-08-14T21:49:41.0266781Z * [new tag] trunk/2259dbed4e0d3f2a8174b5847fd0741aed42451d -> trunk/2259dbed4e0d3f2a8174b5847fd0741aed42451d 2025-08-14T21:49:41.0267699Z * [new tag] trunk/231c72240d80091f099c95e326d3600cba866eee -> trunk/231c72240d80091f099c95e326d3600cba866eee 2025-08-14T21:49:41.0268504Z * [new tag] trunk/24257f5bfaa37795f74d9f64c1b43584128d4b8c -> trunk/24257f5bfaa37795f74d9f64c1b43584128d4b8c 2025-08-14T21:49:41.0269314Z * [new tag] trunk/24f43d0da7ad9c6e95a09a2fee610387728cc1cd -> trunk/24f43d0da7ad9c6e95a09a2fee610387728cc1cd 2025-08-14T21:49:41.0270153Z * [new tag] trunk/2898d3f965e5cd9d02fc2ecdab7c580fd457fea9 -> trunk/2898d3f965e5cd9d02fc2ecdab7c580fd457fea9 2025-08-14T21:49:41.0271327Z * [new tag] trunk/28ccc9e7247798980fe00a11bcd64a8016b5f227 -> trunk/28ccc9e7247798980fe00a11bcd64a8016b5f227 2025-08-14T21:49:41.0272400Z * [new tag] trunk/29712314dd5cf500a8ea3d1c69483a3cb768ca72 -> trunk/29712314dd5cf500a8ea3d1c69483a3cb768ca72 2025-08-14T21:49:41.0273221Z * [new tag] trunk/29d20d49f0b7f4e362e1cefdcdc4b5659969312c -> trunk/29d20d49f0b7f4e362e1cefdcdc4b5659969312c 2025-08-14T21:49:41.0274045Z * [new tag] trunk/2c5e10a5fceb208b11c3d569ae02e348b5893b31 -> trunk/2c5e10a5fceb208b11c3d569ae02e348b5893b31 2025-08-14T21:49:41.0274928Z * [new tag] trunk/2d0cdee394bccadcd0abe19dd4623ed978a331ad -> trunk/2d0cdee394bccadcd0abe19dd4623ed978a331ad 2025-08-14T21:49:41.0476833Z * [new tag] trunk/2e4e5ab4be9e0aeffd9c49b5b2f9f820bd0895b1 -> trunk/2e4e5ab4be9e0aeffd9c49b5b2f9f820bd0895b1 2025-08-14T21:49:41.0477697Z * [new tag] trunk/2ea40fba841b3af8103f332ba62e54f350ba9a51 -> trunk/2ea40fba841b3af8103f332ba62e54f350ba9a51 2025-08-14T21:49:41.0478516Z * [new tag] trunk/2ee22e435131369a7e4f8cc4732579acc29a941b -> trunk/2ee22e435131369a7e4f8cc4732579acc29a941b 2025-08-14T21:49:41.0479394Z * [new tag] trunk/2f4c2226175512af787725c4d5ad7313c60d4db1 -> trunk/2f4c2226175512af787725c4d5ad7313c60d4db1 2025-08-14T21:49:41.0480863Z * [new tag] trunk/3008d985a8fc155eb89374afff50cb33a6bd10d5 -> trunk/3008d985a8fc155eb89374afff50cb33a6bd10d5 2025-08-14T21:49:41.0481677Z * [new tag] trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 -> trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 2025-08-14T21:49:41.0482485Z * [new tag] trunk/303c614f3df95ae2b659c5f6c1838b14e4776ce6 -> trunk/303c614f3df95ae2b659c5f6c1838b14e4776ce6 2025-08-14T21:49:41.0483283Z * [new tag] trunk/305fa2239365ad17ac9c534a68bba8a149c42d67 -> trunk/305fa2239365ad17ac9c534a68bba8a149c42d67 2025-08-14T21:49:41.0484101Z * [new tag] trunk/31c9ac4319c0cc2ed8c6be701c6ccf73f6cb4706 -> trunk/31c9ac4319c0cc2ed8c6be701c6ccf73f6cb4706 2025-08-14T21:49:41.0484909Z * [new tag] trunk/32099961d588fc19ead8afe805d6b5108de75669 -> trunk/32099961d588fc19ead8afe805d6b5108de75669 2025-08-14T21:49:41.0485718Z * [new tag] trunk/32e5e2f596d55bb9441d5d53f3c58bcb55828047 -> trunk/32e5e2f596d55bb9441d5d53f3c58bcb55828047 2025-08-14T21:49:41.0486526Z * [new tag] trunk/334b38ccc4427b1d14981c48a3a0b92180d58225 -> trunk/334b38ccc4427b1d14981c48a3a0b92180d58225 2025-08-14T21:49:41.0487329Z * [new tag] trunk/334ecbd4ffe11858cae7d23d1190ddb4777c2513 -> trunk/334ecbd4ffe11858cae7d23d1190ddb4777c2513 2025-08-14T21:49:41.0488134Z * [new tag] trunk/33d94018668951611b318b7515ae96f04e48eac0 -> trunk/33d94018668951611b318b7515ae96f04e48eac0 2025-08-14T21:49:41.0488921Z * [new tag] trunk/34358f335d95213d96b6cca6a83e7bf3af6a9fcb -> trunk/34358f335d95213d96b6cca6a83e7bf3af6a9fcb 2025-08-14T21:49:41.0489728Z * [new tag] trunk/34ec5ed275f8aa875c80daa97b3e82af0b06f673 -> trunk/34ec5ed275f8aa875c80daa97b3e82af0b06f673 2025-08-14T21:49:41.0490548Z * [new tag] trunk/355462e1278d818deb9ef4a184073d5b66074816 -> trunk/355462e1278d818deb9ef4a184073d5b66074816 2025-08-14T21:49:41.0491422Z * [new tag] trunk/3626ba711b34397d1fbf0a9b1979f85cbf68b919 -> trunk/3626ba711b34397d1fbf0a9b1979f85cbf68b919 2025-08-14T21:49:41.0492231Z * [new tag] trunk/3650989e6e19d8a3d134c22ae7c4659bf8c93785 -> trunk/3650989e6e19d8a3d134c22ae7c4659bf8c93785 2025-08-14T21:49:41.0493025Z * [new tag] trunk/36f46d082a4954921cb8493223f000f2aab79ed7 -> trunk/36f46d082a4954921cb8493223f000f2aab79ed7 2025-08-14T21:49:41.0493808Z * [new tag] trunk/39aa3d1471549b7829c207d634dfdc1d26e346a2 -> trunk/39aa3d1471549b7829c207d634dfdc1d26e346a2 2025-08-14T21:49:41.0494614Z * [new tag] trunk/3a562374401113187ce2566b87e3f1d87d7c53aa -> trunk/3a562374401113187ce2566b87e3f1d87d7c53aa 2025-08-14T21:49:41.0495403Z * [new tag] trunk/3ac86e728dfaa7383ff7f865e9e7d33486188dae -> trunk/3ac86e728dfaa7383ff7f865e9e7d33486188dae 2025-08-14T21:49:41.0496235Z * [new tag] trunk/3be70dc30e893b552fc0f23ca06cd8f7949b6d08 -> trunk/3be70dc30e893b552fc0f23ca06cd8f7949b6d08 2025-08-14T21:49:41.0497069Z * [new tag] trunk/3cec82a7e9aea040a34dd7a2587ae6d3bd65dba0 -> trunk/3cec82a7e9aea040a34dd7a2587ae6d3bd65dba0 2025-08-14T21:49:41.0497996Z * [new tag] trunk/3cf7b4024ef83e44e9ae223dbff7c7ab68240cb2 -> trunk/3cf7b4024ef83e44e9ae223dbff7c7ab68240cb2 2025-08-14T21:49:41.0498842Z * [new tag] trunk/3ef2e1ef769582a82c6ddf150e9d11bf4bf1c44f -> trunk/3ef2e1ef769582a82c6ddf150e9d11bf4bf1c44f 2025-08-14T21:49:41.0499668Z * [new tag] trunk/3f1636ebef9b45e8a3cb0eb20d327ee6acb74be0 -> trunk/3f1636ebef9b45e8a3cb0eb20d327ee6acb74be0 2025-08-14T21:49:41.0500490Z * [new tag] trunk/3faee0a6318afcbbbb48687009a459214910d820 -> trunk/3faee0a6318afcbbbb48687009a459214910d820 2025-08-14T21:49:41.0501412Z * [new tag] trunk/3fcd79e023da7156ac584992ebab29205d3b7881 -> trunk/3fcd79e023da7156ac584992ebab29205d3b7881 2025-08-14T21:49:41.0502335Z * [new tag] trunk/3fe19a7a0af3f4d692af30476c320be18c7e8ae6 -> trunk/3fe19a7a0af3f4d692af30476c320be18c7e8ae6 2025-08-14T21:49:41.0503146Z * [new tag] trunk/41673110cd7c5960824cc74a6fcaeda1a8bc7a23 -> trunk/41673110cd7c5960824cc74a6fcaeda1a8bc7a23 2025-08-14T21:49:41.0693472Z * [new tag] trunk/4183d4ff3dcc1d87400326a9a7998c3f9e966f60 -> trunk/4183d4ff3dcc1d87400326a9a7998c3f9e966f60 2025-08-14T21:49:41.0694304Z * [new tag] trunk/422bd6808bb98cbbac31d157d9c82ad11ba9732d -> trunk/422bd6808bb98cbbac31d157d9c82ad11ba9732d 2025-08-14T21:49:41.0695171Z * [new tag] trunk/42e51cd4b3973a053fcfa80878a3f346fd158e9f -> trunk/42e51cd4b3973a053fcfa80878a3f346fd158e9f 2025-08-14T21:49:41.0696026Z * [new tag] trunk/4416433c7c625127b7f975c92f8ec98ea4c67fd3 -> trunk/4416433c7c625127b7f975c92f8ec98ea4c67fd3 2025-08-14T21:49:41.0696823Z * [new tag] trunk/45ba7ecda876685b083cbbe932450560c566826b -> trunk/45ba7ecda876685b083cbbe932450560c566826b 2025-08-14T21:49:41.0697650Z * [new tag] trunk/47a1db823dfcdacdb99f317428fc3791a18c5812 -> trunk/47a1db823dfcdacdb99f317428fc3791a18c5812 2025-08-14T21:49:41.0698458Z * [new tag] trunk/4a773e1e867f28a8ff0b15203e5cd9548f74fcee -> trunk/4a773e1e867f28a8ff0b15203e5cd9548f74fcee 2025-08-14T21:49:41.0699258Z * [new tag] trunk/4a90dc0c1f68d1f98832b169f792ed1bb195a0f3 -> trunk/4a90dc0c1f68d1f98832b169f792ed1bb195a0f3 2025-08-14T21:49:41.0700085Z * [new tag] trunk/4cde0acc0e4e795e1a12cbdd9b93c8c04c1fa05d -> trunk/4cde0acc0e4e795e1a12cbdd9b93c8c04c1fa05d 2025-08-14T21:49:41.0700950Z * [new tag] trunk/4d419a74610c32b1372f8802dcc61893740a23cf -> trunk/4d419a74610c32b1372f8802dcc61893740a23cf 2025-08-14T21:49:41.0701816Z * [new tag] trunk/4d5b3f2d5af7c8e4f41da4ffca53fafe8bb86235 -> trunk/4d5b3f2d5af7c8e4f41da4ffca53fafe8bb86235 2025-08-14T21:49:41.0703235Z * [new tag] trunk/4e2ddb5db67617f9f5309c8bba0c17adc84cadbc -> trunk/4e2ddb5db67617f9f5309c8bba0c17adc84cadbc 2025-08-14T21:49:41.0704062Z * [new tag] trunk/50a8c118754a6c5a46968f5c8e215ccba6831d42 -> trunk/50a8c118754a6c5a46968f5c8e215ccba6831d42 2025-08-14T21:49:41.0704870Z * [new tag] trunk/50f23ff6f883db5021dd6bab4c146434f98dd15d -> trunk/50f23ff6f883db5021dd6bab4c146434f98dd15d 2025-08-14T21:49:41.0705681Z * [new tag] trunk/515cb70367e84fcbad23fcc5b39eb1d7706df2aa -> trunk/515cb70367e84fcbad23fcc5b39eb1d7706df2aa 2025-08-14T21:49:41.0706596Z * [new tag] trunk/53e39494958b7e2278cc8176f63636e812e8945f -> trunk/53e39494958b7e2278cc8176f63636e812e8945f 2025-08-14T21:49:41.0707464Z * [new tag] trunk/556e2a73f4f0643f7c2aeb5c7dddda43388a40ce -> trunk/556e2a73f4f0643f7c2aeb5c7dddda43388a40ce 2025-08-14T21:49:41.0708271Z * [new tag] trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 -> trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 2025-08-14T21:49:41.0709086Z * [new tag] trunk/566c6d52ef1411c8262d7b9cf85e2044fdfbe1a3 -> trunk/566c6d52ef1411c8262d7b9cf85e2044fdfbe1a3 2025-08-14T21:49:41.0709894Z * [new tag] trunk/56c828bef93eada0e18d2cc013207831ca80cc99 -> trunk/56c828bef93eada0e18d2cc013207831ca80cc99 2025-08-14T21:49:41.0710679Z * [new tag] trunk/5737372862253a0ac0292407a5844796f02380ad -> trunk/5737372862253a0ac0292407a5844796f02380ad 2025-08-14T21:49:41.0711468Z * [new tag] trunk/57f738b6357cc8fcdde479a0948e723809a1a44d -> trunk/57f738b6357cc8fcdde479a0948e723809a1a44d 2025-08-14T21:49:41.0712264Z * [new tag] trunk/5a40c5784482255b9baf14086cc4b9349fc6d512 -> trunk/5a40c5784482255b9baf14086cc4b9349fc6d512 2025-08-14T21:49:41.0713182Z * [new tag] trunk/5a9c4cfce42b9eb87da0de40c5633f083115c307 -> trunk/5a9c4cfce42b9eb87da0de40c5633f083115c307 2025-08-14T21:49:41.0714010Z * [new tag] trunk/5ace061254af71aa83d1baae81aa1864c9746add -> trunk/5ace061254af71aa83d1baae81aa1864c9746add 2025-08-14T21:49:41.0714936Z * [new tag] trunk/5dddcd5b07c6644efca8d613f4eca1dc95daa87f -> trunk/5dddcd5b07c6644efca8d613f4eca1dc95daa87f 2025-08-14T21:49:41.0715773Z * [new tag] trunk/5ed4f9177907fe403ec4c4499d0d0e9be6b68fcf -> trunk/5ed4f9177907fe403ec4c4499d0d0e9be6b68fcf 2025-08-14T21:49:41.0716591Z * [new tag] trunk/5f1010fbb3850d99c8fdf9a9de2f79260cdc586a -> trunk/5f1010fbb3850d99c8fdf9a9de2f79260cdc586a 2025-08-14T21:49:41.0717395Z * [new tag] trunk/5f5f508aa836a46dfe88857fb223049616b94e93 -> trunk/5f5f508aa836a46dfe88857fb223049616b94e93 2025-08-14T21:49:41.0718197Z * [new tag] trunk/62bac0798100e0e06a86b7a4cee1788413e3d0ca -> trunk/62bac0798100e0e06a86b7a4cee1788413e3d0ca 2025-08-14T21:49:41.0719095Z * [new tag] trunk/63654ba4c5178fd12220cfc9d1c878af2fdd07cc -> trunk/63654ba4c5178fd12220cfc9d1c878af2fdd07cc 2025-08-14T21:49:41.0719902Z * [new tag] trunk/639778b3ee3b80e0894367fdc4442b58ae1b3a62 -> trunk/639778b3ee3b80e0894367fdc4442b58ae1b3a62 2025-08-14T21:49:41.0720685Z * [new tag] trunk/641ee7478150f26969968f49d8b358e199679a8a -> trunk/641ee7478150f26969968f49d8b358e199679a8a 2025-08-14T21:49:41.0915988Z * [new tag] trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 -> trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 2025-08-14T21:49:41.0916797Z * [new tag] trunk/652a6f5954d039d61dc6e6575ccf89d385d74537 -> trunk/652a6f5954d039d61dc6e6575ccf89d385d74537 2025-08-14T21:49:41.0917605Z * [new tag] trunk/685f15dbea66e8ffa8564752f81ad2f6cb447a14 -> trunk/685f15dbea66e8ffa8564752f81ad2f6cb447a14 2025-08-14T21:49:41.0918422Z * [new tag] trunk/68a4b4b2e336cfd4451ce6546d900568e5ddf96c -> trunk/68a4b4b2e336cfd4451ce6546d900568e5ddf96c 2025-08-14T21:49:41.0919380Z * [new tag] trunk/69a0a9aa7f5e320a02e97fa789d2f72baff1554f -> trunk/69a0a9aa7f5e320a02e97fa789d2f72baff1554f 2025-08-14T21:49:41.0920320Z * [new tag] trunk/6be6d06295c870c77a6eb69f96b3170d983520d5 -> trunk/6be6d06295c870c77a6eb69f96b3170d983520d5 2025-08-14T21:49:41.0921142Z * [new tag] trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 -> trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 2025-08-14T21:49:41.0921976Z * [new tag] trunk/6da11d9aafc0d84dc7f66030c181608ff2614f66 -> trunk/6da11d9aafc0d84dc7f66030c181608ff2614f66 2025-08-14T21:49:41.0922783Z * [new tag] trunk/6e8865fbc161270e2ffc52817e6c667df417a3f7 -> trunk/6e8865fbc161270e2ffc52817e6c667df417a3f7 2025-08-14T21:49:41.0923595Z * [new tag] trunk/6ea8376f84232048d6be0f7b2edf82aec1b61d58 -> trunk/6ea8376f84232048d6be0f7b2edf82aec1b61d58 2025-08-14T21:49:41.0924386Z * [new tag] trunk/6ee175195ac7853734d64704171993cc6265eb38 -> trunk/6ee175195ac7853734d64704171993cc6265eb38 2025-08-14T21:49:41.0925179Z * [new tag] trunk/6f0f4e0c3eacd479864319127915f869f64e1935 -> trunk/6f0f4e0c3eacd479864319127915f869f64e1935 2025-08-14T21:49:41.0925986Z * [new tag] trunk/70ccdec44b89e355a2cb03ba14a634284f7750f8 -> trunk/70ccdec44b89e355a2cb03ba14a634284f7750f8 2025-08-14T21:49:41.0926790Z * [new tag] trunk/72009ec6bebca7714f99c18449183787f202af4d -> trunk/72009ec6bebca7714f99c18449183787f202af4d 2025-08-14T21:49:41.0927596Z * [new tag] trunk/731ee31f7b6ba19307daab323f6196172b71aaf8 -> trunk/731ee31f7b6ba19307daab323f6196172b71aaf8 2025-08-14T21:49:41.0928414Z * [new tag] trunk/76a0609b6bddb2bc40f1eb4ade12885023653d59 -> trunk/76a0609b6bddb2bc40f1eb4ade12885023653d59 2025-08-14T21:49:41.0929206Z * [new tag] trunk/781e9a7724c47496e3d38a81e6dd6194cf098c41 -> trunk/781e9a7724c47496e3d38a81e6dd6194cf098c41 2025-08-14T21:49:41.0930026Z * [new tag] trunk/78a2fe1d42edeaa2ef7020b0fa0ac82ee4a640e4 -> trunk/78a2fe1d42edeaa2ef7020b0fa0ac82ee4a640e4 2025-08-14T21:49:41.0930962Z * [new tag] trunk/7a974a88f2c529a614baeabe4debd00fc8a3b299 -> trunk/7a974a88f2c529a614baeabe4debd00fc8a3b299 2025-08-14T21:49:41.0931764Z * [new tag] trunk/7ae0629d64b404e0ef5d9c931433ad25e65d6114 -> trunk/7ae0629d64b404e0ef5d9c931433ad25e65d6114 2025-08-14T21:49:41.0932576Z * [new tag] trunk/7d2ec704e47f4b740cdecda5534b305e8e1875ef -> trunk/7d2ec704e47f4b740cdecda5534b305e8e1875ef 2025-08-14T21:49:41.0933397Z * [new tag] trunk/7d87e358ac8440f666fabbfd99058bb5342be6ac -> trunk/7d87e358ac8440f666fabbfd99058bb5342be6ac 2025-08-14T21:49:41.0934203Z * [new tag] trunk/7e27347fd353928c99620495c8c531a5eba7d56b -> trunk/7e27347fd353928c99620495c8c531a5eba7d56b 2025-08-14T21:49:41.0934999Z * [new tag] trunk/7e91394955721c77645fcdb75a5d47a255d65020 -> trunk/7e91394955721c77645fcdb75a5d47a255d65020 2025-08-14T21:49:41.0935897Z * [new tag] trunk/7f4cb4a3e018a621add2a37a3a2f67b982d51001 -> trunk/7f4cb4a3e018a621add2a37a3a2f67b982d51001 2025-08-14T21:49:41.0936829Z * [new tag] trunk/7fbc22855c17741ae016992803b2e147a13aa22d -> trunk/7fbc22855c17741ae016992803b2e147a13aa22d 2025-08-14T21:49:41.0937638Z * [new tag] trunk/8047421fbb607d70ede13b9cd5a60b7b8bdfe348 -> trunk/8047421fbb607d70ede13b9cd5a60b7b8bdfe348 2025-08-14T21:49:41.0938455Z * [new tag] trunk/8088cfa592504a2897b4c78f8a46fe658ab5c2c2 -> trunk/8088cfa592504a2897b4c78f8a46fe658ab5c2c2 2025-08-14T21:49:41.0939251Z * [new tag] trunk/80cca8307943ba64168208b54028f55b2c71daff -> trunk/80cca8307943ba64168208b54028f55b2c71daff 2025-08-14T21:49:41.0940034Z * [new tag] trunk/8147370733bbdcd034cad54e9212e51885a11892 -> trunk/8147370733bbdcd034cad54e9212e51885a11892 2025-08-14T21:49:41.0940830Z * [new tag] trunk/83875cdb5594ccb3c9206b8eb5745fe1d011cf26 -> trunk/83875cdb5594ccb3c9206b8eb5745fe1d011cf26 2025-08-14T21:49:41.0941732Z * [new tag] trunk/8399cf88ce8399d2be93355f29d4cb69f51c0654 -> trunk/8399cf88ce8399d2be93355f29d4cb69f51c0654 2025-08-14T21:49:41.1139044Z * [new tag] trunk/842cc77ab9aafd518593c2fce077d6abb42a5b7f -> trunk/842cc77ab9aafd518593c2fce077d6abb42a5b7f 2025-08-14T21:49:41.1139915Z * [new tag] trunk/85db508af533649d0b3447ff3f0d5fe083150c84 -> trunk/85db508af533649d0b3447ff3f0d5fe083150c84 2025-08-14T21:49:41.1140752Z * [new tag] trunk/86eb65f7f06016bcd5d7951dc9d74bc3993a827a -> trunk/86eb65f7f06016bcd5d7951dc9d74bc3993a827a 2025-08-14T21:49:41.1141562Z * [new tag] trunk/87e6c4079d8ec7d04aff00ed82096b39836a8367 -> trunk/87e6c4079d8ec7d04aff00ed82096b39836a8367 2025-08-14T21:49:41.1142378Z * [new tag] trunk/89654db1abccf7e5f261989a150db4d1619ea2aa -> trunk/89654db1abccf7e5f261989a150db4d1619ea2aa 2025-08-14T21:49:41.1143202Z * [new tag] trunk/8a37f0c90392a2c38b7c5955471fa49edcaf5cb1 -> trunk/8a37f0c90392a2c38b7c5955471fa49edcaf5cb1 2025-08-14T21:49:41.1144001Z * [new tag] trunk/8ab5868a2199fe485c2d66533b9244ccb97e487d -> trunk/8ab5868a2199fe485c2d66533b9244ccb97e487d 2025-08-14T21:49:41.1144816Z * [new tag] trunk/8ae4d2652f64b8444b3d5314b9232bd2119bcde6 -> trunk/8ae4d2652f64b8444b3d5314b9232bd2119bcde6 2025-08-14T21:49:41.1145622Z * [new tag] trunk/8c41cb800ae0411f02ea5da34bd5ccc3790633b0 -> trunk/8c41cb800ae0411f02ea5da34bd5ccc3790633b0 2025-08-14T21:49:41.1146506Z * [new tag] trunk/8cb91e20bc205b1416648d0ffd98d1ba1f3a6fc4 -> trunk/8cb91e20bc205b1416648d0ffd98d1ba1f3a6fc4 2025-08-14T21:49:41.1147330Z * [new tag] trunk/8cfaf51d4e29c9bd9f49ecc98d955ed53df1a13d -> trunk/8cfaf51d4e29c9bd9f49ecc98d955ed53df1a13d 2025-08-14T21:49:41.1148168Z * [new tag] trunk/8d1cf529229dce7cd5ea04abb0faac83b87ca6d1 -> trunk/8d1cf529229dce7cd5ea04abb0faac83b87ca6d1 2025-08-14T21:49:41.1149150Z * [new tag] trunk/8d3d1c844303cb1d46123a1caa76d4cf83973347 -> trunk/8d3d1c844303cb1d46123a1caa76d4cf83973347 2025-08-14T21:49:41.1149947Z * [new tag] trunk/8d6d3246316e1767a57d5e855acd6208da753b75 -> trunk/8d6d3246316e1767a57d5e855acd6208da753b75 2025-08-14T21:49:41.1150742Z * [new tag] trunk/8e6a3138581152ab827a0997f34c470271399f5e -> trunk/8e6a3138581152ab827a0997f34c470271399f5e 2025-08-14T21:49:41.1151538Z * [new tag] trunk/8eee08d2279b98af2522debb6512d37e837e89e3 -> trunk/8eee08d2279b98af2522debb6512d37e837e89e3 2025-08-14T21:49:41.1152336Z * [new tag] trunk/90b78ee50f73b5c963996076a3d54b74b1b965be -> trunk/90b78ee50f73b5c963996076a3d54b74b1b965be 2025-08-14T21:49:41.1153124Z * [new tag] trunk/94b91a876327820a4bb6f5d39d156f13f2553ab6 -> trunk/94b91a876327820a4bb6f5d39d156f13f2553ab6 2025-08-14T21:49:41.1153910Z * [new tag] trunk/95210cc409dd578988c7116b47725c304dea54c7 -> trunk/95210cc409dd578988c7116b47725c304dea54c7 2025-08-14T21:49:41.1154704Z * [new tag] trunk/96bd33b2de79598566df395f32e27c4d33673f05 -> trunk/96bd33b2de79598566df395f32e27c4d33673f05 2025-08-14T21:49:41.1155513Z * [new tag] trunk/9708fcf92db88b80b9010c68662d634434da3106 -> trunk/9708fcf92db88b80b9010c68662d634434da3106 2025-08-14T21:49:41.1156311Z * [new tag] trunk/97c8c98f8dcb9c5c188b691d156e0043dba6c7f8 -> trunk/97c8c98f8dcb9c5c188b691d156e0043dba6c7f8 2025-08-14T21:49:41.1157117Z * [new tag] trunk/9903ca4f70bdc1653016256f5b4fd74fdfc609f8 -> trunk/9903ca4f70bdc1653016256f5b4fd74fdfc609f8 2025-08-14T21:49:41.1157924Z * [new tag] trunk/99bc2f94c1955657e950ebdad5f77e518785ccbd -> trunk/99bc2f94c1955657e950ebdad5f77e518785ccbd 2025-08-14T21:49:41.1158817Z * [new tag] trunk/9a06e6d0310da9d8a59ae05e8ec9c0201b55cacd -> trunk/9a06e6d0310da9d8a59ae05e8ec9c0201b55cacd 2025-08-14T21:49:41.1159750Z * [new tag] trunk/9a0f7a3bb01b235ea04581ee540970a098071b72 -> trunk/9a0f7a3bb01b235ea04581ee540970a098071b72 2025-08-14T21:49:41.1160563Z * [new tag] trunk/9b803cdbe298009f08340c1aaccb25aafbca95d8 -> trunk/9b803cdbe298009f08340c1aaccb25aafbca95d8 2025-08-14T21:49:41.1161403Z * [new tag] trunk/9ccd0f5e31ea54fcf42101dfbaacc103494e34df -> trunk/9ccd0f5e31ea54fcf42101dfbaacc103494e34df 2025-08-14T21:49:41.1162242Z * [new tag] trunk/9d37c960a4fc44d5ac334ca8bf775f85b95d76fc -> trunk/9d37c960a4fc44d5ac334ca8bf775f85b95d76fc 2025-08-14T21:49:41.1163035Z * [new tag] trunk/9e07673deb212c87b1c6fea23799a97474c476ed -> trunk/9e07673deb212c87b1c6fea23799a97474c476ed 2025-08-14T21:49:41.1163855Z * [new tag] trunk/9eedd2a20b64302d0d116ea2802b50948d2ebb09 -> trunk/9eedd2a20b64302d0d116ea2802b50948d2ebb09 2025-08-14T21:49:41.1164663Z * [new tag] trunk/9fa8ce26cf638504469852cbc3e7d04579fc8674 -> trunk/9fa8ce26cf638504469852cbc3e7d04579fc8674 2025-08-14T21:49:41.1165476Z * [new tag] trunk/a06ec54d40013c97fbffc174ea8f524ea5a95715 -> trunk/a06ec54d40013c97fbffc174ea8f524ea5a95715 2025-08-14T21:49:41.2051424Z * [new tag] trunk/a288b15ea9f87ddd665f249d492e0fb0861f5a69 -> trunk/a288b15ea9f87ddd665f249d492e0fb0861f5a69 2025-08-14T21:49:41.2052568Z * [new tag] trunk/a2fd106d670bb4990cebfd00f25ecbae4145e76c -> trunk/a2fd106d670bb4990cebfd00f25ecbae4145e76c 2025-08-14T21:49:41.2053743Z * [new tag] trunk/a354fa91e26b376d96385a2206c5ff5b42aa4600 -> trunk/a354fa91e26b376d96385a2206c5ff5b42aa4600 2025-08-14T21:49:41.2055046Z * [new tag] trunk/a4f69a5da08eace1c1e6469dec6a18aa842da73b -> trunk/a4f69a5da08eace1c1e6469dec6a18aa842da73b 2025-08-14T21:49:41.2056341Z * [new tag] trunk/a53d14d5f846ac44f6c205abb1c5bc4d2f3126ae -> trunk/a53d14d5f846ac44f6c205abb1c5bc4d2f3126ae 2025-08-14T21:49:41.2058479Z * [new tag] trunk/a5652407e4f3d772fc44486ac2abf756decf0861 -> trunk/a5652407e4f3d772fc44486ac2abf756decf0861 2025-08-14T21:49:41.2059775Z * [new tag] trunk/a7abf57aabec0ce686092e2d66e53ba185dbc56b -> trunk/a7abf57aabec0ce686092e2d66e53ba185dbc56b 2025-08-14T21:49:41.2061127Z * [new tag] trunk/a84b60c0c4016785fd93b7b8a0c04f2d0770d332 -> trunk/a84b60c0c4016785fd93b7b8a0c04f2d0770d332 2025-08-14T21:49:41.2062378Z * [new tag] trunk/aa75e917bdb0f95bb6dee81853c2d3c4ab3e1883 -> trunk/aa75e917bdb0f95bb6dee81853c2d3c4ab3e1883 2025-08-14T21:49:41.2063763Z * [new tag] trunk/adcca7d9a1c053495e99012de801b2ea237faad0 -> trunk/adcca7d9a1c053495e99012de801b2ea237faad0 2025-08-14T21:49:41.2065156Z * [new tag] trunk/af10f1f86cc4effc93142a447693d8be55966615 -> trunk/af10f1f86cc4effc93142a447693d8be55966615 2025-08-14T21:49:41.2066490Z * [new tag] trunk/af3cabc55d5699f4da528e1ca39d83338f84ae8c -> trunk/af3cabc55d5699f4da528e1ca39d83338f84ae8c 2025-08-14T21:49:41.2067725Z * [new tag] trunk/b0df7715e8c590c0001d1f9cdb97057be80c9107 -> trunk/b0df7715e8c590c0001d1f9cdb97057be80c9107 2025-08-14T21:49:41.2069000Z * [new tag] trunk/b149c7204c218e7c4d6594a89dd74f72bd480ec5 -> trunk/b149c7204c218e7c4d6594a89dd74f72bd480ec5 2025-08-14T21:49:41.2070178Z * [new tag] trunk/b1a602762e6a6674b406a3137e7e7a678885a97b -> trunk/b1a602762e6a6674b406a3137e7e7a678885a97b 2025-08-14T21:49:41.2071304Z * [new tag] trunk/b1f43548cad8fc0e30bda250f6e196310fa7a4bc -> trunk/b1f43548cad8fc0e30bda250f6e196310fa7a4bc 2025-08-14T21:49:41.2072462Z * [new tag] trunk/b219ca2a00a305753c4f1ea4c9c5d23243d54753 -> trunk/b219ca2a00a305753c4f1ea4c9c5d23243d54753 2025-08-14T21:49:41.2073488Z * [new tag] trunk/b4596895b9d85a686c2cb978938b0a7797b3690a -> trunk/b4596895b9d85a686c2cb978938b0a7797b3690a 2025-08-14T21:49:41.2074799Z * [new tag] trunk/b5fd7223b1bf44720dc9183bda7dfcf7aeccff02 -> trunk/b5fd7223b1bf44720dc9183bda7dfcf7aeccff02 2025-08-14T21:49:41.2075952Z * [new tag] trunk/b602ea9cab7d43a7ee7b4051227090f23fbd3dbf -> trunk/b602ea9cab7d43a7ee7b4051227090f23fbd3dbf 2025-08-14T21:49:41.2077224Z * [new tag] trunk/b6b74aed604bd2e96389ff99aaaf39abc64fdc64 -> trunk/b6b74aed604bd2e96389ff99aaaf39abc64fdc64 2025-08-14T21:49:41.2078500Z * [new tag] trunk/b7db86600a2614adc71c92ca42d359a7ac534d78 -> trunk/b7db86600a2614adc71c92ca42d359a7ac534d78 2025-08-14T21:49:41.2079834Z * [new tag] trunk/b9003ed3d87699e81e436719625a21996a6654e5 -> trunk/b9003ed3d87699e81e436719625a21996a6654e5 2025-08-14T21:49:41.2081116Z * [new tag] trunk/b90feeac86bda00afc2789321bcd706015ff44e3 -> trunk/b90feeac86bda00afc2789321bcd706015ff44e3 2025-08-14T21:49:41.2082509Z * [new tag] trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 -> trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 2025-08-14T21:49:41.2083723Z * [new tag] trunk/ba47821f524eee50a214ed39fa2e7765d54aabf4 -> trunk/ba47821f524eee50a214ed39fa2e7765d54aabf4 2025-08-14T21:49:41.2085034Z * [new tag] trunk/ba4ccf5d67e3d237f435eacc2bce3c6025f08491 -> trunk/ba4ccf5d67e3d237f435eacc2bce3c6025f08491 2025-08-14T21:49:41.2086298Z * [new tag] trunk/bcf23ecc476df2bd7479f142567213e2623308ee -> trunk/bcf23ecc476df2bd7479f142567213e2623308ee 2025-08-14T21:49:41.2087570Z * [new tag] trunk/be53f609aaf6f01e2863f490975ea9eaac3ee9ff -> trunk/be53f609aaf6f01e2863f490975ea9eaac3ee9ff 2025-08-14T21:49:41.2088788Z * [new tag] trunk/beb4d7816dedc67a5de1f82e5a45b5910f407941 -> trunk/beb4d7816dedc67a5de1f82e5a45b5910f407941 2025-08-14T21:49:41.2090038Z * [new tag] trunk/bfc873d02ec413344717493e4175a902921359fd -> trunk/bfc873d02ec413344717493e4175a902921359fd 2025-08-14T21:49:41.2091447Z * [new tag] trunk/c184cb3852f0ff2d16a489d61abc3739c309e6ca -> trunk/c184cb3852f0ff2d16a489d61abc3739c309e6ca 2025-08-14T21:49:41.2429132Z * [new tag] trunk/c24ca7f4bf79f62fd623d76346ca27e53f731431 -> trunk/c24ca7f4bf79f62fd623d76346ca27e53f731431 2025-08-14T21:49:41.2429996Z * [new tag] trunk/c3dc8dc4122977893004c49d10e4676cd0a97da4 -> trunk/c3dc8dc4122977893004c49d10e4676cd0a97da4 2025-08-14T21:49:41.2430819Z * [new tag] trunk/c5ec5458a547f7a774468ea0eb2258d3de596492 -> trunk/c5ec5458a547f7a774468ea0eb2258d3de596492 2025-08-14T21:49:41.2431632Z * [new tag] trunk/c5efc5c8a66eca84865015058b3221013ebfe685 -> trunk/c5efc5c8a66eca84865015058b3221013ebfe685 2025-08-14T21:49:41.2432425Z * [new tag] trunk/c6563341208003f64c131854a9cf029555f786d2 -> trunk/c6563341208003f64c131854a9cf029555f786d2 2025-08-14T21:49:41.2433223Z * [new tag] trunk/c6d78d4dbda53837d298d23a5fbc09af90a42d9e -> trunk/c6d78d4dbda53837d298d23a5fbc09af90a42d9e 2025-08-14T21:49:41.2434073Z * [new tag] trunk/c8205cb35435f39d2c26f6c94b45e4adeb6dcb23 -> trunk/c8205cb35435f39d2c26f6c94b45e4adeb6dcb23 2025-08-14T21:49:41.2434871Z * [new tag] trunk/c859ba7114b1fcb49527e090745fa17091d1f8d5 -> trunk/c859ba7114b1fcb49527e090745fa17091d1f8d5 2025-08-14T21:49:41.2435667Z * [new tag] trunk/c86040a8e68f754b90a84099187d3624954c7f36 -> trunk/c86040a8e68f754b90a84099187d3624954c7f36 2025-08-14T21:49:41.2436464Z * [new tag] trunk/c9671dc865aa0fc1cb86df754e355b44d8e02bb4 -> trunk/c9671dc865aa0fc1cb86df754e355b44d8e02bb4 2025-08-14T21:49:41.2437280Z * [new tag] trunk/ca7315c17162ea21b1ca5ba23f4bf6168766c7b9 -> trunk/ca7315c17162ea21b1ca5ba23f4bf6168766c7b9 2025-08-14T21:49:41.2438098Z * [new tag] trunk/cae2b5e3d223829bdc553fc8601df4b1c1554cff -> trunk/cae2b5e3d223829bdc553fc8601df4b1c1554cff 2025-08-14T21:49:41.2439047Z * [new tag] trunk/cbffde774557752cf20447d42d99ec6102673c31 -> trunk/cbffde774557752cf20447d42d99ec6102673c31 2025-08-14T21:49:41.2439894Z * [new tag] trunk/cd8d8c18f5bafdc1c73d5ac0129e7b4d76ab45bc -> trunk/cd8d8c18f5bafdc1c73d5ac0129e7b4d76ab45bc 2025-08-14T21:49:41.2441062Z * [new tag] trunk/cf0a0dcb0afa5e84b95461cc542f862b51ca96bf -> trunk/cf0a0dcb0afa5e84b95461cc542f862b51ca96bf 2025-08-14T21:49:41.2442486Z * [new tag] trunk/cf4964be68fa9f4ffc334f01cce42d7424b1cc81 -> trunk/cf4964be68fa9f4ffc334f01cce42d7424b1cc81 2025-08-14T21:49:41.2443309Z * [new tag] trunk/d0e2240f680ea2a553f7ee8188f52482e130bfd0 -> trunk/d0e2240f680ea2a553f7ee8188f52482e130bfd0 2025-08-14T21:49:41.2444120Z * [new tag] trunk/d1950d4bb5cba8fb6b23e4d283eea5b9801737e2 -> trunk/d1950d4bb5cba8fb6b23e4d283eea5b9801737e2 2025-08-14T21:49:41.2444956Z * [new tag] trunk/d20c4c20e61adecf00335c4d8c22eb1ace472cd3 -> trunk/d20c4c20e61adecf00335c4d8c22eb1ace472cd3 2025-08-14T21:49:41.2445788Z * [new tag] trunk/d25c4f954d599ea512e2f70cd6df101c21479d4c -> trunk/d25c4f954d599ea512e2f70cd6df101c21479d4c 2025-08-14T21:49:41.2446586Z * [new tag] trunk/d3d359dbafa89173a371e2637f22b47398e94a24 -> trunk/d3d359dbafa89173a371e2637f22b47398e94a24 2025-08-14T21:49:41.2447387Z * [new tag] trunk/d46768db04499d07a5b0db984112a6d1b7d3b0c1 -> trunk/d46768db04499d07a5b0db984112a6d1b7d3b0c1 2025-08-14T21:49:41.2448188Z * [new tag] trunk/d4c1a08c89f37d249a0146ff511c82ecc5c53b8f -> trunk/d4c1a08c89f37d249a0146ff511c82ecc5c53b8f 2025-08-14T21:49:41.2448998Z * [new tag] trunk/d556586448f3caab85673c7da0978fe31c7748f7 -> trunk/d556586448f3caab85673c7da0978fe31c7748f7 2025-08-14T21:49:41.2449779Z * [new tag] trunk/d670304001429a1a833255a918ed788d7ec4989a -> trunk/d670304001429a1a833255a918ed788d7ec4989a 2025-08-14T21:49:41.2450560Z * [new tag] trunk/d6786741a77aba200c78002646cc069b7a1799b0 -> trunk/d6786741a77aba200c78002646cc069b7a1799b0 2025-08-14T21:49:41.2451476Z * [new tag] trunk/d68c323692dedcbb74e670801e3502944fd790ff -> trunk/d68c323692dedcbb74e670801e3502944fd790ff 2025-08-14T21:49:41.2452292Z * [new tag] trunk/d8cb3db5339b45e4b745b2b883ef3ecde9843e2c -> trunk/d8cb3db5339b45e4b745b2b883ef3ecde9843e2c 2025-08-14T21:49:41.2453122Z * [new tag] trunk/da1f608ca33f3062535d0a4866d95db19e72fcbd -> trunk/da1f608ca33f3062535d0a4866d95db19e72fcbd 2025-08-14T21:49:41.2453941Z * [new tag] trunk/db0b7f1cc9bb3fe71aaf8b964a644147ae8e1c35 -> trunk/db0b7f1cc9bb3fe71aaf8b964a644147ae8e1c35 2025-08-14T21:49:41.2454764Z * [new tag] trunk/db32b60662b2f2bdcad980127d5dc4b66b02a7e4 -> trunk/db32b60662b2f2bdcad980127d5dc4b66b02a7e4 2025-08-14T21:49:41.2455569Z * [new tag] trunk/db763b17175553ba09637362eb9773a91997a7ad -> trunk/db763b17175553ba09637362eb9773a91997a7ad 2025-08-14T21:49:41.2456384Z * [new tag] trunk/db78943a1ca13a32a3d6045eb15e2b719ee13a2f -> trunk/db78943a1ca13a32a3d6045eb15e2b719ee13a2f 2025-08-14T21:49:41.2628065Z * [new tag] trunk/dc0d18e023d9b7e314ebba0f234b6cb1579dbcfd -> trunk/dc0d18e023d9b7e314ebba0f234b6cb1579dbcfd 2025-08-14T21:49:41.2628954Z * [new tag] trunk/dd21c8a578038ab2841a7ba809a06921093ac9d8 -> trunk/dd21c8a578038ab2841a7ba809a06921093ac9d8 2025-08-14T21:49:41.2630459Z * [new tag] trunk/deea71a90e05eb320c04bebfead5317746637f0d -> trunk/deea71a90e05eb320c04bebfead5317746637f0d 2025-08-14T21:49:41.2631293Z * [new tag] trunk/df55ec7d4b35f6d21691e9dd41c82f27de762948 -> trunk/df55ec7d4b35f6d21691e9dd41c82f27de762948 2025-08-14T21:49:41.2644412Z * [new tag] trunk/e1cf0d496ea85d1807c8c740f296e77bf7bdc1df -> trunk/e1cf0d496ea85d1807c8c740f296e77bf7bdc1df 2025-08-14T21:49:41.2645239Z * [new tag] trunk/e248719ac03c103767ab72034f6b9fd56855bf98 -> trunk/e248719ac03c103767ab72034f6b9fd56855bf98 2025-08-14T21:49:41.2646211Z * [new tag] trunk/e49762026070f66be41bfa6537fbcf9bfc24e558 -> trunk/e49762026070f66be41bfa6537fbcf9bfc24e558 2025-08-14T21:49:41.2647039Z * [new tag] trunk/e4de93f6a3e342bab34d3757cf90ec0ccc87e168 -> trunk/e4de93f6a3e342bab34d3757cf90ec0ccc87e168 2025-08-14T21:49:41.2648310Z * [new tag] trunk/e619c6bb90b9dedaccd3cbeed86a288993a4e33f -> trunk/e619c6bb90b9dedaccd3cbeed86a288993a4e33f 2025-08-14T21:49:41.2649412Z * [new tag] trunk/e63c2b21c186a7d2ab8a8953b8aa1535f2e96e58 -> trunk/e63c2b21c186a7d2ab8a8953b8aa1535f2e96e58 2025-08-14T21:49:41.2650221Z * [new tag] trunk/e7152ff8a6a929a0db7f3f4a72a5b6d471769cd3 -> trunk/e7152ff8a6a929a0db7f3f4a72a5b6d471769cd3 2025-08-14T21:49:41.2651056Z * [new tag] trunk/e96c7c4bb0f6aeae2ab3b6f040f7d67edbec199a -> trunk/e96c7c4bb0f6aeae2ab3b6f040f7d67edbec199a 2025-08-14T21:49:41.2651888Z * [new tag] trunk/e9eb2096a59a79e7a94c3e28a0715e040369f34c -> trunk/e9eb2096a59a79e7a94c3e28a0715e040369f34c 2025-08-14T21:49:41.2652695Z * [new tag] trunk/eac2d9d695a32dd456050f45cac35134ec3809f4 -> trunk/eac2d9d695a32dd456050f45cac35134ec3809f4 2025-08-14T21:49:41.2653573Z * [new tag] trunk/ecde76c764752540edf9ef62a97936c86d984b17 -> trunk/ecde76c764752540edf9ef62a97936c86d984b17 2025-08-14T21:49:41.2654944Z * [new tag] trunk/ecea81117b2fdc52907c97b3c32d779e07b5d55b -> trunk/ecea81117b2fdc52907c97b3c32d779e07b5d55b 2025-08-14T21:49:41.2655782Z * [new tag] trunk/edaa151d0d5a4e75fbec9843f49cc78770eb61fb -> trunk/edaa151d0d5a4e75fbec9843f49cc78770eb61fb 2025-08-14T21:49:41.2656622Z * [new tag] trunk/ee1b0412b919dfb358d5a697b3be49621497fbc2 -> trunk/ee1b0412b919dfb358d5a697b3be49621497fbc2 2025-08-14T21:49:41.2657425Z * [new tag] trunk/ee1fb43450c2e985657f95a91b68328d6f20f24e -> trunk/ee1fb43450c2e985657f95a91b68328d6f20f24e 2025-08-14T21:49:41.2658373Z * [new tag] trunk/ee89cc7a0acd69de25f98fe4ef828546db7b444c -> trunk/ee89cc7a0acd69de25f98fe4ef828546db7b444c 2025-08-14T21:49:41.2659206Z * [new tag] trunk/ee9f8ba11d664b871a9e0c7933fdc8571635b78c -> trunk/ee9f8ba11d664b871a9e0c7933fdc8571635b78c 2025-08-14T21:49:41.2660662Z * [new tag] trunk/eed9dbf70f43ee529fec78ac00ed9a4fd74c6e76 -> trunk/eed9dbf70f43ee529fec78ac00ed9a4fd74c6e76 2025-08-14T21:49:41.2661505Z * [new tag] trunk/f077c2402e4eb5b0ed562b4ee5b7a0503f26ef94 -> trunk/f077c2402e4eb5b0ed562b4ee5b7a0503f26ef94 2025-08-14T21:49:41.2662309Z * [new tag] trunk/f0980fc0bbd656d6c02d23ad97e945353b314f35 -> trunk/f0980fc0bbd656d6c02d23ad97e945353b314f35 2025-08-14T21:49:41.2663138Z * [new tag] trunk/f15ada5c6fad97a7dcbfa4673f067b6942dda640 -> trunk/f15ada5c6fad97a7dcbfa4673f067b6942dda640 2025-08-14T21:49:41.2663964Z * [new tag] trunk/f27232a2134150cb5e55d26a74d8c36c6a961ca5 -> trunk/f27232a2134150cb5e55d26a74d8c36c6a961ca5 2025-08-14T21:49:41.2664770Z * [new tag] trunk/f33ce40bc062a281e1a1f57e8c1926d0a7d155cc -> trunk/f33ce40bc062a281e1a1f57e8c1926d0a7d155cc 2025-08-14T21:49:41.2665919Z * [new tag] trunk/f341077ce4710172da20cfad916ee37159bfe9fe -> trunk/f341077ce4710172da20cfad916ee37159bfe9fe 2025-08-14T21:49:41.2667080Z * [new tag] trunk/f3a4d742ece08de4cb0e59dcc62e0093a7d0b0c7 -> trunk/f3a4d742ece08de4cb0e59dcc62e0093a7d0b0c7 2025-08-14T21:49:41.2668011Z * [new tag] trunk/f3f159ff8c4bad2edec99c68a941c628e983d04c -> trunk/f3f159ff8c4bad2edec99c68a941c628e983d04c 2025-08-14T21:49:41.2668847Z * [new tag] trunk/f60454cce8b93e5bbf67f2f3c88c8ac01ed65457 -> trunk/f60454cce8b93e5bbf67f2f3c88c8ac01ed65457 2025-08-14T21:49:41.2669664Z * [new tag] trunk/f7b2f3314cf7aede67d5fa5c75e4243208484344 -> trunk/f7b2f3314cf7aede67d5fa5c75e4243208484344 2025-08-14T21:49:41.2970618Z * [new tag] trunk/f8f0414a5983ff481a2188e0c18594150430c8c5 -> trunk/f8f0414a5983ff481a2188e0c18594150430c8c5 2025-08-14T21:49:41.2971488Z * [new tag] trunk/f95b58c2844b3444cd8446fed8570729dc4216eb -> trunk/f95b58c2844b3444cd8446fed8570729dc4216eb 2025-08-14T21:49:41.2972291Z * [new tag] trunk/f990490a23815ea6ee27e487c70ba2cf513ba43d -> trunk/f990490a23815ea6ee27e487c70ba2cf513ba43d 2025-08-14T21:49:41.2973110Z * [new tag] trunk/fb887c3bb588cfe782615e67f6c26db636b8539b -> trunk/fb887c3bb588cfe782615e67f6c26db636b8539b 2025-08-14T21:49:41.2973919Z * [new tag] trunk/fc25c68f20f772290927a7031b998b92615259cf -> trunk/fc25c68f20f772290927a7031b998b92615259cf 2025-08-14T21:49:41.2974718Z * [new tag] trunk/fc80f6859e0ccf66513a40f04b9e735e759d4ddb -> trunk/fc80f6859e0ccf66513a40f04b9e735e759d4ddb 2025-08-14T21:49:41.2975550Z * [new tag] trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb -> trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb 2025-08-14T21:49:41.2976389Z * [new tag] trunk/fe3f5fe4ea2ff6f56406dc5d954636ebb08d0a08 -> trunk/fe3f5fe4ea2ff6f56406dc5d954636ebb08d0a08 2025-08-14T21:49:41.2977216Z * [new tag] trunk/fea7e9dd37c02c334b130f6624af6163fde6b2ab -> trunk/fea7e9dd37c02c334b130f6624af6163fde6b2ab 2025-08-14T21:49:41.2978035Z * [new tag] trunk/ff0d56d03592aa03f3ced8359241d21df1783393 -> trunk/ff0d56d03592aa03f3ced8359241d21df1783393 2025-08-14T21:49:41.2978608Z * [new tag] v0.1.1 -> v0.1.1 2025-08-14T21:49:41.2978963Z * [new tag] v0.1.10 -> v0.1.10 2025-08-14T21:49:41.2979308Z * [new tag] v0.1.11 -> v0.1.11 2025-08-14T21:49:41.2979647Z * [new tag] v0.1.12 -> v0.1.12 2025-08-14T21:49:41.2979991Z * [new tag] v0.1.2 -> v0.1.2 2025-08-14T21:49:41.2980422Z * [new tag] v0.1.3 -> v0.1.3 2025-08-14T21:49:41.2980770Z * [new tag] v0.1.4 -> v0.1.4 2025-08-14T21:49:41.2981100Z * [new tag] v0.1.5 -> v0.1.5 2025-08-14T21:49:41.2981436Z * [new tag] v0.1.6 -> v0.1.6 2025-08-14T21:49:41.2981776Z * [new tag] v0.1.7 -> v0.1.7 2025-08-14T21:49:41.2982110Z * [new tag] v0.1.8 -> v0.1.8 2025-08-14T21:49:41.2982459Z * [new tag] v0.1.9 -> v0.1.9 2025-08-14T21:49:41.2982790Z * [new tag] v0.2.0 -> v0.2.0 2025-08-14T21:49:41.2983121Z * [new tag] v0.3.0 -> v0.3.0 2025-08-14T21:49:41.2983451Z * [new tag] v0.3.1 -> v0.3.1 2025-08-14T21:49:41.2983790Z * [new tag] v0.4.0 -> v0.4.0 2025-08-14T21:49:41.2984134Z * [new tag] v0.4.1 -> v0.4.1 2025-08-14T21:49:41.2984467Z * [new tag] v1.0.0 -> v1.0.0 2025-08-14T21:49:41.2984821Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-08-14T21:49:41.2985163Z * [new tag] v1.0.1 -> v1.0.1 2025-08-14T21:49:41.2985516Z * [new tag] v1.0rc0 -> v1.0rc0 2025-08-14T21:49:41.2985989Z * [new tag] v1.0rc1 -> v1.0rc1 2025-08-14T21:49:41.2986336Z * [new tag] v1.1.0 -> v1.1.0 2025-08-14T21:49:41.2986687Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-08-14T21:49:41.2987031Z * [new tag] v1.10.0 -> v1.10.0 2025-08-14T21:49:41.2987404Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-08-14T21:49:41.2987865Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-08-14T21:49:41.2988241Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-08-14T21:49:41.2988598Z * [new tag] v1.10.1 -> v1.10.1 2025-08-14T21:49:41.2988963Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-08-14T21:49:41.2989325Z * [new tag] v1.10.2 -> v1.10.2 2025-08-14T21:49:41.2989669Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-08-14T21:49:41.2990036Z * [new tag] v1.11.0 -> v1.11.0 2025-08-14T21:49:41.2990387Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-08-14T21:49:41.2990752Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-08-14T21:49:41.2991105Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-08-14T21:49:41.2991479Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-08-14T21:49:41.2991837Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-08-14T21:49:41.2992193Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-08-14T21:49:41.2992554Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-08-14T21:49:41.2992897Z * [new tag] v1.12.0 -> v1.12.0 2025-08-14T21:49:41.2993247Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-08-14T21:49:41.3336356Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-08-14T21:49:41.3336788Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-08-14T21:49:41.3337154Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-08-14T21:49:41.3337526Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-08-14T21:49:41.3338029Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-08-14T21:49:41.3338385Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-08-14T21:49:41.3338736Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-08-14T21:49:41.3339102Z * [new tag] v1.12.1 -> v1.12.1 2025-08-14T21:49:41.3339468Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-08-14T21:49:41.3339818Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-08-14T21:49:41.3340174Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-08-14T21:49:41.3341211Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-08-14T21:49:41.3341995Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-08-14T21:49:41.3342363Z * [new tag] v1.13.0 -> v1.13.0 2025-08-14T21:49:41.3342725Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-08-14T21:49:41.3343091Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-08-14T21:49:41.3343444Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-08-14T21:49:41.3343805Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-08-14T21:49:41.3344157Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-08-14T21:49:41.3344524Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-08-14T21:49:41.3344878Z * [new tag] v1.13.1 -> v1.13.1 2025-08-14T21:49:41.3345222Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-08-14T21:49:41.3345639Z * [new tag] v1.2.0 -> v1.2.0 2025-08-14T21:49:41.3345987Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-08-14T21:49:41.3346949Z * [new tag] v1.3.0 -> v1.3.0 2025-08-14T21:49:41.3347835Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-08-14T21:49:41.3348202Z * [new tag] v1.3.1 -> v1.3.1 2025-08-14T21:49:41.3348556Z * [new tag] v1.4.0 -> v1.4.0 2025-08-14T21:49:41.3348899Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-08-14T21:49:41.3349258Z * [new tag] v1.4.1 -> v1.4.1 2025-08-14T21:49:41.3349597Z * [new tag] v1.5.0 -> v1.5.0 2025-08-14T21:49:41.3349953Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-08-14T21:49:41.3350307Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-08-14T21:49:41.3350683Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-08-14T21:49:41.3351048Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-08-14T21:49:41.3351410Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-08-14T21:49:41.3351772Z * [new tag] v1.5.1 -> v1.5.1 2025-08-14T21:49:41.3352716Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-08-14T21:49:41.3353482Z * [new tag] v1.6.0 -> v1.6.0 2025-08-14T21:49:41.3353842Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-08-14T21:49:41.3354186Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-08-14T21:49:41.3354549Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-08-14T21:49:41.3354902Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-08-14T21:49:41.3355267Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-08-14T21:49:41.3355616Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-08-14T21:49:41.3356093Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-08-14T21:49:41.3356441Z * [new tag] v1.7.0 -> v1.7.0 2025-08-14T21:49:41.3356786Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-08-14T21:49:41.3357147Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-08-14T21:49:41.3357493Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-08-14T21:49:41.3358441Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-08-14T21:49:41.3359203Z * [new tag] v1.7.1 -> v1.7.1 2025-08-14T21:49:41.3359553Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-08-14T21:49:41.3359907Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-08-14T21:49:41.3360260Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-08-14T21:49:41.3360626Z * [new tag] v1.8.0 -> v1.8.0 2025-08-14T21:49:41.3360967Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-08-14T21:49:41.3361320Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-08-14T21:49:41.3702348Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-08-14T21:49:41.3702799Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-08-14T21:49:41.3703169Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-08-14T21:49:41.3703519Z * [new tag] v1.8.1 -> v1.8.1 2025-08-14T21:49:41.3703881Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-08-14T21:49:41.3704289Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-08-14T21:49:41.3704687Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-08-14T21:49:41.3705049Z * [new tag] v1.8.2 -> v1.8.2 2025-08-14T21:49:41.3705582Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-08-14T21:49:41.3705949Z * [new tag] v1.9.0 -> v1.9.0 2025-08-14T21:49:41.3706299Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-08-14T21:49:41.3706648Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-08-14T21:49:41.3707008Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-08-14T21:49:41.3707357Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-08-14T21:49:41.3707710Z * [new tag] v1.9.1 -> v1.9.1 2025-08-14T21:49:41.3708049Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-08-14T21:49:41.3708409Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-08-14T21:49:41.3708757Z * [new tag] v2.0.0 -> v2.0.0 2025-08-14T21:49:41.3709112Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-08-14T21:49:41.3709468Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-08-14T21:49:41.3709815Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-08-14T21:49:41.3710220Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-08-14T21:49:41.3710617Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-08-14T21:49:41.3710984Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-08-14T21:49:41.3711333Z * [new tag] v2.0.1 -> v2.0.1 2025-08-14T21:49:41.3711673Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-08-14T21:49:41.3712031Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-08-14T21:49:41.3712384Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-08-14T21:49:41.3712829Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-08-14T21:49:41.3713175Z * [new tag] v2.1.0 -> v2.1.0 2025-08-14T21:49:41.3713515Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-08-14T21:49:41.3713888Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-08-14T21:49:41.3714247Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-08-14T21:49:41.3714601Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-08-14T21:49:41.3714950Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-08-14T21:49:41.3715295Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-08-14T21:49:41.3715696Z * [new tag] v2.1.1 -> v2.1.1 2025-08-14T21:49:41.3716041Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-08-14T21:49:41.3716450Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-08-14T21:49:41.3716796Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-08-14T21:49:41.3717153Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-08-14T21:49:41.3717511Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-08-14T21:49:41.3717863Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-08-14T21:49:41.3718209Z * [new tag] v2.1.2 -> v2.1.2 2025-08-14T21:49:41.3718550Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-08-14T21:49:41.3718900Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-08-14T21:49:41.3719255Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-08-14T21:49:41.3719598Z * [new tag] v2.2.0 -> v2.2.0 2025-08-14T21:49:41.3719949Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-08-14T21:49:41.3720376Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-08-14T21:49:41.3720748Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-08-14T21:49:41.3721099Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-08-14T21:49:41.3721505Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-08-14T21:49:41.3721865Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-08-14T21:49:41.3722260Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-08-14T21:49:41.3722612Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-08-14T21:49:41.3722967Z * [new tag] v2.2.1 -> v2.2.1 2025-08-14T21:49:41.3723319Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-08-14T21:49:41.4066580Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-08-14T21:49:41.4067047Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-08-14T21:49:41.4067404Z * [new tag] v2.2.2 -> v2.2.2 2025-08-14T21:49:41.4067753Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-08-14T21:49:41.4068119Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-08-14T21:49:41.4068471Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-08-14T21:49:41.4068816Z * [new tag] v2.3.0 -> v2.3.0 2025-08-14T21:49:41.4069166Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-08-14T21:49:41.4069525Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-08-14T21:49:41.4069897Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-08-14T21:49:41.4070253Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-08-14T21:49:41.4070765Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-08-14T21:49:41.4071120Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-08-14T21:49:41.4071474Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-08-14T21:49:41.4071831Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-08-14T21:49:41.4072181Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-08-14T21:49:41.4072536Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-08-14T21:49:41.4072882Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-08-14T21:49:41.4073235Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-08-14T21:49:41.4073583Z * [new tag] v2.3.1 -> v2.3.1 2025-08-14T21:49:41.4073926Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-08-14T21:49:41.4074284Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-08-14T21:49:41.4074628Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-08-14T21:49:41.4074972Z * [new tag] v2.4.0 -> v2.4.0 2025-08-14T21:49:41.4075311Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-08-14T21:49:41.4075660Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-08-14T21:49:41.4076016Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-08-14T21:49:41.4076369Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-08-14T21:49:41.4076727Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-08-14T21:49:41.4077072Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-08-14T21:49:41.4077424Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-08-14T21:49:41.4077861Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-08-14T21:49:41.4078224Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-08-14T21:49:41.4078583Z * [new tag] v2.4.1 -> v2.4.1 2025-08-14T21:49:41.4078931Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-08-14T21:49:41.4079282Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-08-14T21:49:41.4079636Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-08-14T21:49:41.4079994Z * [new tag] v2.5.0 -> v2.5.0 2025-08-14T21:49:41.4080337Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-08-14T21:49:41.4080692Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-08-14T21:49:41.4081049Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-08-14T21:49:41.4081403Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-08-14T21:49:41.4081754Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-08-14T21:49:41.4082099Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-08-14T21:49:41.4082457Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-08-14T21:49:41.4082808Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-08-14T21:49:41.4083157Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-08-14T21:49:41.4083518Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-08-14T21:49:41.4083856Z * [new tag] v2.5.1 -> v2.5.1 2025-08-14T21:49:41.4084198Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-08-14T21:49:41.4084537Z * [new tag] v2.6.0 -> v2.6.0 2025-08-14T21:49:41.4084882Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-08-14T21:49:41.4085320Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-08-14T21:49:41.4085670Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-08-14T21:49:41.4086034Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-08-14T21:49:41.4086384Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-08-14T21:49:41.4086745Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-08-14T21:49:41.4087107Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-08-14T21:49:41.8126387Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-08-14T21:49:41.8126795Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-08-14T21:49:41.8127168Z * [new tag] v2.7.0 -> v2.7.0 2025-08-14T21:49:41.8127520Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-08-14T21:49:41.8127930Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-08-14T21:49:41.8128301Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-08-14T21:49:41.8128656Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-08-14T21:49:41.8129021Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-08-14T21:49:41.8129385Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-08-14T21:49:41.8129796Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-08-14T21:49:41.8130198Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-08-14T21:49:41.8130551Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-08-14T21:49:41.8130916Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-08-14T21:49:41.8131261Z * [new tag] v2.7.1 -> v2.7.1 2025-08-14T21:49:41.8131782Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-08-14T21:49:41.8132141Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-08-14T21:49:41.8132501Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-08-14T21:49:41.8132860Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-08-14T21:49:41.8133212Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-08-14T21:49:41.8133563Z * [new tag] v2.8.0 -> v2.8.0 2025-08-14T21:49:41.8133908Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-08-14T21:49:41.8134267Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-08-14T21:49:41.8134626Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-08-14T21:49:41.8134969Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-08-14T21:49:41.8135334Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-08-14T21:49:41.8135731Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-08-14T21:49:41.8136127Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-08-14T21:49:41.8136468Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-08-14T21:49:41.8136839Z * [new tag] whc_flight_1 -> whc_flight_1 2025-08-14T21:49:41.8137220Z * [new tag] whc_flight_2 -> whc_flight_2 2025-08-14T21:49:41.8137581Z * [new tag] whc_flight_4 -> whc_flight_4 2025-08-14T21:49:41.8324177Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 1fc683cf17c8c673044538d10266c00f92987be2^{object} 2025-08-14T21:49:41.8535539Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:49:41.8568008Z ##[endgroup] 2025-08-14T21:49:41.8568428Z ##[group]Determining the checkout info 2025-08-14T21:49:41.8569770Z ##[endgroup] 2025-08-14T21:49:41.8580014Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-08-14T21:49:41.8842916Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-08-14T21:49:41.9065727Z ##[group]Checking out the ref 2025-08-14T21:49:41.9076329Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:49:42.9855737Z Updating files: 10% (2046/19474) 2025-08-14T21:49:43.0562938Z Updating files: 11% (2143/19474) 2025-08-14T21:49:43.1190541Z Updating files: 12% (2337/19474) 2025-08-14T21:49:43.1764967Z Updating files: 13% (2532/19474) 2025-08-14T21:49:43.2414994Z Updating files: 14% (2727/19474) 2025-08-14T21:49:43.2977685Z Updating files: 15% (2922/19474) 2025-08-14T21:49:43.3620350Z Updating files: 16% (3116/19474) 2025-08-14T21:49:43.4361967Z Updating files: 17% (3311/19474) 2025-08-14T21:49:43.5044655Z Updating files: 18% (3506/19474) 2025-08-14T21:49:43.5702260Z Updating files: 19% (3701/19474) 2025-08-14T21:49:43.6375460Z Updating files: 20% (3895/19474) 2025-08-14T21:49:43.9552367Z Updating files: 21% (4090/19474) 2025-08-14T21:49:43.9848933Z Updating files: 21% (4202/19474) 2025-08-14T21:49:44.1603472Z Updating files: 22% (4285/19474) 2025-08-14T21:49:44.2341238Z Updating files: 23% (4480/19474) 2025-08-14T21:49:44.3065920Z Updating files: 24% (4674/19474) 2025-08-14T21:49:44.3460697Z Updating files: 25% (4869/19474) 2025-08-14T21:49:44.3790239Z Updating files: 26% (5064/19474) 2025-08-14T21:49:44.4069777Z Updating files: 27% (5258/19474) 2025-08-14T21:49:44.4397590Z Updating files: 28% (5453/19474) 2025-08-14T21:49:44.4722683Z Updating files: 29% (5648/19474) 2025-08-14T21:49:44.5768487Z Updating files: 30% (5843/19474) 2025-08-14T21:49:44.7485873Z Updating files: 31% (6037/19474) 2025-08-14T21:49:44.8582796Z Updating files: 32% (6232/19474) 2025-08-14T21:49:44.9549757Z Updating files: 33% (6427/19474) 2025-08-14T21:49:44.9832102Z Updating files: 33% (6580/19474) 2025-08-14T21:49:45.1375377Z Updating files: 34% (6622/19474) 2025-08-14T21:49:45.2948412Z Updating files: 35% (6816/19474) 2025-08-14T21:49:45.3829857Z Updating files: 36% (7011/19474) 2025-08-14T21:49:45.4454405Z Updating files: 37% (7206/19474) 2025-08-14T21:49:45.5112299Z Updating files: 38% (7401/19474) 2025-08-14T21:49:45.6191314Z Updating files: 39% (7595/19474) 2025-08-14T21:49:45.6823307Z Updating files: 40% (7790/19474) 2025-08-14T21:49:45.7975387Z Updating files: 41% (7985/19474) 2025-08-14T21:49:45.8545946Z Updating files: 42% (8180/19474) 2025-08-14T21:49:45.9134700Z Updating files: 43% (8374/19474) 2025-08-14T21:49:45.9596415Z Updating files: 44% (8569/19474) 2025-08-14T21:49:46.0161222Z Updating files: 44% (8669/19474) 2025-08-14T21:49:46.1331326Z Updating files: 45% (8764/19474) 2025-08-14T21:49:46.1985961Z Updating files: 46% (8959/19474) 2025-08-14T21:49:46.4332377Z Updating files: 47% (9153/19474) 2025-08-14T21:49:46.5498917Z Updating files: 48% (9348/19474) 2025-08-14T21:49:46.7548280Z Updating files: 49% (9543/19474) 2025-08-14T21:49:46.8161588Z Updating files: 50% (9737/19474) 2025-08-14T21:49:46.8776577Z Updating files: 51% (9932/19474) 2025-08-14T21:49:46.9548341Z Updating files: 52% (10127/19474) 2025-08-14T21:49:46.9648541Z Updating files: 52% (10294/19474) 2025-08-14T21:49:47.0299083Z Updating files: 53% (10322/19474) 2025-08-14T21:49:47.0919062Z Updating files: 54% (10516/19474) 2025-08-14T21:49:47.1866949Z Updating files: 55% (10711/19474) 2025-08-14T21:49:47.2493922Z Updating files: 56% (10906/19474) 2025-08-14T21:49:47.3444765Z Updating files: 57% (11101/19474) 2025-08-14T21:49:47.4077992Z Updating files: 58% (11295/19474) 2025-08-14T21:49:47.4762092Z Updating files: 59% (11490/19474) 2025-08-14T21:49:47.5754266Z Updating files: 60% (11685/19474) 2025-08-14T21:49:47.6427999Z Updating files: 61% (11880/19474) 2025-08-14T21:49:47.7345388Z Updating files: 62% (12074/19474) 2025-08-14T21:49:47.8034216Z Updating files: 63% (12269/19474) 2025-08-14T21:49:47.8733081Z Updating files: 64% (12464/19474) 2025-08-14T21:49:47.9595075Z Updating files: 65% (12659/19474) 2025-08-14T21:49:47.9662091Z Updating files: 65% (12832/19474) 2025-08-14T21:49:48.2188258Z Updating files: 66% (12853/19474) 2025-08-14T21:49:48.2822033Z Updating files: 67% (13048/19474) 2025-08-14T21:49:48.3901465Z Updating files: 68% (13243/19474) 2025-08-14T21:49:48.4673433Z Updating files: 69% (13438/19474) 2025-08-14T21:49:48.6352302Z Updating files: 70% (13632/19474) 2025-08-14T21:49:48.7156393Z Updating files: 71% (13827/19474) 2025-08-14T21:49:48.7815005Z Updating files: 72% (14022/19474) 2025-08-14T21:49:48.9162708Z Updating files: 73% (14217/19474) 2025-08-14T21:49:48.9647155Z Updating files: 74% (14411/19474) 2025-08-14T21:49:49.0524652Z Updating files: 74% (14486/19474) 2025-08-14T21:49:49.2397564Z Updating files: 75% (14606/19474) 2025-08-14T21:49:49.3635005Z Updating files: 76% (14801/19474) 2025-08-14T21:49:49.6786262Z Updating files: 77% (14995/19474) 2025-08-14T21:49:49.8050485Z Updating files: 78% (15190/19474) 2025-08-14T21:49:49.9276322Z Updating files: 79% (15385/19474) 2025-08-14T21:49:49.9709972Z Updating files: 80% (15580/19474) 2025-08-14T21:49:50.0775032Z Updating files: 80% (15644/19474) 2025-08-14T21:49:50.2141513Z Updating files: 81% (15774/19474) 2025-08-14T21:49:50.3929675Z Updating files: 82% (15969/19474) 2025-08-14T21:49:50.4989895Z Updating files: 83% (16164/19474) 2025-08-14T21:49:50.6777937Z Updating files: 84% (16359/19474) 2025-08-14T21:49:50.8233064Z Updating files: 85% (16553/19474) 2025-08-14T21:49:50.9284437Z Updating files: 86% (16748/19474) 2025-08-14T21:49:50.9849400Z Updating files: 87% (16943/19474) 2025-08-14T21:49:51.0524197Z Updating files: 87% (17010/19474) 2025-08-14T21:49:51.1520130Z Updating files: 88% (17138/19474) 2025-08-14T21:49:51.2691268Z Updating files: 89% (17332/19474) 2025-08-14T21:49:51.3958756Z Updating files: 90% (17527/19474) 2025-08-14T21:49:51.5044907Z Updating files: 91% (17722/19474) 2025-08-14T21:49:51.6543458Z Updating files: 92% (17917/19474) 2025-08-14T21:49:51.8050802Z Updating files: 93% (18111/19474) 2025-08-14T21:49:51.9420797Z Updating files: 94% (18306/19474) 2025-08-14T21:49:51.9724330Z Updating files: 95% (18501/19474) 2025-08-14T21:49:52.0574114Z Updating files: 95% (18546/19474) 2025-08-14T21:49:52.3002189Z Updating files: 96% (18696/19474) 2025-08-14T21:49:52.4105265Z Updating files: 97% (18890/19474) 2025-08-14T21:49:52.5520460Z Updating files: 98% (19085/19474) 2025-08-14T21:49:52.6891615Z Updating files: 99% (19280/19474) 2025-08-14T21:49:52.6891971Z Updating files: 100% (19474/19474) 2025-08-14T21:49:52.6892245Z Updating files: 100% (19474/19474), done. 2025-08-14T21:49:52.7309804Z Note: switching to '1fc683cf17c8c673044538d10266c00f92987be2'. 2025-08-14T21:49:52.7310126Z 2025-08-14T21:49:52.7310403Z You are in 'detached HEAD' state. You can look around, make experimental 2025-08-14T21:49:52.7310913Z changes and commit them, and you can discard any commits you make in this 2025-08-14T21:49:52.7311432Z state without impacting any branches by switching back to a branch. 2025-08-14T21:49:52.7311729Z 2025-08-14T21:49:52.7311932Z If you want to create a new branch to retain commits you create, you may 2025-08-14T21:49:52.7312384Z do so (now or later) by using -c with the switch command. Example: 2025-08-14T21:49:52.7312657Z 2025-08-14T21:49:52.7312763Z git switch -c 2025-08-14T21:49:52.7312939Z 2025-08-14T21:49:52.7313033Z Or undo this operation with: 2025-08-14T21:49:52.7313202Z 2025-08-14T21:49:52.7313277Z git switch - 2025-08-14T21:49:52.7313390Z 2025-08-14T21:49:52.7313616Z Turn off this advice by setting config variable advice.detachedHead to false 2025-08-14T21:49:52.7313938Z 2025-08-14T21:49:52.7314310Z HEAD is now at 1fc683cf17c [Inductor] Allow indexing a flexible layout for extract_input_node_reduction_ranges (#160645) 2025-08-14T21:49:52.7519988Z ##[endgroup] 2025-08-14T21:49:52.7520423Z ##[group]Setting up auth for fetching submodules 2025-08-14T21:49:52.7532712Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-14T21:49:52.7790316Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-08-14T21:49:52.8020990Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-14T21:49:52.8259952Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-14T21:49:52.8482653Z ##[endgroup] 2025-08-14T21:49:52.8483101Z ##[group]Fetching submodules 2025-08-14T21:49:52.8492535Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-08-14T21:49:53.2076037Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-08-14T21:49:53.6544527Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-08-14T21:49:53.6545537Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-08-14T21:49:53.6546464Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-08-14T21:49:53.6547360Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-08-14T21:49:53.6548172Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-08-14T21:49:53.6549280Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-08-14T21:49:53.6551376Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-08-14T21:49:53.6552256Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-08-14T21:49:53.6553093Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-08-14T21:49:53.6554073Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-08-14T21:49:53.6555084Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-08-14T21:49:53.6556034Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-08-14T21:49:53.6557026Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-08-14T21:49:53.6557972Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-08-14T21:49:53.6558784Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-08-14T21:49:53.6559708Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-08-14T21:49:53.6560719Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-08-14T21:49:53.6561564Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-08-14T21:49:53.6562545Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:49:53.6563424Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-08-14T21:49:53.6564388Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-08-14T21:49:53.6565218Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-08-14T21:49:53.6565995Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-08-14T21:49:53.6566796Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-08-14T21:49:53.6567698Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-08-14T21:49:53.6568656Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-08-14T21:49:53.6569519Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-08-14T21:49:53.6570323Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-08-14T21:49:53.6571294Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-08-14T21:49:53.6572333Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-08-14T21:49:53.6573267Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-08-14T21:49:53.6574330Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-08-14T21:49:53.6575341Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-08-14T21:49:53.6616842Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-08-14T21:49:53.6617782Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-08-14T21:49:53.6618663Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-08-14T21:49:53.6619527Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-08-14T21:49:53.7434747Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-08-14T21:49:54.2560284Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-08-14T21:49:54.2560926Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-08-14T21:49:55.1657430Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-08-14T21:50:03.0939954Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-08-14T21:50:03.0943184Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-08-14T21:50:03.0944224Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-08-14T21:50:03.0946052Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-08-14T21:50:03.0948378Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-08-14T21:50:03.0949875Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-08-14T21:50:03.0952263Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-08-14T21:50:03.0954679Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-08-14T21:50:03.0957235Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-08-14T21:50:03.0961132Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-08-14T21:50:03.0962623Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-08-14T21:50:03.0963588Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-08-14T21:50:03.0964791Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-08-14T21:50:03.4676694Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-08-14T21:50:21.4815399Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-08-14T21:50:21.4816031Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-08-14T21:50:21.4816636Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-08-14T21:50:21.4817332Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-08-14T21:50:21.4817910Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-08-14T21:50:21.4818532Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-08-14T21:50:21.4819087Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-08-14T21:50:21.4819642Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-08-14T21:50:21.4820266Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-08-14T21:50:21.4820887Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-08-14T21:50:21.4821422Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-08-14T21:50:21.4821997Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-08-14T21:50:21.4822571Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-08-14T21:50:21.4823127Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-08-14T21:50:21.4823878Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-08-14T21:50:21.4824424Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-08-14T21:50:21.4824965Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-08-14T21:50:21.4825511Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-08-14T21:50:21.4826147Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-08-14T21:50:21.5978297Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-14T21:50:21.7108429Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-14T21:50:21.7849387Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-14T21:50:22.3096032Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-14T21:50:22.9081424Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-14T21:50:23.1517525Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-14T21:50:30.8959751Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-14T21:50:32.0730052Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-14T21:50:32.0838231Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:50:35.3247130Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-08-14T21:50:38.5943045Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-14T21:50:38.7707144Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-14T21:50:42.9482720Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-14T21:50:43.1465710Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-14T21:50:43.6746776Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-14T21:50:43.9968293Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-14T21:50:50.2188241Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-14T21:50:51.5438522Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-14T21:50:51.5657133Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-08-14T21:50:51.5658279Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:50:51.5659460Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:50:51.5660446Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-08-14T21:50:51.5662533Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-08-14T21:50:51.5663633Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:50:51.5664681Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-08-14T21:51:00.8315062Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-08-14T21:51:00.8316031Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-08-14T21:51:00.8316744Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-08-14T21:51:00.8317480Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-08-14T21:51:00.8318233Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-08-14T21:51:00.8318924Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-08-14T21:51:00.8319659Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-08-14T21:51:01.0573403Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-14T21:51:04.7209831Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-14T21:51:05.2892904Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-14T21:51:11.4894074Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-14T21:51:11.7769655Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T21:51:11.8717508Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-14T21:51:12.7153375Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-14T21:51:13.2926834Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-14T21:51:13.3048624Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:51:13.3049909Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:51:17.2007350Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-08-14T21:51:17.2008189Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-08-14T21:51:19.8655227Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-14T21:51:24.7860184Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-14T21:51:26.6428574Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-14T21:51:26.8074574Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-14T21:51:27.2046848Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-14T21:51:27.4116290Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-14T21:51:27.7134269Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T21:51:27.7947662Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-14T21:51:27.8046481Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-08-14T21:51:38.9751401Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-08-14T21:51:42.9561049Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-14T21:51:43.1494692Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-14T21:51:43.8153305Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-14T21:51:43.8296745Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:51:43.8297925Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:51:43.8299078Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:51:45.7612329Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-08-14T21:51:45.7613177Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-08-14T21:51:45.7613974Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-08-14T21:51:46.2334333Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-14T21:51:46.2562873Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:51:46.2564701Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:51:46.2565830Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:51:46.2566997Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:51:46.2568193Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:51:46.2570717Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:51:46.2571956Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:51:46.2573122Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:51:54.2436220Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-08-14T21:51:54.2437203Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-08-14T21:51:54.2438175Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-08-14T21:51:54.2439134Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-08-14T21:51:54.2440093Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-08-14T21:51:54.2441070Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-08-14T21:51:54.2442033Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-08-14T21:51:54.2442971Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-08-14T21:51:55.3071183Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-14T21:51:55.5343806Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-14T21:51:55.7672496Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-14T21:51:55.8787436Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-14T21:51:55.8896428Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:51:56.3061689Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-08-14T21:51:56.3742631Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-14T21:51:56.6021147Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-14T21:51:57.1077392Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-14T21:51:57.6061120Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-14T21:51:57.7193724Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-14T21:51:57.8666399Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-14T21:51:58.0845515Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-14T21:51:58.7165999Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-14T21:51:58.9050747Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-14T21:51:59.5292212Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-14T21:52:02.7454851Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-14T21:52:02.7585885Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-08-14T21:52:03.8515651Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-08-14T21:52:04.0247975Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T21:52:04.8475969Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-14T21:52:04.8704166Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:52:04.8705348Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:52:04.8706433Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:52:04.8707610Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:52:04.8708914Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:52:04.8710508Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:52:04.8711844Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:52:04.8712941Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:52:04.9243891Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-08-14T21:52:15.3895207Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-08-14T21:52:15.3896186Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-08-14T21:52:15.3897066Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-08-14T21:52:15.3897943Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-08-14T21:52:15.3898818Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-08-14T21:52:15.3899680Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-08-14T21:52:15.3900480Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-08-14T21:52:15.5179270Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-14T21:52:15.7091782Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-14T21:52:15.7947491Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-14T21:52:16.2922268Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-14T21:52:16.3818815Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-14T21:52:16.5065106Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-14T21:52:16.6241954Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-14T21:52:16.6364152Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:52:18.9163810Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:52:18.9165068Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-08-14T21:52:18.9166122Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-08-14T21:52:19.5903795Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-14T21:52:19.7956231Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-14T21:52:25.9878822Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-14T21:52:26.0715121Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-14T21:52:27.3242850Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-14T21:52:27.3391354Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:52:27.3392512Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-08-14T21:52:28.5595792Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-08-14T21:52:28.5596621Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-08-14T21:52:28.6341493Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-14T21:52:28.8971824Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-14T21:52:28.9625827Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-14T21:52:29.0770688Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-14T21:52:29.4174357Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T21:52:29.5538870Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-14T21:52:29.7414735Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-14T21:52:29.9276741Z Submodule path 'third_party/tensorpipe': checked out 'dacda0567d9f23d4bc503e1c4f84aa65f33ac38a' 2025-08-14T21:52:29.9439183Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:52:29.9440277Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:52:29.9441530Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:52:29.9442615Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:52:32.0416554Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-08-14T21:52:32.0417384Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-08-14T21:52:32.0418151Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-08-14T21:52:32.0418954Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-08-14T21:52:32.5792509Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-14T21:52:32.7537954Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-14T21:52:33.5254365Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-14T21:52:33.8346780Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-14T21:52:33.8451607Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:52:34.1445834Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-08-14T21:52:34.2036177Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-14T21:52:34.2261421Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-08-14T21:52:34.6044365Z Entering 'android/libs/fbjni' 2025-08-14T21:52:34.6413587Z Entering 'third_party/FP16' 2025-08-14T21:52:34.6769727Z Entering 'third_party/FXdiv' 2025-08-14T21:52:34.7129504Z Entering 'third_party/NNPACK' 2025-08-14T21:52:34.7489400Z Entering 'third_party/NVTX' 2025-08-14T21:52:34.7849112Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:52:34.8210521Z Entering 'third_party/XNNPACK' 2025-08-14T21:52:34.8600259Z Entering 'third_party/aiter' 2025-08-14T21:52:34.8972862Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:52:34.9349069Z Entering 'third_party/benchmark' 2025-08-14T21:52:34.9739070Z Entering 'third_party/composable_kernel' 2025-08-14T21:52:35.0139859Z Entering 'third_party/cpp-httplib' 2025-08-14T21:52:35.0513255Z Entering 'third_party/cpuinfo' 2025-08-14T21:52:35.0903390Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:52:35.1272448Z Entering 'third_party/cutlass' 2025-08-14T21:52:35.1655626Z Entering 'third_party/fbgemm' 2025-08-14T21:52:35.2025487Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:52:35.2391135Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:52:35.2754064Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:52:35.3125317Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:52:35.3520910Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:52:35.3915591Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:52:35.4270072Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:52:35.4652105Z Entering 'third_party/flash-attention' 2025-08-14T21:52:35.4999601Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:52:35.5371588Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:52:35.5750120Z Entering 'third_party/flatbuffers' 2025-08-14T21:52:35.6157708Z Entering 'third_party/fmt' 2025-08-14T21:52:35.6543420Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:52:35.6925274Z Entering 'third_party/gloo' 2025-08-14T21:52:35.7289947Z Entering 'third_party/googletest' 2025-08-14T21:52:35.7723996Z Entering 'third_party/ideep' 2025-08-14T21:52:35.8119665Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:52:35.8510594Z Entering 'third_party/ittapi' 2025-08-14T21:52:35.8875531Z Entering 'third_party/kineto' 2025-08-14T21:52:35.9225101Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:52:35.9579167Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:52:35.9982104Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:52:36.0349192Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:52:36.0712707Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:52:36.1069303Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:52:36.1456794Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:52:36.1824833Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:52:36.2229456Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:52:36.2598307Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:52:36.2995266Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:52:36.3363336Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:52:36.3743988Z Entering 'third_party/kleidiai' 2025-08-14T21:52:36.4117413Z Entering 'third_party/mimalloc' 2025-08-14T21:52:36.4482289Z Entering 'third_party/nlohmann' 2025-08-14T21:52:36.4841705Z Entering 'third_party/onnx' 2025-08-14T21:52:36.5217209Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:52:36.5600351Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:52:36.5990889Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:52:36.6357831Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:52:36.6723775Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:52:36.7108576Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:52:36.7487751Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:52:36.7863937Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:52:36.8233107Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:52:36.8593984Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:52:36.8962660Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:52:36.9349657Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:52:36.9765347Z Entering 'third_party/pocketfft' 2025-08-14T21:52:37.0162639Z Entering 'third_party/protobuf' 2025-08-14T21:52:37.0526127Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:52:37.0896373Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:52:37.1280875Z Entering 'third_party/psimd' 2025-08-14T21:52:37.1647717Z Entering 'third_party/pthreadpool' 2025-08-14T21:52:37.2046678Z Entering 'third_party/pybind11' 2025-08-14T21:52:37.2416229Z Entering 'third_party/python-peachpy' 2025-08-14T21:52:37.2778940Z Entering 'third_party/sleef' 2025-08-14T21:52:37.3163790Z Entering 'third_party/tensorpipe' 2025-08-14T21:52:37.3518917Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:52:37.3883301Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:52:37.4290624Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:52:37.4666959Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:52:37.5033165Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:52:37.5545988Z ##[endgroup] 2025-08-14T21:52:37.5546481Z ##[group]Persisting credentials for submodules 2025-08-14T21:52:37.5563468Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-08-14T21:52:37.9868589Z Entering 'android/libs/fbjni' 2025-08-14T21:52:38.0420640Z Entering 'third_party/FP16' 2025-08-14T21:52:38.0974477Z Entering 'third_party/FXdiv' 2025-08-14T21:52:38.1532141Z Entering 'third_party/NNPACK' 2025-08-14T21:52:38.2059836Z Entering 'third_party/NVTX' 2025-08-14T21:52:38.2602683Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:52:38.3140977Z Entering 'third_party/XNNPACK' 2025-08-14T21:52:38.3691399Z Entering 'third_party/aiter' 2025-08-14T21:52:38.4226057Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:52:38.4795970Z Entering 'third_party/benchmark' 2025-08-14T21:52:38.5350687Z Entering 'third_party/composable_kernel' 2025-08-14T21:52:38.5900668Z Entering 'third_party/cpp-httplib' 2025-08-14T21:52:38.6475556Z Entering 'third_party/cpuinfo' 2025-08-14T21:52:38.7014783Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:52:38.7564841Z Entering 'third_party/cutlass' 2025-08-14T21:52:38.8145255Z Entering 'third_party/fbgemm' 2025-08-14T21:52:38.8719259Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:52:38.9263230Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:52:38.9808231Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:52:39.0349624Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:52:39.0909966Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:52:39.1449833Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:52:39.1989516Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:52:39.2549040Z Entering 'third_party/flash-attention' 2025-08-14T21:52:39.3070400Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:52:39.3651422Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:52:39.4242279Z Entering 'third_party/flatbuffers' 2025-08-14T21:52:39.4782378Z Entering 'third_party/fmt' 2025-08-14T21:52:39.5321997Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:52:39.5905848Z Entering 'third_party/gloo' 2025-08-14T21:52:39.6459739Z Entering 'third_party/googletest' 2025-08-14T21:52:39.7028970Z Entering 'third_party/ideep' 2025-08-14T21:52:39.7584742Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:52:39.8142170Z Entering 'third_party/ittapi' 2025-08-14T21:52:39.8721887Z Entering 'third_party/kineto' 2025-08-14T21:52:39.9246729Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:52:39.9791009Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:52:40.0367472Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:52:40.0933401Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:52:40.1478239Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:52:40.2011217Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:52:40.2580021Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:52:40.3162533Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:52:40.3708608Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:52:40.4257954Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:52:40.4838665Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:52:40.5379442Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:52:40.5961803Z Entering 'third_party/kleidiai' 2025-08-14T21:52:40.6515386Z Entering 'third_party/mimalloc' 2025-08-14T21:52:40.7054355Z Entering 'third_party/nlohmann' 2025-08-14T21:52:40.7639690Z Entering 'third_party/onnx' 2025-08-14T21:52:40.8189982Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:52:40.8755944Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:52:40.9279486Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:52:40.9840489Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:52:41.0381568Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:52:41.0927645Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:52:41.1472060Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:52:41.2031062Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:52:41.2632925Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:52:41.3164991Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:52:41.3717487Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:52:41.4280525Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:52:41.4858706Z Entering 'third_party/pocketfft' 2025-08-14T21:52:41.5410350Z Entering 'third_party/protobuf' 2025-08-14T21:52:41.5936709Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:52:41.6507024Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:52:41.7071937Z Entering 'third_party/psimd' 2025-08-14T21:52:41.7613040Z Entering 'third_party/pthreadpool' 2025-08-14T21:52:41.8170877Z Entering 'third_party/pybind11' 2025-08-14T21:52:41.8708271Z Entering 'third_party/python-peachpy' 2025-08-14T21:52:41.9261532Z Entering 'third_party/sleef' 2025-08-14T21:52:41.9820455Z Entering 'third_party/tensorpipe' 2025-08-14T21:52:42.0343602Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:52:42.0888266Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:52:42.1489247Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:52:42.2031078Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:52:42.2562882Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:52:42.3229028Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-08-14T21:52:42.7190184Z Entering 'android/libs/fbjni' 2025-08-14T21:52:42.7736415Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-14T21:52:42.7890476Z Entering 'third_party/FP16' 2025-08-14T21:52:42.8407899Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-14T21:52:42.8540846Z Entering 'third_party/FXdiv' 2025-08-14T21:52:42.9061388Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-14T21:52:42.9192908Z Entering 'third_party/NNPACK' 2025-08-14T21:52:42.9716699Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-14T21:52:42.9849729Z Entering 'third_party/NVTX' 2025-08-14T21:52:43.0367407Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-14T21:52:43.0500770Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:52:43.1022876Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-14T21:52:43.1153885Z Entering 'third_party/XNNPACK' 2025-08-14T21:52:43.1686059Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-14T21:52:43.1838699Z Entering 'third_party/aiter' 2025-08-14T21:52:43.2372025Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-14T21:52:43.2491587Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:52:43.3051758Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-14T21:52:43.3209994Z Entering 'third_party/benchmark' 2025-08-14T21:52:43.3788807Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:52:43.3922410Z Entering 'third_party/composable_kernel' 2025-08-14T21:52:43.4465394Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-14T21:52:43.4611370Z Entering 'third_party/cpp-httplib' 2025-08-14T21:52:43.5147817Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-14T21:52:43.5283514Z Entering 'third_party/cpuinfo' 2025-08-14T21:52:43.5823422Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-14T21:52:43.5957447Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:52:43.6471132Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-14T21:52:43.6603393Z Entering 'third_party/cutlass' 2025-08-14T21:52:43.7129408Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-14T21:52:43.7277342Z Entering 'third_party/fbgemm' 2025-08-14T21:52:43.7797261Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-14T21:52:43.7922385Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:52:43.8502542Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-14T21:52:43.8642585Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:52:43.9158561Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-14T21:52:43.9305654Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:52:43.9828555Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-14T21:52:43.9968056Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:52:44.0501124Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-14T21:52:44.0646301Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:52:44.1172770Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-14T21:52:44.1310268Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:52:44.1830162Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-14T21:52:44.1965344Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:52:44.2494880Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-14T21:52:44.2645583Z Entering 'third_party/flash-attention' 2025-08-14T21:52:44.3197231Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-14T21:52:44.3321327Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:52:44.3843710Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-14T21:52:44.3986959Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:52:44.4508758Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-14T21:52:44.4664611Z Entering 'third_party/flatbuffers' 2025-08-14T21:52:44.5175901Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-14T21:52:44.5312598Z Entering 'third_party/fmt' 2025-08-14T21:52:44.5836613Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-14T21:52:44.5977708Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:52:44.6495746Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-14T21:52:44.6628410Z Entering 'third_party/gloo' 2025-08-14T21:52:44.7139613Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-14T21:52:44.7274690Z Entering 'third_party/googletest' 2025-08-14T21:52:44.7782229Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:52:44.7918470Z Entering 'third_party/ideep' 2025-08-14T21:52:44.8423765Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-14T21:52:44.8550927Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:52:44.9083428Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-14T21:52:44.9238970Z Entering 'third_party/ittapi' 2025-08-14T21:52:44.9755689Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-14T21:52:44.9890147Z Entering 'third_party/kineto' 2025-08-14T21:52:45.0421739Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-14T21:52:45.0546201Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:52:45.1085851Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-14T21:52:45.1206461Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:52:45.1759339Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-08-14T21:52:45.1898459Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:52:45.2422324Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-08-14T21:52:45.2559371Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:52:45.3082796Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-08-14T21:52:45.3216216Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:52:45.3748175Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-08-14T21:52:45.3877042Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:52:45.4427215Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-08-14T21:52:45.4580447Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:52:45.5103625Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-08-14T21:52:45.5234999Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:52:45.5777130Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:52:45.5918387Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:52:45.6482071Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-08-14T21:52:45.6618609Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:52:45.7159504Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-08-14T21:52:45.7309609Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:52:45.7870515Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-14T21:52:45.8004829Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:52:45.8528829Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-14T21:52:45.8684218Z Entering 'third_party/kleidiai' 2025-08-14T21:52:45.9220530Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-14T21:52:45.9354267Z Entering 'third_party/mimalloc' 2025-08-14T21:52:45.9862832Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-14T21:52:45.9998593Z Entering 'third_party/nlohmann' 2025-08-14T21:52:46.0564278Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-14T21:52:46.0700763Z Entering 'third_party/onnx' 2025-08-14T21:52:46.1235324Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-14T21:52:46.1376811Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:52:46.1896644Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:52:46.2063463Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:52:46.2582449Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-14T21:52:46.2703578Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:52:46.3237134Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:52:46.3376637Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:52:46.3922566Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:52:46.4054113Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:52:46.4609626Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-14T21:52:46.4742001Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:52:46.5286168Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-14T21:52:46.5420022Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:52:46.5958990Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-08-14T21:52:46.6108946Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:52:46.6642049Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-08-14T21:52:46.6766788Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:52:46.7288589Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-08-14T21:52:46.7410453Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:52:46.7950039Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-08-14T21:52:46.8088148Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:52:46.8639333Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-08-14T21:52:46.8792738Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:52:46.9333702Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-14T21:52:46.9504970Z Entering 'third_party/pocketfft' 2025-08-14T21:52:47.0045774Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-14T21:52:47.0181512Z Entering 'third_party/protobuf' 2025-08-14T21:52:47.0848584Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-14T21:52:47.0980154Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:52:47.1506705Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:52:47.1672253Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:52:47.2206007Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:52:47.2364555Z Entering 'third_party/psimd' 2025-08-14T21:52:47.2910281Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-14T21:52:47.3046002Z Entering 'third_party/pthreadpool' 2025-08-14T21:52:47.3576902Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-14T21:52:47.3725398Z Entering 'third_party/pybind11' 2025-08-14T21:52:47.4258225Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:52:47.4393590Z Entering 'third_party/python-peachpy' 2025-08-14T21:52:47.4941984Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-14T21:52:47.5073675Z Entering 'third_party/sleef' 2025-08-14T21:52:47.5619233Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-14T21:52:47.5759860Z Entering 'third_party/tensorpipe' 2025-08-14T21:52:47.6308115Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-14T21:52:47.6428415Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:52:47.6965792Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:52:47.7100174Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:52:47.7649194Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-14T21:52:47.7782886Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:52:47.8302589Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-14T21:52:47.8443216Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:52:47.9009804Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:52:47.9135006Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:52:47.9696918Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-08-14T21:52:48.0307408Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-08-14T21:52:48.3893113Z Entering 'android/libs/fbjni' 2025-08-14T21:52:48.4289879Z Entering 'third_party/FP16' 2025-08-14T21:52:48.4648343Z Entering 'third_party/FXdiv' 2025-08-14T21:52:48.5012180Z Entering 'third_party/NNPACK' 2025-08-14T21:52:48.5423969Z Entering 'third_party/NVTX' 2025-08-14T21:52:48.5794106Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:52:48.6154800Z Entering 'third_party/XNNPACK' 2025-08-14T21:52:48.6527961Z Entering 'third_party/aiter' 2025-08-14T21:52:48.6892140Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:52:48.7296958Z Entering 'third_party/benchmark' 2025-08-14T21:52:48.7651904Z Entering 'third_party/composable_kernel' 2025-08-14T21:52:48.8017125Z Entering 'third_party/cpp-httplib' 2025-08-14T21:52:48.8411888Z Entering 'third_party/cpuinfo' 2025-08-14T21:52:48.8781276Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:52:48.9136713Z Entering 'third_party/cutlass' 2025-08-14T21:52:48.9520179Z Entering 'third_party/fbgemm' 2025-08-14T21:52:48.9874813Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:52:49.0241279Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:52:49.0613140Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:52:49.0971234Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:52:49.1342251Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:52:49.1715055Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:52:49.2070833Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:52:49.2474905Z Entering 'third_party/flash-attention' 2025-08-14T21:52:49.2836269Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:52:49.3227250Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:52:49.3608202Z Entering 'third_party/flatbuffers' 2025-08-14T21:52:49.3972016Z Entering 'third_party/fmt' 2025-08-14T21:52:49.4377583Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:52:49.4738123Z Entering 'third_party/gloo' 2025-08-14T21:52:49.5093043Z Entering 'third_party/googletest' 2025-08-14T21:52:49.5489582Z Entering 'third_party/ideep' 2025-08-14T21:52:49.5846552Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:52:49.6223493Z Entering 'third_party/ittapi' 2025-08-14T21:52:49.6634166Z Entering 'third_party/kineto' 2025-08-14T21:52:49.6991870Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:52:49.7351826Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:52:49.7724069Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:52:49.8083097Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:52:49.8462131Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:52:49.8819799Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:52:50.0265577Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:52:50.0641812Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:52:50.4061694Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:52:50.4436860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:52:50.4829022Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:52:50.5195101Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:52:50.5632634Z Entering 'third_party/kleidiai' 2025-08-14T21:52:50.5995325Z Entering 'third_party/mimalloc' 2025-08-14T21:52:50.6387325Z Entering 'third_party/nlohmann' 2025-08-14T21:52:50.6738790Z Entering 'third_party/onnx' 2025-08-14T21:52:50.7119929Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:52:50.7513004Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:52:50.7868144Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:52:50.8238988Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:52:50.8602005Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:52:50.8965065Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:52:50.9368315Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:52:50.9728182Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:52:51.0088311Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:52:51.0470465Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:52:51.0849229Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:52:51.1244289Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:52:51.1639532Z Entering 'third_party/pocketfft' 2025-08-14T21:52:51.2002611Z Entering 'third_party/protobuf' 2025-08-14T21:52:51.2398947Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:52:51.2760739Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:52:51.3142744Z Entering 'third_party/psimd' 2025-08-14T21:52:51.3525711Z Entering 'third_party/pthreadpool' 2025-08-14T21:52:51.3890746Z Entering 'third_party/pybind11' 2025-08-14T21:52:51.4246017Z Entering 'third_party/python-peachpy' 2025-08-14T21:52:51.4643946Z Entering 'third_party/sleef' 2025-08-14T21:52:51.5006063Z Entering 'third_party/tensorpipe' 2025-08-14T21:52:51.5354137Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:52:51.5720348Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:52:51.6084341Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:52:51.6474895Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:52:51.6823110Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:52:51.7304306Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:'" 2025-08-14T21:52:52.1070164Z Entering 'android/libs/fbjni' 2025-08-14T21:52:52.1433906Z Entering 'third_party/FP16' 2025-08-14T21:52:52.1800104Z Entering 'third_party/FXdiv' 2025-08-14T21:52:52.2179594Z Entering 'third_party/NNPACK' 2025-08-14T21:52:52.2547551Z Entering 'third_party/NVTX' 2025-08-14T21:52:52.2931287Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:52:52.3298979Z Entering 'third_party/XNNPACK' 2025-08-14T21:52:52.3693873Z Entering 'third_party/aiter' 2025-08-14T21:52:52.4053956Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:52:52.4455150Z Entering 'third_party/benchmark' 2025-08-14T21:52:52.4806542Z Entering 'third_party/composable_kernel' 2025-08-14T21:52:52.5216953Z Entering 'third_party/cpp-httplib' 2025-08-14T21:52:52.5584383Z Entering 'third_party/cpuinfo' 2025-08-14T21:52:52.5987480Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:52:52.6339078Z Entering 'third_party/cutlass' 2025-08-14T21:52:52.6718085Z Entering 'third_party/fbgemm' 2025-08-14T21:52:52.7089080Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:52:52.7456088Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:52:52.7883985Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:52:52.8280258Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:52:52.8656634Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:52:52.9060323Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:52:52.9427621Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:52:52.9806723Z Entering 'third_party/flash-attention' 2025-08-14T21:52:53.0186357Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:52:53.0574508Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:52:53.0975437Z Entering 'third_party/flatbuffers' 2025-08-14T21:52:53.1338107Z Entering 'third_party/fmt' 2025-08-14T21:52:53.1727203Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:52:53.2094805Z Entering 'third_party/gloo' 2025-08-14T21:52:53.2464576Z Entering 'third_party/googletest' 2025-08-14T21:52:53.2843841Z Entering 'third_party/ideep' 2025-08-14T21:52:53.3244039Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:52:53.3633665Z Entering 'third_party/ittapi' 2025-08-14T21:52:53.3990695Z Entering 'third_party/kineto' 2025-08-14T21:52:53.4333355Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:52:53.4682453Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:52:53.5055648Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:52:53.5420252Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:52:53.5786517Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:52:53.6132189Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:52:53.6518052Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:52:53.6926218Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:52:53.7281058Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:52:53.7658623Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:52:53.8518983Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:52:53.8885577Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:52:53.9301132Z Entering 'third_party/kleidiai' 2025-08-14T21:52:53.9672015Z Entering 'third_party/mimalloc' 2025-08-14T21:52:54.0030520Z Entering 'third_party/nlohmann' 2025-08-14T21:52:54.0394964Z Entering 'third_party/onnx' 2025-08-14T21:52:54.0762694Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:52:54.1174296Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:52:54.1527197Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:52:54.1906254Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:52:54.2277878Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:52:54.2634938Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:52:54.3061858Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:52:54.3427116Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:52:54.3791169Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:52:54.4154456Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:52:54.4515359Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:52:54.4944573Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:52:54.5376570Z Entering 'third_party/pocketfft' 2025-08-14T21:52:54.5732692Z Entering 'third_party/protobuf' 2025-08-14T21:52:54.6085543Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:52:54.6445612Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:52:54.6834328Z Entering 'third_party/psimd' 2025-08-14T21:52:54.7220157Z Entering 'third_party/pthreadpool' 2025-08-14T21:52:54.7606850Z Entering 'third_party/pybind11' 2025-08-14T21:52:54.7986139Z Entering 'third_party/python-peachpy' 2025-08-14T21:52:54.8346629Z Entering 'third_party/sleef' 2025-08-14T21:52:54.8707365Z Entering 'third_party/tensorpipe' 2025-08-14T21:52:54.9061714Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:52:54.9427202Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:52:54.9801147Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:52:55.0170184Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:52:55.0521873Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:52:55.0999520Z ##[endgroup] 2025-08-14T21:52:55.1258249Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-08-14T21:52:55.1455470Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:52:55.1792003Z Prepare all required actions 2025-08-14T21:52:55.1858219Z ##[group]Run ./.github/actions/setup-win 2025-08-14T21:52:55.1858512Z with: 2025-08-14T21:52:55.1858697Z cuda-version: cpu 2025-08-14T21:52:55.1858908Z env: 2025-08-14T21:52:55.1859084Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:52:55.1859322Z ##[endgroup] 2025-08-14T21:52:55.1928580Z ##[group]Run set -euo pipefail 2025-08-14T21:52:55.1928874Z set -euo pipefail 2025-08-14T21:52:55.1929143Z function get_ec2_metadata() { 2025-08-14T21:52:55.1929491Z  # Pulled from instance metadata endpoint for EC2 2025-08-14T21:52:55.1930089Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-08-14T21:52:55.1930605Z  category=$1 2025-08-14T21:52:55.1931486Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-08-14T21:52:55.1932336Z } 2025-08-14T21:52:55.1932582Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-08-14T21:52:55.1932986Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-08-14T21:52:55.1933423Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-08-14T21:52:55.1933814Z echo "system info $(uname -a)" 2025-08-14T21:52:55.1952537Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:52:55.1952959Z env: 2025-08-14T21:52:55.1953175Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:52:55.1953417Z ##[endgroup] 2025-08-14T21:52:55.2832017Z ami-id: ami-031789d559e66ab4a 2025-08-14T21:52:55.3373281Z instance-id: i-0bbe1d599543d2365 2025-08-14T21:52:55.3765597Z instance-type: c5d.4xlarge 2025-08-14T21:52:55.3951361Z system info MSYS_NT-10.0-17763 EC2AMAZ-VK08H34 3.5.7-463ebcdc.x86_64 2025-03-03 17:26 UTC x86_64 Msys 2025-08-14T21:52:55.4054102Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-14T21:52:55.4066656Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-14T21:52:55.4083674Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:52:55.4084114Z env: 2025-08-14T21:52:55.4084288Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:52:55.4084514Z ##[endgroup] 2025-08-14T21:52:55.7775816Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:52:55.7844808Z Finished 2025-08-14T21:52:55.8146180Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-08-14T21:52:55.8146675Z # Windows conda is baked into the AMI at this location 2025-08-14T21:52:55.8147093Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-08-14T21:52:55.8147571Z  2025-08-14T21:52:55.8147774Z { 2025-08-14T21:52:55.8148036Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-08-14T21:52:55.8148426Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-08-14T21:52:55.8148763Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-08-14T21:52:55.8149059Z } >> "${GITHUB_ENV}" 2025-08-14T21:52:55.8167391Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:52:55.8167811Z env: 2025-08-14T21:52:55.8167996Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:52:55.8168220Z ##[endgroup] 2025-08-14T21:52:55.8447064Z ##[group]Run set +e 2025-08-14T21:52:55.8447349Z set +e 2025-08-14T21:52:55.8447561Z set -x 2025-08-14T21:52:55.8447788Z  2025-08-14T21:52:55.8447999Z PYTHON3=$(${CONDA_RUN} which python3) 2025-08-14T21:52:55.8448292Z EXIT_CODE=$? 2025-08-14T21:52:55.8448484Z  2025-08-14T21:52:55.8449938Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-14T21:52:55.8450349Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-08-14T21:52:55.8450718Z  2025-08-14T21:52:55.8450922Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-08-14T21:52:55.8451253Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-14T21:52:55.8451538Z else 2025-08-14T21:52:55.8451980Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-08-14T21:52:55.8452671Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-08-14T21:52:55.8453322Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-08-14T21:52:55.8453882Z  # needed. In both cases, Python binary is just called python 2025-08-14T21:52:55.8454275Z  PYTHON=$(${CONDA_RUN} which python) 2025-08-14T21:52:55.8454557Z  EXIT_CODE=$? 2025-08-14T21:52:55.8454789Z  2025-08-14T21:52:55.8454980Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-14T21:52:55.8455419Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-08-14T21:52:55.8455820Z  2025-08-14T21:52:55.8456075Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-08-14T21:52:55.8456594Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-08-14T21:52:55.8457131Z  # here pointing to Python 2025-08-14T21:52:55.8457435Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-08-14T21:52:55.8457696Z  2025-08-14T21:52:55.8457903Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-08-14T21:52:55.8458245Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-14T21:52:55.8458527Z  else 2025-08-14T21:52:55.8458757Z  echo "Found no Python using ${CONDA_RUN}" 2025-08-14T21:52:55.8459058Z  fi 2025-08-14T21:52:55.8459243Z fi 2025-08-14T21:52:55.8476708Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:52:55.8477137Z env: 2025-08-14T21:52:55.8477313Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:52:55.8477689Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:52:55.8478191Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:52:55.8478748Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:52:55.8479102Z ##[endgroup] 2025-08-14T21:52:55.8708810Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-08-14T21:53:06.5882412Z which: no python3 in (/c/Jenkins/Miniconda3:/c/Jenkins/Miniconda3/Library/mingw-w64/bin:/c/Jenkins/Miniconda3/Library/usr/bin:/c/Jenkins/Miniconda3/Library/bin:/c/Jenkins/Miniconda3/Scripts:/c/Jenkins/Miniconda3/bin:/c/Jenkins/Miniconda3/condabin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Windows/System32/OpenSSH:/c/Program Files/Amazon/cfn-bootstrap:/c/ProgramData/chocolatey/bin:/c/Program Files/Amazon/AWSCLIV2:/cmd:/mingw64/bin:/usr/bin:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-08-14T21:53:06.5912769Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-08-14T21:53:06.6577098Z + PYTHON3= 2025-08-14T21:53:06.6577317Z + EXIT_CODE=1 2025-08-14T21:53:06.6577889Z + [[ 1 == \0 ]] 2025-08-14T21:53:06.6636248Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-08-14T21:53:08.2681620Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-08-14T21:53:08.2681965Z + EXIT_CODE=0 2025-08-14T21:53:08.2682145Z + [[ 0 == \0 ]] 2025-08-14T21:53:08.2682582Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-08-14T21:53:08.2684116Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-08-14T21:53:08.2790967Z ++ echo /c/Jenkins/Miniconda3/python 2025-08-14T21:53:08.2840068Z ++ sed s/python/python3/ 2025-08-14T21:53:08.2903077Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-08-14T21:53:08.2903530Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-08-14T21:53:08.3072485Z ++ dirname /c/Jenkins/Miniconda3/python 2025-08-14T21:53:08.3139902Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-08-14T21:53:08.3140202Z + echo /c/Jenkins/Miniconda3 2025-08-14T21:53:08.3241973Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-14T21:53:08.3242576Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-14T21:53:08.3243092Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-08-14T21:53:08.3264515Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:08.3264956Z env: 2025-08-14T21:53:08.3265160Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:08.3265546Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:08.3266058Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:08.3266671Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:08.3267030Z ##[endgroup] 2025-08-14T21:53:08.4132507Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-14T21:53:08.4133462Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-14T21:53:08.4134237Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-08-14T21:53:08.4134746Z # that it doesn't interfere 2025-08-14T21:53:08.4135257Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-08-14T21:53:08.4150613Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:53:08.4151075Z env: 2025-08-14T21:53:08.4151264Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:08.4151660Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:08.4152262Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:08.4152773Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:08.4153176Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:08.4153454Z ##[endgroup] 2025-08-14T21:53:08.8176990Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:53:08.8246818Z Finished 2025-08-14T21:53:09.4969706Z ##[group]Run choco install handle -y 2025-08-14T21:53:09.4970123Z choco install handle -y 2025-08-14T21:53:09.4970470Z handle C:\actions-runner\_work\ 2025-08-14T21:53:09.4986129Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:53:09.4986577Z env: 2025-08-14T21:53:09.4986773Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:09.4987146Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:09.4987672Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:09.4988140Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:09.4988588Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:09.4988925Z ##[endgroup] 2025-08-14T21:53:09.9063776Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:53:09.9139681Z Finished 2025-08-14T21:53:12.3224236Z Chocolatey v2.4.3 2025-08-14T21:53:12.6254464Z Installing the following packages: 2025-08-14T21:53:12.6259405Z handle 2025-08-14T21:53:12.6263446Z By installing, you accept licenses for the packages. 2025-08-14T21:53:14.4829286Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-14T21:53:14.6382359Z 2025-08-14T21:53:14.6382949Z Progress: Downloading Handle 5.0... 15% 2025-08-14T21:53:14.6383310Z Progress: Downloading Handle 5.0... 45% 2025-08-14T21:53:14.6384040Z Progress: Downloading Handle 5.0... 75% 2025-08-14T21:53:14.6384365Z Progress: Downloading Handle 5.0... 100% 2025-08-14T21:53:15.0520110Z 2025-08-14T21:53:15.0520394Z handle v5.0.0 [Approved] 2025-08-14T21:53:15.0726586Z handle package files install completed. Performing other installation steps. 2025-08-14T21:53:16.5638611Z Downloading Handle 2025-08-14T21:53:16.5639010Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-08-14T21:53:16.6809937Z 2025-08-14T21:53:16.6826454Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-08-14T21:53:16.6841361Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-08-14T21:53:16.6856789Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-08-14T21:53:16.6874026Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-08-14T21:53:16.6877302Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-08-14T21:53:16.6883315Z Download of Handle.zip (729.82 KB) completed. 2025-08-14T21:53:19.8812716Z Hashes match. 2025-08-14T21:53:19.9067707Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-08-14T21:53:20.3866591Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-08-14T21:53:20.3918362Z HKEY_CURRENT_USER\Software\Sysinternals 2025-08-14T21:53:20.3948233Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-08-14T21:53:20.7632579Z ShimGen has successfully created a shim for handle.exe 2025-08-14T21:53:20.9480876Z ShimGen has successfully created a shim for handle64.exe 2025-08-14T21:53:21.1156253Z ShimGen has successfully created a shim for handle64a.exe 2025-08-14T21:53:21.1426783Z The install of handle was successful. 2025-08-14T21:53:21.1430003Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-08-14T21:53:21.1548332Z 2025-08-14T21:53:21.1548600Z Chocolatey installed 1/1 packages. 2025-08-14T21:53:21.1549085Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-08-14T21:53:21.3484868Z 2025-08-14T21:53:21.3485231Z Nthandle v5.0 - Handle viewer 2025-08-14T21:53:21.3485622Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-14T21:53:21.3485935Z Sysinternals - www.sysinternals.com 2025-08-14T21:53:21.3486128Z 2025-08-14T21:53:21.3855560Z powershell.exe pid: 5316 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:53:21.3856268Z handle.exe pid: 5988 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:53:21.3856925Z handle.exe pid: 4680 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:53:21.3857572Z handle64.exe pid: 5152 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:53:21.4186770Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-08-14T21:53:21.4187164Z with: 2025-08-14T21:53:21.4187335Z shell: bash 2025-08-14T21:53:21.4187513Z timeout_minutes: 5 2025-08-14T21:53:21.4187719Z max_attempts: 5 2025-08-14T21:53:21.4187919Z retry_wait_seconds: 30 2025-08-14T21:53:21.4188215Z command: set -eu python3 -m pip install 'xdoctest>=1.1.0' 2025-08-14T21:53:21.4188563Z polling_interval_seconds: 1 2025-08-14T21:53:21.4188796Z warning_on_retry: true 2025-08-14T21:53:21.4189017Z continue_on_error: false 2025-08-14T21:53:21.4189235Z env: 2025-08-14T21:53:21.4189417Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:21.4189774Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:21.4190297Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:21.4190862Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:21.4191365Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:21.4191696Z ##[endgroup] 2025-08-14T21:53:27.4052465Z Collecting xdoctest>=1.1.0 2025-08-14T21:53:27.6241558Z Downloading xdoctest-1.2.0-py3-none-any.whl.metadata (37 kB) 2025-08-14T21:53:28.0119461Z Downloading xdoctest-1.2.0-py3-none-any.whl (151 kB) 2025-08-14T21:53:28.1040995Z ---------------------------------------- 151.2/151.2 kB 1.5 MB/s eta 0:00:00 2025-08-14T21:53:30.0057120Z Installing collected packages: xdoctest 2025-08-14T21:53:30.0057970Z Attempting uninstall: xdoctest 2025-08-14T21:53:30.0082170Z Found existing installation: xdoctest 1.0.2 2025-08-14T21:53:30.0839260Z Uninstalling xdoctest-1.0.2: 2025-08-14T21:53:30.0877257Z Successfully uninstalled xdoctest-1.0.2 2025-08-14T21:53:30.2233539Z WARNING: The script xdoctest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:53:30.2234394Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:53:30.2733588Z Successfully installed xdoctest-1.2.0 2025-08-14T21:53:31.5468376Z Command completed after 1 attempt(s). 2025-08-14T21:53:31.5655187Z Prepare all required actions 2025-08-14T21:53:31.5692236Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-14T21:53:31.5692538Z with: 2025-08-14T21:53:31.5693013Z github-token: *** 2025-08-14T21:53:31.5693212Z env: 2025-08-14T21:53:31.5693382Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:31.5693755Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:31.5694260Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:31.5694726Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:31.5695112Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:31.5695383Z ##[endgroup] 2025-08-14T21:53:31.5771315Z ##[group]Run set -eux 2025-08-14T21:53:31.5771546Z set -eux 2025-08-14T21:53:31.5771930Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-14T21:53:31.5790569Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:31.5790997Z env: 2025-08-14T21:53:31.5791187Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:31.5791549Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:31.5792067Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:31.5792538Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:31.5792931Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:31.5793378Z GITHUB_TOKEN: *** 2025-08-14T21:53:31.5793571Z ##[endgroup] 2025-08-14T21:53:31.6004872Z + python3 .github/scripts/get_workflow_job_id.py 16976255045 i-0bbe1d599543d2365 2025-08-14T21:53:32.5572278Z Setting output job-id=48128743924 2025-08-14T21:53:32.5572873Z Setting output job-name=win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:53:32.5799287Z ##[group]Run # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-14T21:53:32.5799933Z # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-14T21:53:32.5800561Z ${CONDA_RUN} python -m pip install psutil==5.9.8 dataclasses_json==0.6.7 nvidia-ml-py==11.525.84 2025-08-14T21:53:32.5801504Z ${CONDA_RUN} python -m tools.stats.monitor --log-interval "$MONITOR_LOG_INTERVAL" --data-collect-interval "$MONITOR_DATA_COLLECT_INTERVAL" > usage_log.txt 2>&1 & 2025-08-14T21:53:32.5802311Z echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}" 2025-08-14T21:53:32.5821088Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:32.5821514Z env: 2025-08-14T21:53:32.5821800Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:32.5822198Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:32.5822775Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:32.5823236Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:32.5823636Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:32.5823935Z JOB_ID: 48128743924 2025-08-14T21:53:32.5824317Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:53:32.5824766Z WORKFLOW_NAME: trunk 2025-08-14T21:53:32.5824983Z WORKFLOW_RUN_ID: 16976255045 2025-08-14T21:53:32.5825228Z MONITOR_LOG_INTERVAL: 5 2025-08-14T21:53:32.5825474Z MONITOR_DATA_COLLECT_INTERVAL: 1 2025-08-14T21:53:32.5825732Z ##[endgroup] 2025-08-14T21:53:35.0325465Z Collecting psutil==5.9.8 2025-08-14T21:53:35.2218419Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl.metadata (22 kB) 2025-08-14T21:53:35.3054630Z Collecting dataclasses_json==0.6.7 2025-08-14T21:53:35.3100692Z Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-08-14T21:53:35.3414211Z Collecting nvidia-ml-py==11.525.84 2025-08-14T21:53:35.3473395Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl.metadata (8.6 kB) 2025-08-14T21:53:35.4327780Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7) 2025-08-14T21:53:35.4370017Z Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-08-14T21:53:35.4594046Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7) 2025-08-14T21:53:35.4641851Z Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-08-14T21:53:35.4841838Z Requirement already satisfied: packaging>=17.0 in c:\jenkins\miniconda3\lib\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses_json==0.6.7) (23.2) 2025-08-14T21:53:35.5048638Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) 2025-08-14T21:53:35.5093742Z Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-08-14T21:53:35.5170759Z Requirement already satisfied: typing-extensions>=3.7.4 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (4.12.2) 2025-08-14T21:53:35.5286571Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl (255 kB) 2025-08-14T21:53:35.5804020Z ---------------------------------------- 255.1/255.1 kB 3.9 MB/s eta 0:00:00 2025-08-14T21:53:35.5848261Z Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-08-14T21:53:35.5958442Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl (34 kB) 2025-08-14T21:53:35.6076359Z Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-08-14T21:53:35.6167922Z ---------------------------------------- 50.9/50.9 kB 2.5 MB/s eta 0:00:00 2025-08-14T21:53:35.6209564Z Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-08-14T21:53:35.6303148Z Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-08-14T21:53:36.4146834Z Installing collected packages: nvidia-ml-py, psutil, mypy-extensions, marshmallow, typing-inspect, dataclasses_json 2025-08-14T21:53:36.4575209Z Attempting uninstall: psutil 2025-08-14T21:53:36.4588127Z Found existing installation: psutil 5.9.1 2025-08-14T21:53:36.4692288Z Uninstalling psutil-5.9.1: 2025-08-14T21:53:36.4717556Z Successfully uninstalled psutil-5.9.1 2025-08-14T21:53:36.8253892Z Successfully installed dataclasses_json-0.6.7 marshmallow-3.26.1 mypy-extensions-1.1.0 nvidia-ml-py-11.525.84 psutil-5.9.8 typing-inspect-0.9.0 2025-08-14T21:53:37.0017222Z ##[group]Run seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 2025-08-14T21:53:37.0017711Z with: 2025-08-14T21:53:37.0017909Z name: win-vs2022-cpu-py3 2025-08-14T21:53:37.0018216Z path: C:\16976255045\build-results 2025-08-14T21:53:37.0018491Z s3-bucket: gha-artifacts 2025-08-14T21:53:37.0018775Z region: us-east-1 2025-08-14T21:53:37.0018996Z env: 2025-08-14T21:53:37.0019172Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:37.0019541Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:37.0020055Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:37.0020521Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:37.0020906Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:37.0021188Z ##[endgroup] 2025-08-14T21:53:37.5156518Z (node:4588) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-14T21:53:37.5156983Z 2025-08-14T21:53:37.5157196Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-14T21:53:37.5157742Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-14T21:53:37.5158256Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-14T21:53:37.6619179Z Found 4 objects with prefix pytorch/pytorch/16976255045/win-vs2022-cpu-py3/ 2025-08-14T21:53:37.6625186Z Starting download (1/4): C:\16976255045\build-results\.additional_ci_files\test-class-times.json 2025-08-14T21:53:37.8958588Z Finished download (1/4): C:\16976255045\build-results\.additional_ci_files\test-class-times.json 2025-08-14T21:53:37.8959270Z Starting download (2/4): C:\16976255045\build-results\.additional_ci_files\test-times.json 2025-08-14T21:53:38.0623289Z Finished download (2/4): C:\16976255045\build-results\.additional_ci_files\test-times.json 2025-08-14T21:53:38.0625239Z Starting download (3/4): C:\16976255045\build-results\.ninja_log 2025-08-14T21:53:38.2291790Z Finished download (3/4): C:\16976255045\build-results\.ninja_log 2025-08-14T21:53:38.2292980Z Starting download (4/4): C:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:53:43.1359662Z Finished download (4/4): C:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:53:43.1369115Z Artifact download has finished successfully 2025-08-14T21:53:43.1615137Z ##[group]Run tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-14T21:53:43.1615627Z tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-14T21:53:43.1632502Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:53:43.1632941Z env: 2025-08-14T21:53:43.1633139Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:43.1633514Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:43.1634022Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:43.1634487Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:43.1634869Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:43.1635161Z ##[endgroup] 2025-08-14T21:53:44.0429495Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:53:44.0499408Z Finished 2025-08-14T21:53:44.2473138Z Folder PATH listing 2025-08-14T21:53:44.2473545Z Volume serial number is EA7F-0099 2025-08-14T21:53:44.2473832Z C:\16976255045\BUILD-RESULTS 2025-08-14T21:53:44.2484631Z � .ninja_log 2025-08-14T21:53:44.2484996Z � torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:53:44.2485510Z � 2025-08-14T21:53:44.2485734Z ����.additional_ci_files 2025-08-14T21:53:44.2486022Z test-class-times.json 2025-08-14T21:53:44.2486264Z test-times.json 2025-08-14T21:53:44.2486461Z 2025-08-14T21:53:44.2719377Z Prepare all required actions 2025-08-14T21:53:44.2719747Z Getting action download info 2025-08-14T21:53:44.4287101Z Download action repository 'seemethere/download-artifact-s3@v4' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-14T21:53:45.2924167Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-08-14T21:53:46.6160745Z ##[group]Run ./.github/actions/download-td-artifacts 2025-08-14T21:53:46.6161095Z with: 2025-08-14T21:53:46.6161256Z env: 2025-08-14T21:53:46.6161447Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:46.6161828Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:46.6162348Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:46.6162815Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:46.6163199Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:46.6163522Z ##[endgroup] 2025-08-14T21:53:46.6249592Z ##[group]Run seemethere/download-artifact-s3@v4 2025-08-14T21:53:46.6249907Z with: 2025-08-14T21:53:46.6250080Z name: td_results 2025-08-14T21:53:46.6250295Z s3-bucket: gha-artifacts 2025-08-14T21:53:46.6250532Z region: us-east-1 2025-08-14T21:53:46.6250711Z env: 2025-08-14T21:53:46.6250884Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:46.6251243Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:46.6251768Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:46.6252275Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:46.6252709Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:46.6252986Z ##[endgroup] 2025-08-14T21:53:47.1297293Z (node:5428) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-14T21:53:47.1297811Z 2025-08-14T21:53:47.1298066Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-14T21:53:47.1298580Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-14T21:53:47.1299080Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-14T21:53:47.2548517Z Found 1 objects with prefix pytorch/pytorch/16976255045/td_results/ 2025-08-14T21:53:47.2549616Z Starting download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-14T21:53:47.4286149Z Finished download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-14T21:53:47.4294981Z Artifact download has finished successfully 2025-08-14T21:53:47.4527920Z ##[group]Run mkdir -p .additional_ci_files 2025-08-14T21:53:47.4528264Z mkdir -p .additional_ci_files 2025-08-14T21:53:47.4528650Z mv td_results.json .additional_ci_files/td_results.json || true 2025-08-14T21:53:47.4547507Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:47.4547954Z env: 2025-08-14T21:53:47.4548133Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:47.4548504Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:47.4562746Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:47.4563239Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:47.4563642Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:47.4563931Z ##[endgroup] 2025-08-14T21:53:47.6182413Z Prepare all required actions 2025-08-14T21:53:47.6182813Z Getting action download info 2025-08-14T21:53:47.7450145Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T21:53:47.9743125Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-14T21:53:47.9743451Z with: 2025-08-14T21:53:47.9743788Z github-token: *** 2025-08-14T21:53:47.9744887Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:53:47.9746220Z job-name: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:53:47.9746650Z env: 2025-08-14T21:53:47.9746834Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:47.9747240Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:47.9747759Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:47.9748228Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:47.9748623Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:47.9748900Z ##[endgroup] 2025-08-14T21:53:47.9839957Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-14T21:53:47.9840227Z with: 2025-08-14T21:53:47.9840392Z shell: bash 2025-08-14T21:53:47.9840582Z timeout_minutes: 10 2025-08-14T21:53:47.9840789Z max_attempts: 5 2025-08-14T21:53:47.9840987Z retry_wait_seconds: 30 2025-08-14T21:53:47.9841706Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-14T21:53:47.9842459Z polling_interval_seconds: 1 2025-08-14T21:53:47.9842755Z warning_on_retry: true 2025-08-14T21:53:47.9842996Z continue_on_error: false 2025-08-14T21:53:47.9843219Z env: 2025-08-14T21:53:47.9843437Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:47.9843795Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:47.9844304Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:47.9844762Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:47.9845154Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:47.9845596Z GITHUB_TOKEN: *** 2025-08-14T21:53:47.9845785Z ##[endgroup] 2025-08-14T21:53:48.0979849Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-14T21:53:49.0283660Z Collecting requests==2.27.1 2025-08-14T21:53:49.2208056Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-14T21:53:49.2311653Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-08-14T21:53:49.2439742Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-08-14T21:53:49.2446188Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.4.26) 2025-08-14T21:53:49.2458310Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-08-14T21:53:49.2472212Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-08-14T21:53:49.2754043Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-14T21:53:49.4195354Z ---------------------------------------- 63.1/63.1 kB 377.8 kB/s eta 0:00:00 2025-08-14T21:53:50.2047787Z Installing collected packages: requests 2025-08-14T21:53:50.2048643Z Attempting uninstall: requests 2025-08-14T21:53:50.2059419Z Found existing installation: requests 2.32.3 2025-08-14T21:53:50.3134786Z Uninstalling requests-2.32.3: 2025-08-14T21:53:50.3154096Z Successfully uninstalled requests-2.32.3 2025-08-14T21:53:50.4257616Z Successfully installed requests-2.27.1 2025-08-14T21:53:51.1009677Z Command completed after 1 attempt(s). 2025-08-14T21:53:51.1154509Z ##[group]Run set -x 2025-08-14T21:53:51.1154744Z set -x 2025-08-14T21:53:51.1154924Z  2025-08-14T21:53:51.1155270Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T21:53:51.1155706Z # in runner workspace 2025-08-14T21:53:51.1156053Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-14T21:53:51.1175103Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:51.1175533Z env: 2025-08-14T21:53:51.1175721Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:51.1176094Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:51.1176713Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:51.1177291Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:51.1177692Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:51.1177979Z ##[endgroup] 2025-08-14T21:53:51.1355790Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-08-14T21:53:51.1770273Z Setting output branch=main 2025-08-14T21:53:51.1904512Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T21:53:51.1904875Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T21:53:51.1905176Z echo "Job name: ${JOB_NAME}" 2025-08-14T21:53:51.1905428Z  2025-08-14T21:53:51.1905780Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T21:53:51.1906220Z # in runner workspace 2025-08-14T21:53:51.1906622Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-14T21:53:51.1907058Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-14T21:53:51.1907351Z  --job-name "${JOB_NAME}" \ 2025-08-14T21:53:51.1908487Z  --test-matrix "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]}" \ 2025-08-14T21:53:51.1909619Z  --selected-test-configs "" \ 2025-08-14T21:53:51.1909931Z  --pr-number "${PR_NUMBER}" \ 2025-08-14T21:53:51.1910211Z  --tag "${TAG}" \ 2025-08-14T21:53:51.1910454Z  --event-name "${EVENT_NAME}" \ 2025-08-14T21:53:51.1910736Z  --schedule "${SCHEDULE}" \ 2025-08-14T21:53:51.1910999Z  --branch "${HEAD_BRANCH}" 2025-08-14T21:53:51.1929415Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:51.1929837Z env: 2025-08-14T21:53:51.1930023Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:51.1930387Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:51.1930900Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:51.1931367Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:51.1931757Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:51.1932247Z GITHUB_TOKEN: *** 2025-08-14T21:53:51.1932613Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:53:51.1933051Z PR_NUMBER: 2025-08-14T21:53:51.1933226Z TAG: 2025-08-14T21:53:51.1933418Z EVENT_NAME: push 2025-08-14T21:53:51.1933606Z SCHEDULE: 2025-08-14T21:53:51.1933799Z HEAD_BRANCH: main 2025-08-14T21:53:51.1934000Z ##[endgroup] 2025-08-14T21:53:51.2117764Z Workflow: trunk 2025-08-14T21:53:51.2118898Z Job name: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:53:52.1043993Z Setting output keep-going=True 2025-08-14T21:53:52.1044341Z Setting output ci-verbose-test-logs=False 2025-08-14T21:53:52.1044674Z Setting output ci-test-showlocals=False 2025-08-14T21:53:52.1044979Z Setting output ci-no-test-timeout=False 2025-08-14T21:53:52.1045272Z Setting output ci-no-td=False 2025-08-14T21:53:52.1045551Z Setting output ci-td-distributed=False 2025-08-14T21:53:52.1045832Z Setting output is-unstable=False 2025-08-14T21:53:52.1046102Z Setting output reenabled-issues= 2025-08-14T21:53:52.1047266Z Setting output test-matrix={"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:53:52.1048598Z Setting output is-test-matrix-empty=False 2025-08-14T21:53:52.1291762Z ##[group]Run echo "Filtered matrix:" 2025-08-14T21:53:52.1292089Z echo "Filtered matrix:" 2025-08-14T21:53:52.1293217Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]}" 2025-08-14T21:53:52.1294306Z  2025-08-14T21:53:52.1294469Z echo 2025-08-14T21:53:52.1294715Z echo "Is the current job unstable? False" 2025-08-14T21:53:52.1295017Z  2025-08-14T21:53:52.1295178Z echo 2025-08-14T21:53:52.1295396Z echo "Is keep-going label set? True" 2025-08-14T21:53:52.1295670Z  2025-08-14T21:53:52.1295836Z echo 2025-08-14T21:53:52.1296026Z echo "Reenabled issues? " 2025-08-14T21:53:52.1314516Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:52.1314932Z env: 2025-08-14T21:53:52.1315125Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:52.1315488Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:52.1316001Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:52.1316465Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:52.1316856Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:52.1317145Z ##[endgroup] 2025-08-14T21:53:52.1485479Z Filtered matrix: 2025-08-14T21:53:52.1486739Z {include: [{config: default, shard: 1, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}, {config: default, shard: 2, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}, {config: default, shard: 3, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}]} 2025-08-14T21:53:52.1487905Z 2025-08-14T21:53:52.1488030Z Is the current job unstable? False 2025-08-14T21:53:52.1488233Z 2025-08-14T21:53:52.1488337Z Is keep-going label set? True 2025-08-14T21:53:52.1488507Z 2025-08-14T21:53:52.1488585Z Reenabled issues? 2025-08-14T21:53:52.1610053Z ##[group]Run echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-14T21:53:52.1610549Z echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-14T21:53:52.1628818Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:52.1629234Z env: 2025-08-14T21:53:52.1629430Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:52.1629804Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:52.1630307Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:52.1630834Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:52.1631267Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:52.1631556Z JOB_TIMEOUT: 240 2025-08-14T21:53:52.1631902Z ##[endgroup] 2025-08-14T21:53:52.1934686Z ##[group]Run pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-14T21:53:52.1935070Z pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-14T21:53:52.1935400Z # shellcheck disable=SC2046,SC2102 2025-08-14T21:53:52.1935828Z python3 -mpip install $(echo *.whl)[opt-einsum,optree] optree==0.13.0 2025-08-14T21:53:52.1936238Z popd 2025-08-14T21:53:52.1936435Z  2025-08-14T21:53:52.1936617Z .ci/pytorch/win-test.sh 2025-08-14T21:53:52.1954219Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:53:52.1954638Z env: 2025-08-14T21:53:52.1954819Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:53:52.1955194Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:53:52.1955713Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:53:52.1956174Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:53:52.1956605Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:53:52.1956885Z USE_CUDA: 0 2025-08-14T21:53:52.1957076Z INSTALL_WINDOWS_SDK: 1 2025-08-14T21:53:52.1957290Z PYTHON_VERSION: 3.9 2025-08-14T21:53:52.1957513Z CONTINUE_THROUGH_ERROR: True 2025-08-14T21:53:52.1957748Z VERBOSE_TEST_LOGS: False 2025-08-14T21:53:52.1957979Z TEST_SHOWLOCALS: False 2025-08-14T21:53:52.1958199Z NO_TEST_TIMEOUT: False 2025-08-14T21:53:52.1958418Z NO_TD: False 2025-08-14T21:53:52.1958610Z VC_PRODUCT: BuildTools 2025-08-14T21:53:52.1958816Z VC_VERSION: 2025-08-14T21:53:52.1959003Z VS_VERSION: 17.4.1 2025-08-14T21:53:52.1959195Z VC_YEAR: 2022 2025-08-14T21:53:52.1959403Z AWS_DEFAULT_REGION: us-east-1 2025-08-14T21:53:52.1959628Z PR_NUMBER: 2025-08-14T21:53:52.1959833Z GITHUB_REPOSITORY: pytorch/pytorch 2025-08-14T21:53:52.1960089Z GITHUB_WORKFLOW: trunk 2025-08-14T21:53:52.1960308Z GITHUB_JOB: test 2025-08-14T21:53:52.1960504Z GITHUB_RUN_ID: 16976255045 2025-08-14T21:53:52.1960748Z GITHUB_RUN_NUMBER: 140204 2025-08-14T21:53:52.1960971Z GITHUB_RUN_ATTEMPT: 1 2025-08-14T21:53:52.1961171Z JOB_ID: 48128743924 2025-08-14T21:53:52.1961547Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:53:52.1962011Z SHA1: 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:53:52.1962304Z CUDA_VERSION: cpu 2025-08-14T21:53:52.1962564Z PYTORCH_FINAL_PACKAGE_DIR: /c/16976255045/build-results/ 2025-08-14T21:53:52.1962917Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-08-14T21:53:52.1963302Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T21:53:52.1963805Z SHARD_NUMBER: 2 2025-08-14T21:53:52.1964006Z NUM_TEST_SHARDS: 3 2025-08-14T21:53:52.1964205Z TEST_CONFIG: default 2025-08-14T21:53:52.1964417Z REENABLED_ISSUES: 2025-08-14T21:53:52.1964622Z TORCH_CUDA_ARCH_LIST: 8.6 2025-08-14T21:53:52.1964878Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK: 0 2025-08-14T21:53:52.1965163Z PYTORCH_TEST_RERUN_DISABLED_TESTS: 0 2025-08-14T21:53:52.1965432Z ##[endgroup] 2025-08-14T21:53:52.2136459Z /c/16976255045/build-results /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:53:52.7202191Z Processing c:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl (from torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:53.9257932Z Collecting optree==0.13.0 2025-08-14T21:53:54.1122606Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl.metadata (48 kB) 2025-08-14T21:53:54.1898167Z -------------------------------------- 48.7/48.7 kB 409.4 kB/s eta 0:00:00 2025-08-14T21:53:54.2253045Z Requirement already satisfied: typing-extensions>=4.5.0 in c:\jenkins\miniconda3\lib\site-packages (from optree==0.13.0) (4.12.2) 2025-08-14T21:53:54.2671846Z Collecting filelock (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.2715893Z Downloading filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB) 2025-08-14T21:53:54.3057572Z Collecting sympy>=1.13.3 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.3096888Z Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) 2025-08-14T21:53:54.3172353Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (2.8.8) 2025-08-14T21:53:54.3401009Z Collecting jinja2 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.3442915Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-08-14T21:53:54.3930136Z Collecting fsspec>=0.8.5 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.3973429Z Downloading fsspec-2025.7.0-py3-none-any.whl.metadata (12 kB) 2025-08-14T21:53:54.4275490Z Collecting intel-openmp==2025.1.1 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.4328626Z Downloading intel_openmp-2025.1.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-14T21:53:54.4563061Z Collecting intel-cmplr-lib-ur==2025.1.1 (from intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.4618669Z Downloading intel_cmplr_lib_ur-2025.1.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-14T21:53:54.4944969Z Collecting umf==0.10.* (from intel-cmplr-lib-ur==2025.1.1->intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.4997559Z Downloading umf-0.10.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-08-14T21:53:54.5179956Z Collecting tcmlib==1.3 (from umf==0.10.*->intel-cmplr-lib-ur==2025.1.1->intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.5242579Z Downloading tcmlib-1.3.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-08-14T21:53:54.5348038Z Requirement already satisfied: opt-einsum>=3.3 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (3.4.0) 2025-08-14T21:53:54.6678485Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\jenkins\miniconda3\lib\site-packages (from sympy>=1.13.3->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (1.2.1) 2025-08-14T21:53:54.7462075Z Collecting MarkupSafe>=2.0 (from jinja2->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:53:54.7510044Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl.metadata (4.1 kB) 2025-08-14T21:53:54.7748431Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl (270 kB) 2025-08-14T21:53:54.8012491Z ---------------------------------------- 270.1/270.1 kB 8.4 MB/s eta 0:00:00 2025-08-14T21:53:54.8068108Z Downloading intel_openmp-2025.1.1-py2.py3-none-win_amd64.whl (12.7 MB) 2025-08-14T21:53:54.9040942Z ---------------------------------------- 12.7/12.7 MB 131.1 MB/s eta 0:00:00 2025-08-14T21:53:54.9104617Z Downloading intel_cmplr_lib_ur-2025.1.1-py2.py3-none-win_amd64.whl (1.1 MB) 2025-08-14T21:53:54.9266407Z ---------------------------------------- 1.1/1.1 MB 65.9 MB/s eta 0:00:00 2025-08-14T21:53:54.9328455Z Downloading umf-0.10.0-py2.py3-none-win_amd64.whl (193 kB) 2025-08-14T21:53:54.9426684Z --------------------------------------- 193.9/193.9 kB 11.5 MB/s eta 0:00:00 2025-08-14T21:53:54.9479206Z Downloading tcmlib-1.3.0-py2.py3-none-win_amd64.whl (356 kB) 2025-08-14T21:53:54.9588982Z ---------------------------------------- 356.9/356.9 kB ? eta 0:00:00 2025-08-14T21:53:54.9636870Z Downloading fsspec-2025.7.0-py3-none-any.whl (199 kB) 2025-08-14T21:53:54.9736947Z --------------------------------------- 199.6/199.6 kB 12.6 MB/s eta 0:00:00 2025-08-14T21:53:54.9789744Z Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) 2025-08-14T21:53:55.0358154Z ---------------------------------------- 6.3/6.3 MB 101.4 MB/s eta 0:00:00 2025-08-14T21:53:55.0404081Z Downloading filelock-3.19.1-py3-none-any.whl (15 kB) 2025-08-14T21:53:55.0499664Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-08-14T21:53:55.0590204Z ---------------------------------------- 134.9/134.9 kB ? eta 0:00:00 2025-08-14T21:53:55.0634376Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl (15 kB) 2025-08-14T21:53:56.0999715Z Installing collected packages: tcmlib, umf, sympy, optree, MarkupSafe, fsspec, filelock, jinja2, intel-cmplr-lib-ur, intel-openmp, torch 2025-08-14T21:53:56.3564597Z Attempting uninstall: sympy 2025-08-14T21:53:56.3579736Z Found existing installation: sympy 1.11.1 2025-08-14T21:53:57.2075276Z Uninstalling sympy-1.11.1: 2025-08-14T21:53:57.8879371Z Successfully uninstalled sympy-1.11.1 2025-08-14T21:54:09.1704605Z WARNING: The script isympy.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:54:09.1705463Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:54:35.9782477Z WARNING: The scripts torchfrtrace.exe and torchrun.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:54:35.9784271Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:54:36.1454045Z Successfully installed MarkupSafe-3.0.2 filelock-3.19.1 fsspec-2025.7.0 intel-cmplr-lib-ur-2025.1.1 intel-openmp-2025.1.1 jinja2-3.1.6 optree-0.13.0 sympy-1.14.0 tcmlib-1.3.0 torch-2.9.0a0+git1fc683c umf-0.10.0 2025-08-14T21:54:36.2433615Z /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:54:36.2722284Z +++ dirname .ci/pytorch/win-test.sh 2025-08-14T21:54:36.2786209Z ++ cd .ci/pytorch 2025-08-14T21:54:36.2791181Z ++ pwd 2025-08-14T21:54:36.2795568Z + SCRIPT_PARENT_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch 2025-08-14T21:54:36.2797210Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-14T21:54:36.2849951Z +++ dirname /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-14T21:54:36.2926361Z ++ source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common_utils.sh 2025-08-14T21:54:36.2929054Z +++ declare -f -t trap_add 2025-08-14T21:54:36.2939023Z ++ set -ex -o pipefail 2025-08-14T21:54:36.2939325Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-08-14T21:54:36.2939611Z ++ BUILD_TEST_LIBTORCH=0 2025-08-14T21:54:36.2939976Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:54:36.2940459Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:54:36.2995521Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:54:36.3086896Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-08-14T21:54:36.3087351Z + export TMP_DIR_WIN 2025-08-14T21:54:36.3087672Z + export PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:54:36.3088103Z + PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:54:36.3140219Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:54:36.3228406Z + PROJECT_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:54:36.3228816Z + export PROJECT_DIR_WIN 2025-08-14T21:54:36.3229168Z + export TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:54:36.3229577Z + TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:54:36.3281999Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:54:36.3368594Z + TEST_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\test' 2025-08-14T21:54:36.3368971Z + export TEST_DIR_WIN 2025-08-14T21:54:36.3369296Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/16976255045/build-results/ 2025-08-14T21:54:36.3369721Z + PYTORCH_FINAL_PACKAGE_DIR=/c/16976255045/build-results/ 2025-08-14T21:54:36.3424660Z ++ cygpath -w /c/16976255045/build-results/ 2025-08-14T21:54:36.3514061Z + PYTORCH_FINAL_PACKAGE_DIR_WIN='C:\16976255045\build-results\' 2025-08-14T21:54:36.3514480Z + export PYTORCH_FINAL_PACKAGE_DIR_WIN 2025-08-14T21:54:36.3514859Z + export TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:54:36.3515141Z + TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:54:36.3515884Z + mkdir -p /c/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch 2025-08-14T21:54:36.3640051Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:54:36.3640782Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:54:36.3641283Z + [[ default = \f\o\r\c\e\_\o\n\_\c\p\u ]] 2025-08-14T21:54:36.3641578Z + [[ win-vs2022-cpu-py3 == *cuda* ]] 2025-08-14T21:54:36.3642184Z + python -m pip install pytest-rerunfailures==10.3 pytest-cpp==2.3.0 tensorboard==2.13.0 protobuf==5.29.4 pytest-subtests==0.13.1 2025-08-14T21:54:37.0662198Z Collecting pytest-rerunfailures==10.3 2025-08-14T21:54:37.2576913Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-08-14T21:54:37.2934519Z Requirement already satisfied: pytest-cpp==2.3.0 in c:\jenkins\miniconda3\lib\site-packages (2.3.0) 2025-08-14T21:54:37.3419851Z Collecting tensorboard==2.13.0 2025-08-14T21:54:37.3478805Z Downloading tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-08-14T21:54:37.7209396Z Collecting protobuf==5.29.4 2025-08-14T21:54:37.7277686Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl.metadata (592 bytes) 2025-08-14T21:54:37.7534167Z Collecting pytest-subtests==0.13.1 2025-08-14T21:54:37.7590293Z Downloading pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-08-14T21:54:37.7710138Z Requirement already satisfied: packaging>=17.1 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (23.2) 2025-08-14T21:54:37.7716711Z Requirement already satisfied: pytest>=5.3 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (7.1.3) 2025-08-14T21:54:37.7742437Z Requirement already satisfied: colorama in c:\jenkins\miniconda3\lib\site-packages (from pytest-cpp==2.3.0) (0.4.6) 2025-08-14T21:54:37.8027844Z Collecting absl-py>=0.4 (from tensorboard==2.13.0) 2025-08-14T21:54:37.8071801Z Downloading absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-08-14T21:54:38.5311400Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0) 2025-08-14T21:54:38.5369310Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl.metadata (4.0 kB) 2025-08-14T21:54:38.6467937Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0) 2025-08-14T21:54:38.6513777Z Downloading google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-08-14T21:54:38.6771704Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0) 2025-08-14T21:54:38.6832318Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-08-14T21:54:38.7173643Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0) 2025-08-14T21:54:38.7217911Z Downloading markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-08-14T21:54:38.7284820Z Requirement already satisfied: numpy>=1.12.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (1.22.3) 2025-08-14T21:54:38.7488457Z Requirement already satisfied: requests<3,>=2.21.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (2.27.1) 2025-08-14T21:54:38.7495019Z Requirement already satisfied: setuptools>=41.0.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (78.1.1) 2025-08-14T21:54:38.7645124Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0) 2025-08-14T21:54:38.7700947Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-08-14T21:54:38.8457733Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0) 2025-08-14T21:54:38.8508429Z Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-08-14T21:54:38.8588981Z Requirement already satisfied: wheel>=0.26 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (0.43.0) 2025-08-14T21:54:38.8639775Z Requirement already satisfied: attrs>=19.2.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest-subtests==0.13.1) (25.3.0) 2025-08-14T21:54:38.9715467Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:54:38.9760625Z Downloading cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T21:54:39.0112710Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:54:39.0163908Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-08-14T21:54:39.0442474Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:54:39.0487913Z Downloading rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-14T21:54:39.0980644Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-14T21:54:39.1025654Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-14T21:54:39.1256485Z Requirement already satisfied: importlib-metadata>=4.4 in c:\jenkins\miniconda3\lib\site-packages (from markdown>=2.6.8->tensorboard==2.13.0) (8.5.0) 2025-08-14T21:54:39.1410813Z Requirement already satisfied: iniconfig in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.1.0) 2025-08-14T21:54:39.1418242Z Requirement already satisfied: pluggy<2.0,>=0.12 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.0.0) 2025-08-14T21:54:39.1424838Z Requirement already satisfied: py>=1.8.2 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.11.0) 2025-08-14T21:54:39.1435565Z Requirement already satisfied: tomli>=1.0.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.2.1) 2025-08-14T21:54:39.1564182Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (1.26.19) 2025-08-14T21:54:39.1570809Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2025.4.26) 2025-08-14T21:54:39.1584484Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2.0.4) 2025-08-14T21:54:39.1596749Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (3.7) 2025-08-14T21:54:39.1876825Z Requirement already satisfied: MarkupSafe>=2.1.1 in c:\jenkins\miniconda3\lib\site-packages (from werkzeug>=1.0.1->tensorboard==2.13.0) (3.0.2) 2025-08-14T21:54:39.2273296Z Requirement already satisfied: zipp>=3.20 in c:\jenkins\miniconda3\lib\site-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard==2.13.0) (3.21.0) 2025-08-14T21:54:39.2789367Z Collecting pyasn1<0.7.0,>=0.6.1 (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:54:39.2833629Z Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-14T21:54:39.3215482Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-14T21:54:39.3259847Z Downloading oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-08-14T21:54:39.4076062Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-08-14T21:54:39.4208071Z Downloading tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-08-14T21:54:39.4869880Z ---------------------------------------- 5.6/5.6 MB 118.3 MB/s eta 0:00:00 2025-08-14T21:54:39.4931830Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl (434 kB) 2025-08-14T21:54:39.5067788Z --------------------------------------- 434.6/434.6 kB 28.3 MB/s eta 0:00:00 2025-08-14T21:54:39.5117273Z Downloading pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-08-14T21:54:39.5216949Z Downloading absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-08-14T21:54:39.5309243Z ---------------------------------------- 135.8/135.8 kB 8.4 MB/s eta 0:00:00 2025-08-14T21:54:39.5353174Z Downloading google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-08-14T21:54:39.5452667Z --------------------------------------- 216.1/216.1 kB 12.9 MB/s eta 0:00:00 2025-08-14T21:54:39.5540511Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-08-14T21:54:39.5669346Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl (4.5 MB) 2025-08-14T21:54:39.6047419Z ---------------------------------------- 4.5/4.5 MB 144.7 MB/s eta 0:00:00 2025-08-14T21:54:39.6095740Z Downloading markdown-3.8.2-py3-none-any.whl (106 kB) 2025-08-14T21:54:39.6191700Z ---------------------------------------- 106.8/106.8 kB ? eta 0:00:00 2025-08-14T21:54:39.6250581Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-08-14T21:54:39.6357101Z Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-08-14T21:54:39.6452659Z --------------------------------------- 224.5/224.5 kB 13.4 MB/s eta 0:00:00 2025-08-14T21:54:39.6495148Z Downloading cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-08-14T21:54:39.6603723Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-08-14T21:54:39.6695814Z ---------------------------------------- 181.3/181.3 kB ? eta 0:00:00 2025-08-14T21:54:39.6737480Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-08-14T21:54:39.7711976Z Downloading rsa-4.9.1-py3-none-any.whl (34 kB) 2025-08-14T21:54:39.7820505Z Downloading oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-08-14T21:54:39.7927190Z ---------------------------------------- 160.1/160.1 kB ? eta 0:00:00 2025-08-14T21:54:39.7974415Z Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-08-14T21:54:39.8058415Z ---------------------------------------- 83.1/83.1 kB ? eta 0:00:00 2025-08-14T21:54:40.6886734Z Installing collected packages: werkzeug, tensorboard-data-server, pyasn1, protobuf, oauthlib, grpcio, cachetools, absl-py, rsa, requests-oauthlib, pytest-subtests, pytest-rerunfailures, pyasn1-modules, markdown, google-auth, google-auth-oauthlib, tensorboard 2025-08-14T21:54:40.9826123Z Attempting uninstall: protobuf 2025-08-14T21:54:40.9835677Z Found existing installation: protobuf 5.29.3 2025-08-14T21:54:41.0013515Z Uninstalling protobuf-5.29.3: 2025-08-14T21:54:41.0055594Z Successfully uninstalled protobuf-5.29.3 2025-08-14T21:54:41.8279300Z WARNING: The scripts pyrsa-decrypt.exe, pyrsa-encrypt.exe, pyrsa-keygen.exe, pyrsa-priv2pub.exe, pyrsa-sign.exe and pyrsa-verify.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:54:41.8280646Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:54:41.9496856Z Attempting uninstall: pytest-rerunfailures 2025-08-14T21:54:41.9517356Z Found existing installation: pytest-rerunfailures 10.2 2025-08-14T21:54:41.9847195Z Uninstalling pytest-rerunfailures-10.2: 2025-08-14T21:54:42.4521210Z Successfully uninstalled pytest-rerunfailures-10.2 2025-08-14T21:54:42.8920074Z WARNING: The script markdown_py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:54:42.8921062Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:54:43.0889956Z WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:54:43.0890850Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:54:44.0387230Z WARNING: The script tensorboard.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:54:44.0389086Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:54:44.0999514Z Successfully installed absl-py-2.3.1 cachetools-5.5.2 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.74.0 markdown-3.8.2 oauthlib-3.3.1 protobuf-5.29.4 pyasn1-0.6.1 pyasn1-modules-0.4.2 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 requests-oauthlib-2.0.0 rsa-4.9.1 tensorboard-2.13.0 tensorboard-data-server-0.7.2 werkzeug-3.1.3 2025-08-14T21:54:44.3021509Z + python -m pip install z3-solver==4.15.1.0 2025-08-14T21:54:45.0540478Z Collecting z3-solver==4.15.1.0 2025-08-14T21:54:45.2408997Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl.metadata (778 bytes) 2025-08-14T21:54:45.2573113Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl (16.4 MB) 2025-08-14T21:54:45.5632068Z ---------------------------------------- 16.4/16.4 MB 108.8 MB/s eta 0:00:00 2025-08-14T21:54:46.5784096Z Installing collected packages: z3-solver 2025-08-14T21:54:47.0471544Z Successfully installed z3-solver-4.15.1.0 2025-08-14T21:54:47.1249678Z + python -m pip install tlparse==0.3.30 2025-08-14T21:54:47.9367688Z Collecting tlparse==0.3.30 2025-08-14T21:54:48.1212500Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl.metadata (2.0 kB) 2025-08-14T21:54:48.1362151Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl (1.8 MB) 2025-08-14T21:54:48.3397630Z ---------------------------------------- 1.8/1.8 MB 10.7 MB/s eta 0:00:00 2025-08-14T21:54:49.3171481Z Installing collected packages: tlparse 2025-08-14T21:54:49.3935788Z Successfully installed tlparse-0.3.30 2025-08-14T21:54:49.4708091Z + python -m pip install parameterized==0.8.1 2025-08-14T21:54:50.1729283Z Collecting parameterized==0.8.1 2025-08-14T21:54:50.3583081Z Downloading parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-08-14T21:54:50.4002981Z Downloading parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-08-14T21:54:51.4074280Z Installing collected packages: parameterized 2025-08-14T21:54:51.4894727Z Successfully installed parameterized-0.8.1 2025-08-14T21:54:51.5655814Z + python -m pip install pulp==2.9.0 2025-08-14T21:54:52.2774908Z Collecting pulp==2.9.0 2025-08-14T21:54:52.4733387Z Downloading PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T21:54:52.4899165Z Downloading PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-08-14T21:54:52.7703471Z ---------------------------------------- 17.7/17.7 MB 92.9 MB/s eta 0:00:00 2025-08-14T21:54:53.8072222Z Installing collected packages: pulp 2025-08-14T21:54:54.2180253Z WARNING: The script pulptest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:54:54.2181059Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:54:54.5116710Z Successfully installed pulp-2.9.0 2025-08-14T21:54:54.5897815Z + python -m pip install expecttest==0.3.0 2025-08-14T21:54:55.2948691Z Collecting expecttest==0.3.0 2025-08-14T21:54:55.4802678Z Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-08-14T21:54:55.4934260Z Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-08-14T21:54:56.4747660Z Installing collected packages: expecttest 2025-08-14T21:54:56.4749268Z Attempting uninstall: expecttest 2025-08-14T21:54:56.4758150Z Found existing installation: expecttest 0.1.3 2025-08-14T21:54:56.4900150Z Uninstalling expecttest-0.1.3: 2025-08-14T21:54:56.4918609Z Successfully uninstalled expecttest-0.1.3 2025-08-14T21:54:56.5461140Z Successfully installed expecttest-0.3.0 2025-08-14T21:54:56.6204377Z + run_tests 2025-08-14T21:54:56.6204900Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:54:56.6205569Z + [[ -x /c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe ]] 2025-08-14T21:54:56.6206573Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:54:56.6207177Z + [[ -x /c/Windows/System32/nvidia-smi.exe ]] 2025-08-14T21:54:56.6207509Z + /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:54:56.6644306Z NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running. This can also be happening if non-NVIDIA GPU is running as primary display, and NVIDIA GPU is in WDDM mode. 2025-08-14T21:54:56.6645487Z 2025-08-14T21:54:56.6673613Z + echo true 2025-08-14T21:54:56.6674035Z true 2025-08-14T21:54:56.6674241Z + break 2025-08-14T21:54:56.6674419Z + [[ 3 -eq 1 ]] 2025-08-14T21:54:56.6674864Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-14T21:54:56.6805352Z 2025-08-14T21:54:56.6806094Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-14T21:54:56.6814321Z 2025-08-14T21:54:56.6816900Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-14T21:54:56.6819452Z 2025-08-14T21:54:56.6819993Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T21:54:56.6820616Z 2025-08-14T21:54:56.6821177Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-14T21:54:56.6830962Z 2025-08-14T21:54:56.6831651Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-08-14T21:54:56.6835605Z 2025-08-14T21:54:56.6836286Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-14T21:54:56.6838699Z 2025-08-14T21:54:56.6839415Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-14T21:54:56.6840527Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-14T21:54:56.6841503Z if errorlevel 1 exit /b 2025-08-14T21:54:56.6841765Z if not errorlevel 0 exit /b 2025-08-14T21:54:56.6842552Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-14T21:54:56.6843369Z if errorlevel 1 exit /b 2025-08-14T21:54:56.6843615Z if not errorlevel 0 exit /b 2025-08-14T21:54:56.6843860Z ) 2025-08-14T21:54:56.6843965Z 2025-08-14T21:54:56.6844314Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-14T21:54:57.3341074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py 2025-08-14T21:54:57.3345769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\hub.py 2025-08-14T21:54:57.3349874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\library.py 2025-08-14T21:54:57.3353685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\overrides.py 2025-08-14T21:54:57.3357760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\py.typed 2025-08-14T21:54:57.3367224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quasirandom.py 2025-08-14T21:54:57.3370803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\random.py 2025-08-14T21:54:57.3374338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.py 2025-08-14T21:54:57.3377969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.pyi 2025-08-14T21:54:57.3381393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\serialization.py 2025-08-14T21:54:57.3385409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\storage.py 2025-08-14T21:54:57.3389207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\torch_version.py 2025-08-14T21:54:57.3392761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\types.py 2025-08-14T21:54:57.3396173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\version.py 2025-08-14T21:54:57.3399430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_appdirs.py 2025-08-14T21:54:57.3403196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C.cp39-win_amd64.pyd 2025-08-14T21:54:57.3407394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_classes.py 2025-08-14T21:54:57.3411560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_compile.py 2025-08-14T21:54:57.3414897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_ops.py 2025-08-14T21:54:57.3418460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_environment.py 2025-08-14T21:54:57.3422447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_guards.py 2025-08-14T21:54:57.3426092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_jit_internal.py 2025-08-14T21:54:57.3429939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_linalg_utils.py 2025-08-14T21:54:57.3433775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lobpcg.py 2025-08-14T21:54:57.3437419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lowrank.py 2025-08-14T21:54:57.3446494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_meta_registrations.py 2025-08-14T21:54:57.3451379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_namedtensor_internals.py 2025-08-14T21:54:57.3454998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_ops.py 2025-08-14T21:54:57.3458683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_python_dispatcher.py 2025-08-14T21:54:57.3462296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_size_docs.py 2025-08-14T21:54:57.3465693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_sources.py 2025-08-14T21:54:57.3469102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_storage_docs.py 2025-08-14T21:54:57.3472411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_streambase.py 2025-08-14T21:54:57.3475815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor.py 2025-08-14T21:54:57.3479540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_docs.py 2025-08-14T21:54:57.3484933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_str.py 2025-08-14T21:54:57.3494390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_thread_safe_fork.py 2025-08-14T21:54:57.3497029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_torch_docs.py 2025-08-14T21:54:57.3502882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils.py 2025-08-14T21:54:57.3506611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils_internal.py 2025-08-14T21:54:57.3510123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.py 2025-08-14T21:54:57.3514449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.pyi 2025-08-14T21:54:57.3524432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vmap_internals.py 2025-08-14T21:54:57.3528145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_weights_only_unpickler.py 2025-08-14T21:54:57.3532317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__config__.py 2025-08-14T21:54:57.3535943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__future__.py 2025-08-14T21:54:57.3539778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__init__.py 2025-08-14T21:54:57.3552545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\memory.py 2025-08-14T21:54:57.3555929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\_utils.py 2025-08-14T21:54:57.3559508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__init__.py 2025-08-14T21:54:57.3566951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\memory.cpython-39.pyc 2025-08-14T21:54:57.3570429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:57.3573888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3586743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\autocast_mode.py 2025-08-14T21:54:57.3590854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\grad_scaler.py 2025-08-14T21:54:57.3611499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__init__.py 2025-08-14T21:54:57.3624100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:54:57.3627578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:54:57.3631116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3646380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__init__.py 2025-08-14T21:54:57.3653970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__init__.py 2025-08-14T21:54:57.3661761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__init__.py 2025-08-14T21:54:57.3668529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\fused.py 2025-08-14T21:54:57.3671996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__init__.py 2025-08-14T21:54:57.3678788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-14T21:54:57.3682771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3690661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__init__.py 2025-08-14T21:54:57.3697857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\conv_fused.py 2025-08-14T21:54:57.3701445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_fused.py 2025-08-14T21:54:57.3704756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_relu.py 2025-08-14T21:54:57.3708400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__init__.py 2025-08-14T21:54:57.3721055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-14T21:54:57.3725705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-14T21:54:57.3729868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:54:57.3739460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3748075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3757196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__init__.py 2025-08-14T21:54:57.3764732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-14T21:54:57.3772073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-14T21:54:57.3775613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-14T21:54:57.3782839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:54:57.3786869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3794488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3802378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-14T21:54:57.3805819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_add.py 2025-08-14T21:54:57.3809019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-14T21:54:57.3812276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-14T21:54:57.3815510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__init__.py 2025-08-14T21:54:57.3828188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-14T21:54:57.3831436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_add.cpython-39.pyc 2025-08-14T21:54:57.3834927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-14T21:54:57.3844097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:54:57.3847556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3855711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3868484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3876913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__init__.py 2025-08-14T21:54:57.3884746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__init__.py 2025-08-14T21:54:57.3891962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\linear.py 2025-08-14T21:54:57.3895493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__init__.py 2025-08-14T21:54:57.3903208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:54:57.3906801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3914475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3923114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\conv.py 2025-08-14T21:54:57.3926449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\embedding_ops.py 2025-08-14T21:54:57.3929928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\linear.py 2025-08-14T21:54:57.3933145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__init__.py 2025-08-14T21:54:57.3945845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:54:57.3949355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:54:57.3953200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:54:57.3961854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3969425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.3978004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__init__.py 2025-08-14T21:54:57.3985117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\activation.py 2025-08-14T21:54:57.3988717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\rnn.py 2025-08-14T21:54:57.3992973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__init__.py 2025-08-14T21:54:57.4000759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:54:57.4004373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:54:57.4007987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4020566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4034752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\functional.py 2025-08-14T21:54:57.4038425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__init__.py 2025-08-14T21:54:57.4045641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__init__.py 2025-08-14T21:54:57.4051949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\conv.py 2025-08-14T21:54:57.4055228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\linear.py 2025-08-14T21:54:57.4058774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\rnn.py 2025-08-14T21:54:57.4062259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__init__.py 2025-08-14T21:54:57.4068959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:54:57.4072622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:54:57.4076883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:54:57.4102037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4109642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4117193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\activation.py 2025-08-14T21:54:57.4120698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\batchnorm.py 2025-08-14T21:54:57.4123987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\conv.py 2025-08-14T21:54:57.4127526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\dropout.py 2025-08-14T21:54:57.4131785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\embedding_ops.py 2025-08-14T21:54:57.4214396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\functional_modules.py 2025-08-14T21:54:57.4218189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\linear.py 2025-08-14T21:54:57.4221716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\normalization.py 2025-08-14T21:54:57.4224978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\rnn.py 2025-08-14T21:54:57.4228456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\utils.py 2025-08-14T21:54:57.4231664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__init__.py 2025-08-14T21:54:57.4239632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:54:57.4243258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:54:57.4246888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:54:57.4256414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:54:57.4260171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:54:57.4263990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-14T21:54:57.4267362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:54:57.4270829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:54:57.4274239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:54:57.4277848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.4281425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4295625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__init__.py 2025-08-14T21:54:57.4302238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\conv.py 2025-08-14T21:54:57.4305433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\linear.py 2025-08-14T21:54:57.4308694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\rnn.py 2025-08-14T21:54:57.4312298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\sparse.py 2025-08-14T21:54:57.4316044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\utils.py 2025-08-14T21:54:57.4319462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__init__.py 2025-08-14T21:54:57.4333630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:54:57.4337764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:54:57.4341633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:54:57.4351912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:54:57.4355868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.4359680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4367682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4376389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-14T21:54:57.4380221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4389346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__init__.py 2025-08-14T21:54:57.4396393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\linear.py 2025-08-14T21:54:57.4399985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\utils.py 2025-08-14T21:54:57.4403265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__init__.py 2025-08-14T21:54:57.4409541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\linear.py 2025-08-14T21:54:57.4413039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__init__.py 2025-08-14T21:54:57.4419761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\linear.cpython-39.pyc 2025-08-14T21:54:57.4423098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4436390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\linear.cpython-39.pyc 2025-08-14T21:54:57.4440095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.4443945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4456897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4465612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.4474266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite.py 2025-08-14T21:54:57.4477689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite_fx.py 2025-08-14T21:54:57.4481264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__init__.py 2025-08-14T21:54:57.4487149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_matcher.py 2025-08-14T21:54:57.4490547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_passes.py 2025-08-14T21:54:57.4494289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\mappings.py 2025-08-14T21:54:57.4497544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\ns_types.py 2025-08-14T21:54:57.4500787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\n_shadows_utils.py 2025-08-14T21:54:57.4510346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\pattern_utils.py 2025-08-14T21:54:57.4513875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\qconfig_multi_mapping.py 2025-08-14T21:54:57.4516976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\utils.py 2025-08-14T21:54:57.4520505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\weight_utils.py 2025-08-14T21:54:57.4523861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__init__.py 2025-08-14T21:54:57.4530202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_matcher.cpython-39.pyc 2025-08-14T21:54:57.4534073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_passes.cpython-39.pyc 2025-08-14T21:54:57.4537443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\mappings.cpython-39.pyc 2025-08-14T21:54:57.4628372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\ns_types.cpython-39.pyc 2025-08-14T21:54:57.4631876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\n_shadows_utils.cpython-39.pyc 2025-08-14T21:54:57.4635896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:54:57.4639422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\qconfig_multi_mapping.cpython-39.pyc 2025-08-14T21:54:57.4643175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.4646631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\weight_utils.cpython-39.pyc 2025-08-14T21:54:57.4650192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5205084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-14T21:54:57.5208714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-14T21:54:57.5212633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5226603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_mappings.py 2025-08-14T21:54:57.5230011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__init__.py 2025-08-14T21:54:57.5237706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\base_scheduler.py 2025-08-14T21:54:57.5241739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\cubic_scheduler.py 2025-08-14T21:54:57.5245660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\lambda_scheduler.py 2025-08-14T21:54:57.5254609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__init__.py 2025-08-14T21:54:57.5261004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\base_scheduler.cpython-39.pyc 2025-08-14T21:54:57.5264480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\cubic_scheduler.cpython-39.pyc 2025-08-14T21:54:57.5268116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\lambda_scheduler.cpython-39.pyc 2025-08-14T21:54:57.5277127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5290711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\base_sparsifier.py 2025-08-14T21:54:57.5294192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py 2025-08-14T21:54:57.5297518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\utils.py 2025-08-14T21:54:57.5306085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py 2025-08-14T21:54:57.5309600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__init__.py 2025-08-14T21:54:57.5316021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\base_sparsifier.cpython-39.pyc 2025-08-14T21:54:57.5319828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\nearly_diagonal_sparsifier.cpython-39.pyc 2025-08-14T21:54:57.5323365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.5332028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\weight_norm_sparsifier.cpython-39.pyc 2025-08-14T21:54:57.5335376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5343674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__init__.py 2025-08-14T21:54:57.5349801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py 2025-08-14T21:54:57.5353638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py 2025-08-14T21:54:57.5365683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\activation_sparsifier.cpython-39.pyc 2025-08-14T21:54:57.5369187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5376266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py 2025-08-14T21:54:57.5379657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__init__.py 2025-08-14T21:54:57.5386599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\base_data_scheduler.cpython-39.pyc 2025-08-14T21:54:57.5390259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5403183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py 2025-08-14T21:54:57.5406732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py 2025-08-14T21:54:57.5411124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py 2025-08-14T21:54:57.5420087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__init__.py 2025-08-14T21:54:57.5427395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py 2025-08-14T21:54:57.5447910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py 2025-08-14T21:54:57.5451379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py 2025-08-14T21:54:57.5455103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py 2025-08-14T21:54:57.5474654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\data_sparsity.cpython-39.pyc 2025-08-14T21:54:57.5478408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\_data_sparstity_utils.cpython-39.pyc 2025-08-14T21:54:57.5483379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5495950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5504019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\base_data_sparsifier.cpython-39.pyc 2025-08-14T21:54:57.5508008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\data_norm_sparsifier.cpython-39.pyc 2025-08-14T21:54:57.5511134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\quantization_utils.cpython-39.pyc 2025-08-14T21:54:57.5520452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5528204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py 2025-08-14T21:54:57.5531445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py 2025-08-14T21:54:57.5534742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py 2025-08-14T21:54:57.5543731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\match_utils.py 2025-08-14T21:54:57.5547327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\parametrization.py 2025-08-14T21:54:57.5550586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\prune_functions.py 2025-08-14T21:54:57.5554411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\saliency_pruner.py 2025-08-14T21:54:57.5557955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__init__.py 2025-08-14T21:54:57.5565097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\base_structured_sparsifier.cpython-39.pyc 2025-08-14T21:54:57.5568487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\FPGM_pruner.cpython-39.pyc 2025-08-14T21:54:57.5572220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\lstm_saliency_pruner.cpython-39.pyc 2025-08-14T21:54:57.5580572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:54:57.5584108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\parametrization.cpython-39.pyc 2025-08-14T21:54:57.5587732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\prune_functions.cpython-39.pyc 2025-08-14T21:54:57.5591130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\saliency_pruner.cpython-39.pyc 2025-08-14T21:54:57.5594752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5602627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5610406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\_mappings.cpython-39.pyc 2025-08-14T21:54:57.5614074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5623294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fake_quantize.py 2025-08-14T21:54:57.5626802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuser_method_mappings.py 2025-08-14T21:54:57.5630540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuse_modules.py 2025-08-14T21:54:57.5639828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\observer.py 2025-08-14T21:54:57.5643783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig.py 2025-08-14T21:54:57.5647325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig_mapping.py 2025-08-14T21:54:57.5651019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantization_mappings.py 2025-08-14T21:54:57.5654423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize.py 2025-08-14T21:54:57.5657889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_fx.py 2025-08-14T21:54:57.5661489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_jit.py 2025-08-14T21:54:57.5664940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_pt2e.py 2025-08-14T21:54:57.5668612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quant_type.py 2025-08-14T21:54:57.5672190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\stubs.py 2025-08-14T21:54:57.5675849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\utils.py 2025-08-14T21:54:57.5679394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_correct_bias.py 2025-08-14T21:54:57.5682987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_equalize.py 2025-08-14T21:54:57.5686532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_learnable_fake_quantize.py 2025-08-14T21:54:57.5690024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__init__.py 2025-08-14T21:54:57.5697296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\backend_config.py 2025-08-14T21:54:57.5701201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\executorch.py 2025-08-14T21:54:57.5704425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\fbgemm.py 2025-08-14T21:54:57.5707600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\native.py 2025-08-14T21:54:57.5716457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\observation_type.py 2025-08-14T21:54:57.5719216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\onednn.py 2025-08-14T21:54:57.5723457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\qnnpack.py 2025-08-14T21:54:57.5726731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\tensorrt.py 2025-08-14T21:54:57.5730063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\utils.py 2025-08-14T21:54:57.5733425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\x86.py 2025-08-14T21:54:57.5736940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_common_operator_config_utils.py 2025-08-14T21:54:57.5741132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_qnnpack_pt2e.py 2025-08-14T21:54:57.5746045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__init__.py 2025-08-14T21:54:57.5754864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\backend_config.cpython-39.pyc 2025-08-14T21:54:57.5759175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\executorch.cpython-39.pyc 2025-08-14T21:54:57.5763212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\fbgemm.cpython-39.pyc 2025-08-14T21:54:57.5772007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\native.cpython-39.pyc 2025-08-14T21:54:57.5775933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\observation_type.cpython-39.pyc 2025-08-14T21:54:57.5779413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\onednn.cpython-39.pyc 2025-08-14T21:54:57.5783554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\qnnpack.cpython-39.pyc 2025-08-14T21:54:57.5787383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\tensorrt.cpython-39.pyc 2025-08-14T21:54:57.5791308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.5794959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\x86.cpython-39.pyc 2025-08-14T21:54:57.5798799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_common_operator_config_utils.cpython-39.pyc 2025-08-14T21:54:57.5803097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_qnnpack_pt2e.cpython-39.pyc 2025-08-14T21:54:57.5806119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5814748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\convert.py 2025-08-14T21:54:57.5818144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\custom_config.py 2025-08-14T21:54:57.5822087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse.py 2025-08-14T21:54:57.5825446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse_handler.py 2025-08-14T21:54:57.5828541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\graph_module.py 2025-08-14T21:54:57.5837020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_fbgemm.py 2025-08-14T21:54:57.5840726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_qnnpack.py 2025-08-14T21:54:57.5844299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lstm_utils.py 2025-08-14T21:54:57.5847593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\match_utils.py 2025-08-14T21:54:57.5850754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\pattern_utils.py 2025-08-14T21:54:57.5854354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\prepare.py 2025-08-14T21:54:57.5858124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\qconfig_mapping_utils.py 2025-08-14T21:54:57.5861505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\quantize_handler.py 2025-08-14T21:54:57.5865432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\tracer.py 2025-08-14T21:54:57.5868824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\utils.py 2025-08-14T21:54:57.5872191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_decomposed.py 2025-08-14T21:54:57.5876039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_equalize.py 2025-08-14T21:54:57.5879611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_lower_to_native_backend.py 2025-08-14T21:54:57.5883238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__init__.py 2025-08-14T21:54:57.5890553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\detector.py 2025-08-14T21:54:57.5894267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report.py 2025-08-14T21:54:57.5897763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_observer.py 2025-08-14T21:54:57.5906860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_visualizer.py 2025-08-14T21:54:57.5910429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__init__.py 2025-08-14T21:54:57.5916578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\detector.cpython-39.pyc 2025-08-14T21:54:57.5920393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report.cpython-39.pyc 2025-08-14T21:54:57.5924129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_observer.cpython-39.pyc 2025-08-14T21:54:57.5932608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_visualizer.cpython-39.pyc 2025-08-14T21:54:57.5936853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.5944778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-14T21:54:57.5948368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\custom_config.cpython-39.pyc 2025-08-14T21:54:57.5951886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-14T21:54:57.5960627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse_handler.cpython-39.pyc 2025-08-14T21:54:57.5964017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:54:57.5967371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_fbgemm.cpython-39.pyc 2025-08-14T21:54:57.5970834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_qnnpack.cpython-39.pyc 2025-08-14T21:54:57.5974649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lstm_utils.cpython-39.pyc 2025-08-14T21:54:57.5977788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:54:57.5981048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:54:57.5984649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:54:57.5988688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\qconfig_mapping_utils.cpython-39.pyc 2025-08-14T21:54:57.5992160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\quantize_handler.cpython-39.pyc 2025-08-14T21:54:57.5995523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\tracer.cpython-39.pyc 2025-08-14T21:54:57.5999268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.6002964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_decomposed.cpython-39.pyc 2025-08-14T21:54:57.6006337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:54:57.6015680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_lower_to_native_backend.cpython-39.pyc 2025-08-14T21:54:57.6018995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6027453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\duplicate_dq_pass.py 2025-08-14T21:54:57.6030878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\export_utils.py 2025-08-14T21:54:57.6034476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\graph_utils.py 2025-08-14T21:54:57.6037835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\lowering.py 2025-08-14T21:54:57.6046454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\port_metadata_pass.py 2025-08-14T21:54:57.6050466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\prepare.py 2025-08-14T21:54:57.6053549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\qat_utils.py 2025-08-14T21:54:57.6056989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\utils.py 2025-08-14T21:54:57.6060223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_affine_quantization.py 2025-08-14T21:54:57.6063662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_numeric_debugger.py 2025-08-14T21:54:57.6066901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__init__.py 2025-08-14T21:54:57.6073394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\rewrite.py 2025-08-14T21:54:57.6076499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__init__.py 2025-08-14T21:54:57.6083524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\rewrite.cpython-39.pyc 2025-08-14T21:54:57.6086926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6094492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\duplicate_dq_pass.cpython-39.pyc 2025-08-14T21:54:57.6097863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\export_utils.cpython-39.pyc 2025-08-14T21:54:57.6101259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\graph_utils.cpython-39.pyc 2025-08-14T21:54:57.6111301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\lowering.cpython-39.pyc 2025-08-14T21:54:57.6114880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\port_metadata_pass.cpython-39.pyc 2025-08-14T21:54:57.6118386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:54:57.6121896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\qat_utils.cpython-39.pyc 2025-08-14T21:54:57.6125392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.6128980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_affine_quantization.cpython-39.pyc 2025-08-14T21:54:57.6132462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_numeric_debugger.cpython-39.pyc 2025-08-14T21:54:57.6136208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6144442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\composable_quantizer.py 2025-08-14T21:54:57.6147953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\embedding_quantizer.py 2025-08-14T21:54:57.6151390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\quantizer.py 2025-08-14T21:54:57.6161260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\utils.py 2025-08-14T21:54:57.6164873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\x86_inductor_quantizer.py 2025-08-14T21:54:57.6168774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer.py 2025-08-14T21:54:57.6172525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py 2025-08-14T21:54:57.6176697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py 2025-08-14T21:54:57.6180884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__init__.py 2025-08-14T21:54:57.6188447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\composable_quantizer.cpython-39.pyc 2025-08-14T21:54:57.6191962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\embedding_quantizer.cpython-39.pyc 2025-08-14T21:54:57.6195798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\quantizer.cpython-39.pyc 2025-08-14T21:54:57.6204371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.6208515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\x86_inductor_quantizer.cpython-39.pyc 2025-08-14T21:54:57.6211878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer.cpython-39.pyc 2025-08-14T21:54:57.6215620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer_utils.cpython-39.pyc 2025-08-14T21:54:57.6219070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xpu_inductor_quantizer.cpython-39.pyc 2025-08-14T21:54:57.6222597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6237367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-14T21:54:57.6241235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-14T21:54:57.6260755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-14T21:54:57.6261685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\observer.cpython-39.pyc 2025-08-14T21:54:57.6262496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-14T21:54:57.6263314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig_mapping.cpython-39.pyc 2025-08-14T21:54:57.6266329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-14T21:54:57.6270129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-14T21:54:57.6273759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-14T21:54:57.6277322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-14T21:54:57.6281080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_pt2e.cpython-39.pyc 2025-08-14T21:54:57.6284630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-14T21:54:57.6288193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-14T21:54:57.6291848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.6295592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_correct_bias.cpython-39.pyc 2025-08-14T21:54:57.6299030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:54:57.6302669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_learnable_fake_quantize.cpython-39.pyc 2025-08-14T21:54:57.6349008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6576522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6585550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\anomaly_mode.py 2025-08-14T21:54:57.6588574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\forward_ad.py 2025-08-14T21:54:57.6591777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\function.py 2025-08-14T21:54:57.6595139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\functional.py 2025-08-14T21:54:57.6604819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\gradcheck.py 2025-08-14T21:54:57.6608564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\grad_mode.py 2025-08-14T21:54:57.6611854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\graph.py 2025-08-14T21:54:57.6615104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler.py 2025-08-14T21:54:57.6618945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_legacy.py 2025-08-14T21:54:57.6623062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_util.py 2025-08-14T21:54:57.6626617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\variable.py 2025-08-14T21:54:57.6629931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__init__.py 2025-08-14T21:54:57.6636833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\tensor.py 2025-08-14T21:54:57.6640234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\utils.py 2025-08-14T21:54:57.6643633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__init__.py 2025-08-14T21:54:57.6650626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:54:57.6654113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.6657769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6671444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\anomaly_mode.cpython-39.pyc 2025-08-14T21:54:57.6674805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\forward_ad.cpython-39.pyc 2025-08-14T21:54:57.6678118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\function.cpython-39.pyc 2025-08-14T21:54:57.6686933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\functional.cpython-39.pyc 2025-08-14T21:54:57.6690693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\gradcheck.cpython-39.pyc 2025-08-14T21:54:57.6695449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\grad_mode.cpython-39.pyc 2025-08-14T21:54:57.6699103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\graph.cpython-39.pyc 2025-08-14T21:54:57.6702705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:54:57.6706509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_legacy.cpython-39.pyc 2025-08-14T21:54:57.6710006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_util.cpython-39.pyc 2025-08-14T21:54:57.6713687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\variable.cpython-39.pyc 2025-08-14T21:54:57.6717581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6726107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__init__.py 2025-08-14T21:54:57.6732453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__init__.py 2025-08-14T21:54:57.6739955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6746762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__init__.py 2025-08-14T21:54:57.6753903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6761875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\rnn.py 2025-08-14T21:54:57.6765506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__init__.py 2025-08-14T21:54:57.6772919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:54:57.6976464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.6983906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__init__.py 2025-08-14T21:54:57.6990842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7095660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__init__.py 2025-08-14T21:54:57.7102430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7109303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__init__.py 2025-08-14T21:54:57.7116216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7123659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__init__.py 2025-08-14T21:54:57.7130192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7137394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__init__.py 2025-08-14T21:54:57.7144105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7151409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__init__.py 2025-08-14T21:54:57.7158771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7166642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__init__.py 2025-08-14T21:54:57.7173667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7180824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__init__.py 2025-08-14T21:54:57.7187815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7194896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__init__.py 2025-08-14T21:54:57.7201770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7209265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__init__.py 2025-08-14T21:54:57.7216312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7223992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__init__.py 2025-08-14T21:54:57.7230641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7237978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\run_cpu.py 2025-08-14T21:54:57.7241664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__init__.py 2025-08-14T21:54:57.7248586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\run_cpu.cpython-39.pyc 2025-08-14T21:54:57.7252716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7260730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__init__.py 2025-08-14T21:54:57.7267754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7274938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\preprocess.py 2025-08-14T21:54:57.7278420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__init__.py 2025-08-14T21:54:57.7285053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\preprocess.cpython-39.pyc 2025-08-14T21:54:57.7288481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7295802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\prepare.py 2025-08-14T21:54:57.7299038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\serializer.py 2025-08-14T21:54:57.7303306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__init__.py 2025-08-14T21:54:57.7309473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:54:57.7313114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\serializer.cpython-39.pyc 2025-08-14T21:54:57.7316921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7411760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7419225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\FileStoreTest.exe 2025-08-14T21:54:57.7424627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\protoc.exe 2025-08-14T21:54:57.7442342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\TCPStoreTest.exe 2025-08-14T21:54:57.7447511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_api.exe 2025-08-14T21:54:57.7498933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_jit.exe 2025-08-14T21:54:57.7546139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_lazy.exe 2025-08-14T21:54:57.7563066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_nativert.exe 2025-08-14T21:54:57.7579534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\config.py 2025-08-14T21:54:57.7582698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\_cache.py 2025-08-14T21:54:57.7586143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__init__.py 2025-08-14T21:54:57.7593135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\config.cpython-39.pyc 2025-08-14T21:54:57.7597259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\_cache.cpython-39.pyc 2025-08-14T21:54:57.7600659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7695632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\_tensorboard_vis.py 2025-08-14T21:54:57.7698947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__init__.py 2025-08-14T21:54:57.7704935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\_tensorboard_vis.cpython-39.pyc 2025-08-14T21:54:57.7708601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7716456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__init__.py 2025-08-14T21:54:57.7723452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\autocast_mode.py 2025-08-14T21:54:57.7726726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\grad_scaler.py 2025-08-14T21:54:57.7730101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__init__.py 2025-08-14T21:54:57.7827263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:54:57.7830975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:54:57.7834541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7918198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.7933075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\csrc\inductor\aoti_runtime\model.h 2025-08-14T21:54:57.7941644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\comm.py 2025-08-14T21:54:57.7945053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\error.py 2025-08-14T21:54:57.7948118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\gds.py 2025-08-14T21:54:57.7951031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\graphs.py 2025-08-14T21:54:57.7954341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\jiterator.py 2025-08-14T21:54:57.7957591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\memory.py 2025-08-14T21:54:57.8033319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nccl.py 2025-08-14T21:54:57.8036696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nvtx.py 2025-08-14T21:54:57.8039968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\profiler.py 2025-08-14T21:54:57.8043149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\random.py 2025-08-14T21:54:57.8046403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\sparse.py 2025-08-14T21:54:57.8049628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\streams.py 2025-08-14T21:54:57.8052939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\tunable.py 2025-08-14T21:54:57.8056209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_gpu_trace.py 2025-08-14T21:54:57.8059659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_memory_viz.py 2025-08-14T21:54:57.8062919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_pin_memory_utils.py 2025-08-14T21:54:57.8066255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_sanitizer.py 2025-08-14T21:54:57.8069468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_utils.py 2025-08-14T21:54:57.8073161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__init__.py 2025-08-14T21:54:57.8079932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\autocast_mode.py 2025-08-14T21:54:57.8083345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\common.py 2025-08-14T21:54:57.8086522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\grad_scaler.py 2025-08-14T21:54:57.8089789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__init__.py 2025-08-14T21:54:57.8170257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:54:57.8173667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\common.cpython-39.pyc 2025-08-14T21:54:57.8177161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:54:57.8186380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8194671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\comm.cpython-39.pyc 2025-08-14T21:54:57.8197981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\error.cpython-39.pyc 2025-08-14T21:54:57.8201380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\gds.cpython-39.pyc 2025-08-14T21:54:57.8210515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\graphs.cpython-39.pyc 2025-08-14T21:54:57.8214314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\jiterator.cpython-39.pyc 2025-08-14T21:54:57.8218497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\memory.cpython-39.pyc 2025-08-14T21:54:57.8222241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nccl.cpython-39.pyc 2025-08-14T21:54:57.8225911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nvtx.cpython-39.pyc 2025-08-14T21:54:57.8229339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:54:57.8232857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\random.cpython-39.pyc 2025-08-14T21:54:57.8236150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:54:57.8239646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\streams.cpython-39.pyc 2025-08-14T21:54:57.8243300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\tunable.cpython-39.pyc 2025-08-14T21:54:57.8246842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-14T21:54:57.8250477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_memory_viz.cpython-39.pyc 2025-08-14T21:54:57.8254326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_pin_memory_utils.cpython-39.pyc 2025-08-14T21:54:57.8257882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_sanitizer.cpython-39.pyc 2025-08-14T21:54:57.8268287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:57.8271880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8283472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\argparse_util.py 2025-08-14T21:54:57.8287602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\c10d_logger.py 2025-08-14T21:54:57.8291308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\collective_utils.py 2025-08-14T21:54:57.8301586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\constants.py 2025-08-14T21:54:57.8305546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\device_mesh.py 2025-08-14T21:54:57.8309585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\distributed_c10d.py 2025-08-14T21:54:57.8314762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launch.py 2025-08-14T21:54:57.8318180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\logging_handlers.py 2025-08-14T21:54:57.8322317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\remote_device.py 2025-08-14T21:54:57.8325511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rendezvous.py 2025-08-14T21:54:57.8329135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\run.py 2025-08-14T21:54:57.8332755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\utils.py 2025-08-14T21:54:57.8336201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_checkpointable.py 2025-08-14T21:54:57.8339624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable_state.py 2025-08-14T21:54:57.8343172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_dist2.py 2025-08-14T21:54:57.8346580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives.py 2025-08-14T21:54:57.8350308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives_impl.py 2025-08-14T21:54:57.8353796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_serialization.py 2025-08-14T21:54:57.8357478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_state_dict_utils.py 2025-08-14T21:54:57.8361048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__init__.py 2025-08-14T21:54:57.8374280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\join.py 2025-08-14T21:54:57.8377562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__init__.py 2025-08-14T21:54:57.8384230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py 2025-08-14T21:54:57.8387841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py 2025-08-14T21:54:57.8391182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py 2025-08-14T21:54:57.8400756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py 2025-08-14T21:54:57.8404938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py 2025-08-14T21:54:57.8408283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py 2025-08-14T21:54:57.8411664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py 2025-08-14T21:54:57.8415112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py 2025-08-14T21:54:57.8418742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__init__.py 2025-08-14T21:54:57.8425623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\ddp_zero_hook.cpython-39.pyc 2025-08-14T21:54:57.8429050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\debugging_hooks.cpython-39.pyc 2025-08-14T21:54:57.8432599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-14T21:54:57.8442436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\mixed_precision_hooks.cpython-39.pyc 2025-08-14T21:54:57.8447068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\optimizer_overlap_hooks.cpython-39.pyc 2025-08-14T21:54:57.8450503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\post_localSGD_hook.cpython-39.pyc 2025-08-14T21:54:57.8454432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\powerSGD_hook.cpython-39.pyc 2025-08-14T21:54:57.8458188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\quantization_hooks.cpython-39.pyc 2025-08-14T21:54:57.8461706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8475611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\averagers.py 2025-08-14T21:54:57.8479022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py 2025-08-14T21:54:57.8482396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\utils.py 2025-08-14T21:54:57.8491308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__init__.py 2025-08-14T21:54:57.8497484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\averagers.cpython-39.pyc 2025-08-14T21:54:57.8500794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\hierarchical_model_averager.cpython-39.pyc 2025-08-14T21:54:57.8504799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.8514184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8521845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py 2025-08-14T21:54:57.8524954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__init__.py 2025-08-14T21:54:57.8530821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\checkpoint_wrapper.cpython-39.pyc 2025-08-14T21:54:57.8534326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8541572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\default_hooks.py 2025-08-14T21:54:57.8544922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__init__.py 2025-08-14T21:54:57.8552003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-14T21:54:57.8555793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8563431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py 2025-08-14T21:54:57.8566893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__init__.py 2025-08-14T21:54:57.8573665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\optimizer_overlap.cpython-39.pyc 2025-08-14T21:54:57.8577255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8586269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\quantization.py 2025-08-14T21:54:57.8594611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__init__.py 2025-08-14T21:54:57.8601203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\quantization.cpython-39.pyc 2025-08-14T21:54:57.8605108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8612610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\join.cpython-39.pyc 2025-08-14T21:54:57.8616159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8624740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__init__.py 2025-08-14T21:54:57.8631512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.8640089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\api.py 2025-08-14T21:54:57.8643959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\default_planner.py 2025-08-14T21:54:57.8647465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\filesystem.py 2025-08-14T21:54:57.8650925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\format_utils.py 2025-08-14T21:54:57.8660328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\hf_storage.py 2025-08-14T21:54:57.8663600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logger.py 2025-08-14T21:54:57.8666913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logging_handlers.py 2025-08-14T21:54:57.8670348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\metadata.py 2025-08-14T21:54:57.8673728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\optimizer.py 2025-08-14T21:54:57.8677281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner.py 2025-08-14T21:54:57.8680604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner_helpers.py 2025-08-14T21:54:57.8700063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\resharding.py 2025-08-14T21:54:57.8703600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\staging.py 2025-08-14T21:54:57.8706839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\stateful.py 2025-08-14T21:54:57.8710377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict.py 2025-08-14T21:54:57.8714215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_loader.py 2025-08-14T21:54:57.8717804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_saver.py 2025-08-14T21:54:57.8721609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\storage.py 2025-08-14T21:54:57.8724837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\utils.py 2025-08-14T21:54:57.8728322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_executor.py 2025-08-14T21:54:57.8731987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_process_executor.py 2025-08-14T21:54:57.8735528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_thread_executor.py 2025-08-14T21:54:57.8739287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_checkpointer.py 2025-08-14T21:54:57.8749453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_consolidate_hf_safetensors.py 2025-08-14T21:54:57.8753360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_save_plans.py 2025-08-14T21:54:57.8757517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_tensors.py 2025-08-14T21:54:57.8761788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_extension.py 2025-08-14T21:54:57.8765613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_fsspec_filesystem.py 2025-08-14T21:54:57.8769540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_utils.py 2025-08-14T21:54:57.8773111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_nested_dict.py 2025-08-14T21:54:57.8777708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_pg_transport.py 2025-08-14T21:54:57.8781600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_sharded_tensor_utils.py 2025-08-14T21:54:57.8917184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_state_dict_stager.py 2025-08-14T21:54:57.8920843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_storage_utils.py 2025-08-14T21:54:57.8924342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_traverse.py 2025-08-14T21:54:57.8927751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_version.py 2025-08-14T21:54:57.8931050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__init__.py 2025-08-14T21:54:57.8939081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\barriers.py 2025-08-14T21:54:57.8942321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\builder.py 2025-08-14T21:54:57.8945551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpointer.py 2025-08-14T21:54:57.8948905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_process.py 2025-08-14T21:54:57.9040096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_reader.py 2025-08-14T21:54:57.9043632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_writer.py 2025-08-14T21:54:57.9046911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\config.py 2025-08-14T21:54:57.9050432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\staging.py 2025-08-14T21:54:57.9053581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\types.py 2025-08-14T21:54:57.9056873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\utils.py 2025-08-14T21:54:57.9060921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__init__.py 2025-08-14T21:54:57.9068378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\barriers.cpython-39.pyc 2025-08-14T21:54:57.9072187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\builder.cpython-39.pyc 2025-08-14T21:54:57.9075772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpointer.cpython-39.pyc 2025-08-14T21:54:57.9085536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_process.cpython-39.pyc 2025-08-14T21:54:57.9089249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_reader.cpython-39.pyc 2025-08-14T21:54:57.9092608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_writer.cpython-39.pyc 2025-08-14T21:54:57.9096208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\config.cpython-39.pyc 2025-08-14T21:54:57.9099724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\staging.cpython-39.pyc 2025-08-14T21:54:57.9103323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\types.cpython-39.pyc 2025-08-14T21:54:57.9106854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.9110416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9119022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9122577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\default_planner.cpython-39.pyc 2025-08-14T21:54:57.9126048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\filesystem.cpython-39.pyc 2025-08-14T21:54:57.9135575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\format_utils.cpython-39.pyc 2025-08-14T21:54:57.9139037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\hf_storage.cpython-39.pyc 2025-08-14T21:54:57.9142607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logger.cpython-39.pyc 2025-08-14T21:54:57.9146277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:54:57.9149733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:54:57.9153315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:54:57.9156718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner.cpython-39.pyc 2025-08-14T21:54:57.9160740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner_helpers.cpython-39.pyc 2025-08-14T21:54:57.9164384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\resharding.cpython-39.pyc 2025-08-14T21:54:57.9167708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\staging.cpython-39.pyc 2025-08-14T21:54:57.9171619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\stateful.cpython-39.pyc 2025-08-14T21:54:57.9175220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict.cpython-39.pyc 2025-08-14T21:54:57.9178704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_loader.cpython-39.pyc 2025-08-14T21:54:57.9182278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_saver.cpython-39.pyc 2025-08-14T21:54:57.9191139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\storage.cpython-39.pyc 2025-08-14T21:54:57.9194974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.9198358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_executor.cpython-39.pyc 2025-08-14T21:54:57.9202329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_process_executor.cpython-39.pyc 2025-08-14T21:54:57.9205972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_thread_executor.cpython-39.pyc 2025-08-14T21:54:57.9209546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_checkpointer.cpython-39.pyc 2025-08-14T21:54:57.9213167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_consolidate_hf_safetensors.cpython-39.pyc 2025-08-14T21:54:57.9217149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_save_plans.cpython-39.pyc 2025-08-14T21:54:57.9226950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_tensors.cpython-39.pyc 2025-08-14T21:54:57.9230581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_extension.cpython-39.pyc 2025-08-14T21:54:57.9234187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_fsspec_filesystem.cpython-39.pyc 2025-08-14T21:54:57.9237621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_utils.cpython-39.pyc 2025-08-14T21:54:57.9241313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_nested_dict.cpython-39.pyc 2025-08-14T21:54:57.9245013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_pg_transport.cpython-39.pyc 2025-08-14T21:54:57.9248810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_sharded_tensor_utils.cpython-39.pyc 2025-08-14T21:54:57.9252583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_state_dict_stager.cpython-39.pyc 2025-08-14T21:54:57.9261746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_storage_utils.cpython-39.pyc 2025-08-14T21:54:57.9265199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_traverse.cpython-39.pyc 2025-08-14T21:54:57.9269209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_version.cpython-39.pyc 2025-08-14T21:54:57.9272922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9283316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\control_plane.py 2025-08-14T21:54:57.9287799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__init__.py 2025-08-14T21:54:57.9297405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__init__.py 2025-08-14T21:54:57.9302964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\api.py 2025-08-14T21:54:57.9306856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\health_check_server.py 2025-08-14T21:54:57.9310198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\local_elastic_agent.py 2025-08-14T21:54:57.9313422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__init__.py 2025-08-14T21:54:57.9326321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9329839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\health_check_server.cpython-39.pyc 2025-08-14T21:54:57.9333768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\local_elastic_agent.cpython-39.pyc 2025-08-14T21:54:57.9342962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9350595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9358375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\api.py 2025-08-14T21:54:57.9361913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\handlers.py 2025-08-14T21:54:57.9365068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__init__.py 2025-08-14T21:54:57.9371931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9375583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:54:57.9379033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9390965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\api.py 2025-08-14T21:54:57.9394339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__init__.py 2025-08-14T21:54:57.9400777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9404283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9418416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\api.py 2025-08-14T21:54:57.9421779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py 2025-08-14T21:54:57.9425258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\tail_log.py 2025-08-14T21:54:57.9428594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__init__.py 2025-08-14T21:54:57.9443196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\error_handler.py 2025-08-14T21:54:57.9446434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\handlers.py 2025-08-14T21:54:57.9450327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__init__.py 2025-08-14T21:54:57.9457229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\error_handler.cpython-39.pyc 2025-08-14T21:54:57.9460493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:54:57.9463891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9477411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py 2025-08-14T21:54:57.9481039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py 2025-08-14T21:54:57.9484388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py 2025-08-14T21:54:57.9497817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:54:57.9501314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\subprocess_handler.cpython-39.pyc 2025-08-14T21:54:57.9504847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9518677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9522636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\redirects.cpython-39.pyc 2025-08-14T21:54:57.9525936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\tail_log.cpython-39.pyc 2025-08-14T21:54:57.9535142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9542388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\api.py 2025-08-14T21:54:57.9546280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py 2025-08-14T21:54:57.9549719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py 2025-08-14T21:54:57.9559017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous.py 2025-08-14T21:54:57.9562721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py 2025-08-14T21:54:57.9566255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_server.py 2025-08-14T21:54:57.9569646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_store.py 2025-08-14T21:54:57.9572835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\registry.py 2025-08-14T21:54:57.9576277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py 2025-08-14T21:54:57.9579734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\utils.py 2025-08-14T21:54:57.9582953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\_etcd_stub.py 2025-08-14T21:54:57.9586883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__init__.py 2025-08-14T21:54:57.9594382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9597981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\c10d_rendezvous_backend.cpython-39.pyc 2025-08-14T21:54:57.9601571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\dynamic_rendezvous.cpython-39.pyc 2025-08-14T21:54:57.9610728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous.cpython-39.pyc 2025-08-14T21:54:57.9614541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous_backend.cpython-39.pyc 2025-08-14T21:54:57.9618076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_server.cpython-39.pyc 2025-08-14T21:54:57.9621694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_store.cpython-39.pyc 2025-08-14T21:54:57.9625124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\registry.cpython-39.pyc 2025-08-14T21:54:57.9628761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\static_tcp_rendezvous.cpython-39.pyc 2025-08-14T21:54:57.9632327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:57.9635821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\_etcd_stub.cpython-39.pyc 2025-08-14T21:54:57.9639522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9647564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\api.py 2025-08-14T21:54:57.9650839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\debug_info_logging.py 2025-08-14T21:54:57.9654288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\file_based_local_timer.py 2025-08-14T21:54:57.9657548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\local_timer.py 2025-08-14T21:54:57.9666786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__init__.py 2025-08-14T21:54:57.9673655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9677702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\debug_info_logging.cpython-39.pyc 2025-08-14T21:54:57.9681462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\file_based_local_timer.cpython-39.pyc 2025-08-14T21:54:57.9690192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\local_timer.cpython-39.pyc 2025-08-14T21:54:57.9693529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9700931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\api.py 2025-08-14T21:54:57.9704289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\distributed.py 2025-08-14T21:54:57.9707741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\logging.py 2025-08-14T21:54:57.9711089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\log_level.py 2025-08-14T21:54:57.9714363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\store.py 2025-08-14T21:54:57.9723648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__init__.py 2025-08-14T21:54:57.9730318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\cycling_iterator.py 2025-08-14T21:54:57.9734784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py 2025-08-14T21:54:57.9737825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__init__.py 2025-08-14T21:54:57.9750360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\cycling_iterator.cpython-39.pyc 2025-08-14T21:54:57.9753992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\elastic_distributed_sampler.cpython-39.pyc 2025-08-14T21:54:57.9757782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9772071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9775894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:54:57.9779262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\logging.cpython-39.pyc 2025-08-14T21:54:57.9787999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\log_level.cpython-39.pyc 2025-08-14T21:54:57.9791517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\store.cpython-39.pyc 2025-08-14T21:54:57.9795092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9803467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\control_plane.cpython-39.pyc 2025-08-14T21:54:57.9807044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9816114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\api.py 2025-08-14T21:54:57.9819597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\fully_sharded_data_parallel.py 2025-08-14T21:54:57.9824383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\sharded_grad_scaler.py 2025-08-14T21:54:57.9827362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\wrap.py 2025-08-14T21:54:57.9830865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_common_utils.py 2025-08-14T21:54:57.9840573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_debug_utils.py 2025-08-14T21:54:57.9843621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_dynamo_utils.py 2025-08-14T21:54:57.9846874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_exec_order_utils.py 2025-08-14T21:54:57.9850735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_flat_param.py 2025-08-14T21:54:57.9854583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fsdp_extensions.py 2025-08-14T21:54:57.9858296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_init_utils.py 2025-08-14T21:54:57.9861840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_limiter_utils.py 2025-08-14T21:54:57.9865284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_optim_utils.py 2025-08-14T21:54:57.9868926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_runtime_utils.py 2025-08-14T21:54:57.9872616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_shard_utils.py 2025-08-14T21:54:57.9875817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_state_dict_utils.py 2025-08-14T21:54:57.9879309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_trace_utils.py 2025-08-14T21:54:57.9882728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_traversal_utils.py 2025-08-14T21:54:57.9885880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_unshard_param_utils.py 2025-08-14T21:54:57.9889153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_wrap_utils.py 2025-08-14T21:54:57.9898070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__init__.py 2025-08-14T21:54:57.9905480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_api.py 2025-08-14T21:54:57.9908885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py 2025-08-14T21:54:57.9912252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_common.py 2025-08-14T21:54:57.9922581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_init.py 2025-08-14T21:54:57.9926020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param.py 2025-08-14T21:54:57.9929549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py 2025-08-14T21:54:57.9933216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_state.py 2025-08-14T21:54:57.9936832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fully_shard.py 2025-08-14T21:54:57.9940430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__init__.py 2025-08-14T21:54:57.9947599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_api.cpython-39.pyc 2025-08-14T21:54:57.9951128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_collectives.cpython-39.pyc 2025-08-14T21:54:57.9954550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_common.cpython-39.pyc 2025-08-14T21:54:57.9963647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_init.cpython-39.pyc 2025-08-14T21:54:57.9967205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param.cpython-39.pyc 2025-08-14T21:54:57.9970771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param_group.cpython-39.pyc 2025-08-14T21:54:57.9974397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_state.cpython-39.pyc 2025-08-14T21:54:57.9977575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fully_shard.cpython-39.pyc 2025-08-14T21:54:57.9981362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:57.9989789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:57.9993168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\fully_sharded_data_parallel.cpython-39.pyc 2025-08-14T21:54:57.9997623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\sharded_grad_scaler.cpython-39.pyc 2025-08-14T21:54:58.0123586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\wrap.cpython-39.pyc 2025-08-14T21:54:58.0144817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_common_utils.cpython-39.pyc 2025-08-14T21:54:58.0149359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_debug_utils.cpython-39.pyc 2025-08-14T21:54:58.0152724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_dynamo_utils.cpython-39.pyc 2025-08-14T21:54:58.0156121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_exec_order_utils.cpython-39.pyc 2025-08-14T21:54:58.0159780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_flat_param.cpython-39.pyc 2025-08-14T21:54:58.0163743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_fsdp_extensions.cpython-39.pyc 2025-08-14T21:54:58.0167176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_init_utils.cpython-39.pyc 2025-08-14T21:54:58.0170577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_limiter_utils.cpython-39.pyc 2025-08-14T21:54:58.0174469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_optim_utils.cpython-39.pyc 2025-08-14T21:54:58.0178347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_runtime_utils.cpython-39.pyc 2025-08-14T21:54:58.0181749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_shard_utils.cpython-39.pyc 2025-08-14T21:54:58.0185153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-14T21:54:58.0194389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_trace_utils.cpython-39.pyc 2025-08-14T21:54:58.0197822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_traversal_utils.cpython-39.pyc 2025-08-14T21:54:58.0201872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_unshard_param_utils.cpython-39.pyc 2025-08-14T21:54:58.0205360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_wrap_utils.cpython-39.pyc 2025-08-14T21:54:58.0208960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0216917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\api.py 2025-08-14T21:54:58.0221014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__init__.py 2025-08-14T21:54:58.0228050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.0231467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0239869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\functional.py 2025-08-14T21:54:58.0244565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__init__.py 2025-08-14T21:54:58.0250725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\remote_module.py 2025-08-14T21:54:58.0254693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__init__.py 2025-08-14T21:54:58.0261214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\remote_module.cpython-39.pyc 2025-08-14T21:54:58.0265009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0272382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\instantiator.py 2025-08-14T21:54:58.0275934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__init__.py 2025-08-14T21:54:58.0282232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\remote_module_template.py 2025-08-14T21:54:58.0286126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__init__.py 2025-08-14T21:54:58.0292614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\remote_module_template.cpython-39.pyc 2025-08-14T21:54:58.0296369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0310037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\instantiator.cpython-39.pyc 2025-08-14T21:54:58.0313673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0326396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\functional.cpython-39.pyc 2025-08-14T21:54:58.0330402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0338703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\apply_optimizer_in_backward.py 2025-08-14T21:54:58.0342041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adadelta.py 2025-08-14T21:54:58.0345954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adagrad.py 2025-08-14T21:54:58.0354627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adam.py 2025-08-14T21:54:58.0357912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamax.py 2025-08-14T21:54:58.0361402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamw.py 2025-08-14T21:54:58.0364762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rmsprop.py 2025-08-14T21:54:58.0368009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rprop.py 2025-08-14T21:54:58.0371379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_sgd.py 2025-08-14T21:54:58.0374534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\named_optimizer.py 2025-08-14T21:54:58.0377690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\optimizer.py 2025-08-14T21:54:58.0380961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\post_localSGD_optimizer.py 2025-08-14T21:54:58.0384276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\utils.py 2025-08-14T21:54:58.0388502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.py 2025-08-14T21:54:58.0392500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.pyi 2025-08-14T21:54:58.0396022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\_deprecation_warning.py 2025-08-14T21:54:58.0399307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__init__.py 2025-08-14T21:54:58.0407044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\apply_optimizer_in_backward.cpython-39.pyc 2025-08-14T21:54:58.0410399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adadelta.cpython-39.pyc 2025-08-14T21:54:58.0414161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adagrad.cpython-39.pyc 2025-08-14T21:54:58.0423236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adam.cpython-39.pyc 2025-08-14T21:54:58.0426708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamax.cpython-39.pyc 2025-08-14T21:54:58.0430250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamw.cpython-39.pyc 2025-08-14T21:54:58.0434109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rmsprop.cpython-39.pyc 2025-08-14T21:54:58.0437847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rprop.cpython-39.pyc 2025-08-14T21:54:58.0441727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_sgd.cpython-39.pyc 2025-08-14T21:54:58.0445303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\named_optimizer.cpython-39.pyc 2025-08-14T21:54:58.0448706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:54:58.0452088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\post_localSGD_optimizer.cpython-39.pyc 2025-08-14T21:54:58.0455396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:58.0458782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\zero_redundancy_optimizer.cpython-39.pyc 2025-08-14T21:54:58.0462865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\_deprecation_warning.cpython-39.pyc 2025-08-14T21:54:58.0466399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0480950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\microbatch.py 2025-08-14T21:54:58.0484265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\schedules.py 2025-08-14T21:54:58.0488220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\stage.py 2025-08-14T21:54:58.0491591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_backward.py 2025-08-14T21:54:58.0500328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_debug.py 2025-08-14T21:54:58.0503418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_IR.py 2025-08-14T21:54:58.0506892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_schedule_visualizer.py 2025-08-14T21:54:58.0510241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_unflatten.py 2025-08-14T21:54:58.0514558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_utils.py 2025-08-14T21:54:58.0518313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__init__.py 2025-08-14T21:54:58.0525575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\microbatch.cpython-39.pyc 2025-08-14T21:54:58.0528995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\schedules.cpython-39.pyc 2025-08-14T21:54:58.0532564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\stage.cpython-39.pyc 2025-08-14T21:54:58.0736582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_backward.cpython-39.pyc 2025-08-14T21:54:58.0739898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_debug.cpython-39.pyc 2025-08-14T21:54:58.0743526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_IR.cpython-39.pyc 2025-08-14T21:54:58.0747195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_schedule_visualizer.cpython-39.pyc 2025-08-14T21:54:58.0750738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_unflatten.cpython-39.pyc 2025-08-14T21:54:58.0754263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:58.0757588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0766117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\api.py 2025-08-14T21:54:58.0769424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\backend_registry.py 2025-08-14T21:54:58.0773296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\constants.py 2025-08-14T21:54:58.0777027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\functions.py 2025-08-14T21:54:58.0785041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\internal.py 2025-08-14T21:54:58.0788122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\options.py 2025-08-14T21:54:58.0791573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\rref_proxy.py 2025-08-14T21:54:58.0794900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\server_process_global_profiler.py 2025-08-14T21:54:58.0798232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_utils.py 2025-08-14T21:54:58.0801452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__init__.py 2025-08-14T21:54:58.0809432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py 2025-08-14T21:54:58.0812597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__init__.py 2025-08-14T21:54:58.0819747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\faulty_agent_backend_registry.cpython-39.pyc 2025-08-14T21:54:58.0823456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0830986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.0834585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\backend_registry.cpython-39.pyc 2025-08-14T21:54:58.0837838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\constants.cpython-39.pyc 2025-08-14T21:54:58.0846964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\functions.cpython-39.pyc 2025-08-14T21:54:58.0850266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\internal.cpython-39.pyc 2025-08-14T21:54:58.0853565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\options.cpython-39.pyc 2025-08-14T21:54:58.0856749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\rref_proxy.cpython-39.pyc 2025-08-14T21:54:58.0860467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\server_process_global_profiler.cpython-39.pyc 2025-08-14T21:54:58.0863880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:58.0867168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0875338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\device_mesh.py 2025-08-14T21:54:58.0878645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\placement_types.py 2025-08-14T21:54:58.0881957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_api.py 2025-08-14T21:54:58.0885417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_collective_utils.py 2025-08-14T21:54:58.0894163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dispatch.py 2025-08-14T21:54:58.0897865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dtensor_spec.py 2025-08-14T21:54:58.0901232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_op_schema.py 2025-08-14T21:54:58.0904660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_random.py 2025-08-14T21:54:58.0908149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_redistribute.py 2025-08-14T21:54:58.0911436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_sharding_prop.py 2025-08-14T21:54:58.0914811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_shards_wrapper.py 2025-08-14T21:54:58.0917968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_tp_conv.py 2025-08-14T21:54:58.0921167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_utils.py 2025-08-14T21:54:58.0924278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__init__.py 2025-08-14T21:54:58.0930693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_comm_mode.py 2025-08-14T21:54:58.0934235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_op_coverage.py 2025-08-14T21:54:58.0938647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_visualize_sharding.py 2025-08-14T21:54:58.0942038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__init__.py 2025-08-14T21:54:58.0955504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_comm_mode.cpython-39.pyc 2025-08-14T21:54:58.0960135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_op_coverage.cpython-39.pyc 2025-08-14T21:54:58.0964215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_visualize_sharding.cpython-39.pyc 2025-08-14T21:54:58.0973498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.0981496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_attention.py 2025-08-14T21:54:58.0985396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_func_map.py 2025-08-14T21:54:58.0988694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_register_sharding.py 2025-08-14T21:54:58.0997054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_tp_transform.py 2025-08-14T21:54:58.1000389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__init__.py 2025-08-14T21:54:58.1007273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_attention.cpython-39.pyc 2025-08-14T21:54:58.1011574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_func_map.cpython-39.pyc 2025-08-14T21:54:58.1014927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_register_sharding.cpython-39.pyc 2025-08-14T21:54:58.1024958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_tp_transform.cpython-39.pyc 2025-08-14T21:54:58.1028388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1035389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\api.py 2025-08-14T21:54:58.1038485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\ddp.py 2025-08-14T21:54:58.1041978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\fsdp.py 2025-08-14T21:54:58.1046210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\input_reshard.py 2025-08-14T21:54:58.1049985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\loss.py 2025-08-14T21:54:58.1053237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\style.py 2025-08-14T21:54:58.1062373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_data_parallel_utils.py 2025-08-14T21:54:58.1065556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__init__.py 2025-08-14T21:54:58.1072150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.1075434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\ddp.cpython-39.pyc 2025-08-14T21:54:58.1079299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\fsdp.cpython-39.pyc 2025-08-14T21:54:58.1089918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\input_reshard.cpython-39.pyc 2025-08-14T21:54:58.1093301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\loss.cpython-39.pyc 2025-08-14T21:54:58.1097265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\style.cpython-39.pyc 2025-08-14T21:54:58.1100690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_data_parallel_utils.cpython-39.pyc 2025-08-14T21:54:58.1104086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1112034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\utils.py 2025-08-14T21:54:58.1115454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_common_rules.py 2025-08-14T21:54:58.1118594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_conv_ops.py 2025-08-14T21:54:58.1121985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_einsum_strategy.py 2025-08-14T21:54:58.1130573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_embedding_ops.py 2025-08-14T21:54:58.1133715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_math_ops.py 2025-08-14T21:54:58.1137021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_matrix_ops.py 2025-08-14T21:54:58.1140361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_pointwise_ops.py 2025-08-14T21:54:58.1143591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_random_ops.py 2025-08-14T21:54:58.1146809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_tensor_ops.py 2025-08-14T21:54:58.1150670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_view_ops.py 2025-08-14T21:54:58.1153832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__init__.py 2025-08-14T21:54:58.1160567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:58.1163966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_common_rules.cpython-39.pyc 2025-08-14T21:54:58.1167249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_conv_ops.cpython-39.pyc 2025-08-14T21:54:58.1176549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_einsum_strategy.cpython-39.pyc 2025-08-14T21:54:58.1179959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_embedding_ops.cpython-39.pyc 2025-08-14T21:54:58.1183510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_math_ops.cpython-39.pyc 2025-08-14T21:54:58.1187077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_matrix_ops.cpython-39.pyc 2025-08-14T21:54:58.1191098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_pointwise_ops.cpython-39.pyc 2025-08-14T21:54:58.1194550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_random_ops.cpython-39.pyc 2025-08-14T21:54:58.1197987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_tensor_ops.cpython-39.pyc 2025-08-14T21:54:58.1202143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_view_ops.cpython-39.pyc 2025-08-14T21:54:58.1205572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1213934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\device_mesh.cpython-39.pyc 2025-08-14T21:54:58.1217591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-14T21:54:58.1221156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_api.cpython-39.pyc 2025-08-14T21:54:58.1230899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_collective_utils.cpython-39.pyc 2025-08-14T21:54:58.1234322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dispatch.cpython-39.pyc 2025-08-14T21:54:58.1238373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dtensor_spec.cpython-39.pyc 2025-08-14T21:54:58.1242542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_op_schema.cpython-39.pyc 2025-08-14T21:54:58.1246223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_random.cpython-39.pyc 2025-08-14T21:54:58.1249599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_redistribute.cpython-39.pyc 2025-08-14T21:54:58.1252914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_sharding_prop.cpython-39.pyc 2025-08-14T21:54:58.1256319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_shards_wrapper.cpython-39.pyc 2025-08-14T21:54:58.1259676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_tp_conv.cpython-39.pyc 2025-08-14T21:54:58.1263136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:58.1266698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1276763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\checkpoint_activation.py 2025-08-14T21:54:58.1280348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\contract.py 2025-08-14T21:54:58.1283858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate.py 2025-08-14T21:54:58.1287505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate_with_fsdp.py 2025-08-14T21:54:58.1296155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__init__.py 2025-08-14T21:54:58.1302682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\fully_shard.py 2025-08-14T21:54:58.1306133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__init__.py 2025-08-14T21:54:58.1313681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\fully_shard.cpython-39.pyc 2025-08-14T21:54:58.1317118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1324699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\checkpoint_activation.cpython-39.pyc 2025-08-14T21:54:58.1327999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\contract.cpython-39.pyc 2025-08-14T21:54:58.1331517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate.cpython-39.pyc 2025-08-14T21:54:58.1341330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate_with_fsdp.cpython-39.pyc 2025-08-14T21:54:58.1344630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1352133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\api.py 2025-08-14T21:54:58.1355493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\common_op_utils.py 2025-08-14T21:54:58.1358914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\metadata.py 2025-08-14T21:54:58.1362843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\op_registry_utils.py 2025-08-14T21:54:58.1366094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharder.py 2025-08-14T21:54:58.1374652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\_utils.py 2025-08-14T21:54:58.1377807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__init__.py 2025-08-14T21:54:58.1384969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__init__.py 2025-08-14T21:54:58.1408487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1415660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\api.py 2025-08-14T21:54:58.1418908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__init__.py 2025-08-14T21:54:58.1426029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.1429393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1436452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\api.py 2025-08-14T21:54:58.1440258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logger.py 2025-08-14T21:54:58.1443817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logging_handlers.py 2025-08-14T21:54:58.1447480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\metadata.py 2025-08-14T21:54:58.1450637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\reshard.py 2025-08-14T21:54:58.1463200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\shard.py 2025-08-14T21:54:58.1467012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\utils.py 2025-08-14T21:54:58.1470946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__init__.py 2025-08-14T21:54:58.1477606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py 2025-08-14T21:54:58.1480975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\init.py 2025-08-14T21:54:58.1484093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py 2025-08-14T21:54:58.1495306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py 2025-08-14T21:54:58.1496679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\_common.py 2025-08-14T21:54:58.1502464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__init__.py 2025-08-14T21:54:58.1509477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\binary_cmp.cpython-39.pyc 2025-08-14T21:54:58.1512773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\init.cpython-39.pyc 2025-08-14T21:54:58.1516249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\misc_ops.cpython-39.pyc 2025-08-14T21:54:58.1525189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\tensor_ops.cpython-39.pyc 2025-08-14T21:54:58.1528883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\_common.cpython-39.pyc 2025-08-14T21:54:58.1532252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1540082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.1543999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logger.cpython-39.pyc 2025-08-14T21:54:58.1547547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:54:58.1555912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:54:58.1559777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\reshard.cpython-39.pyc 2025-08-14T21:54:58.1563058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\shard.cpython-39.pyc 2025-08-14T21:54:58.1566844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:58.1570346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1577758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\api.py 2025-08-14T21:54:58.1580992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__init__.py 2025-08-14T21:54:58.1587632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.1590963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1599155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\api.py 2025-08-14T21:54:58.1603152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py 2025-08-14T21:54:58.1606505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\_internals.py 2025-08-14T21:54:58.1609706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__init__.py 2025-08-14T21:54:58.1621832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py 2025-08-14T21:54:58.1625234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py 2025-08-14T21:54:58.1628783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py 2025-08-14T21:54:58.1637182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py 2025-08-14T21:54:58.1643647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding.cpython-39.pyc 2025-08-14T21:54:58.1647048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding_bag.cpython-39.pyc 2025-08-14T21:54:58.1650385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\_common.cpython-39.pyc 2025-08-14T21:54:58.1658752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1666896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.1670314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\chunk_sharding_spec.cpython-39.pyc 2025-08-14T21:54:58.1673804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\_internals.cpython-39.pyc 2025-08-14T21:54:58.1683258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1690943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.1694416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\common_op_utils.cpython-39.pyc 2025-08-14T21:54:58.1697795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:54:58.1706784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\op_registry_utils.cpython-39.pyc 2025-08-14T21:54:58.1710700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\sharder.cpython-39.pyc 2025-08-14T21:54:58.1714574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:58.1717939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1725705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__init__.py 2025-08-14T21:54:58.1732509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1739845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__init__.py 2025-08-14T21:54:58.1746953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1754319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\_nvshmem_triton.py 2025-08-14T21:54:58.1757844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__init__.py 2025-08-14T21:54:58.1765922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\_nvshmem_triton.cpython-39.pyc 2025-08-14T21:54:58.1769504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1777519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\api.py 2025-08-14T21:54:58.1781294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\placement_types.py 2025-08-14T21:54:58.1784900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__init__.py 2025-08-14T21:54:58.1792717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\api.cpython-39.pyc 2025-08-14T21:54:58.1796330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-14T21:54:58.1800572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1813478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\common_utils.py 2025-08-14T21:54:58.1816902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fake_collectives.py 2025-08-14T21:54:58.1820164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fsdp2_mem_tracker.py 2025-08-14T21:54:58.1823607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\ilp_utils.py 2025-08-14T21:54:58.1832499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\memory_tracker.py 2025-08-14T21:54:58.1836402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mem_tracker.py 2025-08-14T21:54:58.1839951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mod_tracker.py 2025-08-14T21:54:58.1843451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\runtime_estimator.py 2025-08-14T21:54:58.1846796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_estimator.py 2025-08-14T21:54:58.1851006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_ilp.py 2025-08-14T21:54:58.1854351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__init__.py 2025-08-14T21:54:58.1861533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\common_utils.cpython-39.pyc 2025-08-14T21:54:58.1864974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fake_collectives.cpython-39.pyc 2025-08-14T21:54:58.1868331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fsdp2_mem_tracker.cpython-39.pyc 2025-08-14T21:54:58.1878421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\ilp_utils.cpython-39.pyc 2025-08-14T21:54:58.1881906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\memory_tracker.cpython-39.pyc 2025-08-14T21:54:58.1885426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mem_tracker.cpython-39.pyc 2025-08-14T21:54:58.1889099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mod_tracker.cpython-39.pyc 2025-08-14T21:54:58.1892583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\runtime_estimator.cpython-39.pyc 2025-08-14T21:54:58.1895883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_estimator.cpython-39.pyc 2025-08-14T21:54:58.1899415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_ilp.cpython-39.pyc 2025-08-14T21:54:58.1902668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.1910899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\argparse_util.cpython-39.pyc 2025-08-14T21:54:58.1914334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\c10d_logger.cpython-39.pyc 2025-08-14T21:54:58.1918181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\collective_utils.cpython-39.pyc 2025-08-14T21:54:58.1926903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\constants.cpython-39.pyc 2025-08-14T21:54:58.1930354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\device_mesh.cpython-39.pyc 2025-08-14T21:54:58.1933888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\distributed_c10d.cpython-39.pyc 2025-08-14T21:54:58.1938384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\launch.cpython-39.pyc 2025-08-14T21:54:58.1942249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:54:58.1946143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\remote_device.cpython-39.pyc 2025-08-14T21:54:58.1949631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\rendezvous.cpython-39.pyc 2025-08-14T21:54:58.1952964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\run.cpython-39.pyc 2025-08-14T21:54:58.1956771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:58.1960701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_checkpointable.cpython-39.pyc 2025-08-14T21:54:58.1964341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_composable_state.cpython-39.pyc 2025-08-14T21:54:58.1967848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_dist2.cpython-39.pyc 2025-08-14T21:54:58.1971287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives.cpython-39.pyc 2025-08-14T21:54:58.1974898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives_impl.cpython-39.pyc 2025-08-14T21:54:58.1983891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_serialization.cpython-39.pyc 2025-08-14T21:54:58.1987607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-14T21:54:58.1991011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2000499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\bernoulli.py 2025-08-14T21:54:58.2003752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\beta.py 2025-08-14T21:54:58.2006983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\binomial.py 2025-08-14T21:54:58.2010082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\categorical.py 2025-08-14T21:54:58.2018275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\cauchy.py 2025-08-14T21:54:58.2021777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\chi2.py 2025-08-14T21:54:58.2025392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraints.py 2025-08-14T21:54:58.2028795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraint_registry.py 2025-08-14T21:54:58.2032335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\continuous_bernoulli.py 2025-08-14T21:54:58.2035745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\dirichlet.py 2025-08-14T21:54:58.2049872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\distribution.py 2025-08-14T21:54:58.2050451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exponential.py 2025-08-14T21:54:58.2050986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exp_family.py 2025-08-14T21:54:58.2051541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\fishersnedecor.py 2025-08-14T21:54:58.2052848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gamma.py 2025-08-14T21:54:58.2055962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\generalized_pareto.py 2025-08-14T21:54:58.2059408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\geometric.py 2025-08-14T21:54:58.2062824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gumbel.py 2025-08-14T21:54:58.2066215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_cauchy.py 2025-08-14T21:54:58.2069837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_normal.py 2025-08-14T21:54:58.2073154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\independent.py 2025-08-14T21:54:58.2076375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\inverse_gamma.py 2025-08-14T21:54:58.2084989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kl.py 2025-08-14T21:54:58.2089000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kumaraswamy.py 2025-08-14T21:54:58.2092547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\laplace.py 2025-08-14T21:54:58.2095727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lkj_cholesky.py 2025-08-14T21:54:58.2099352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\logistic_normal.py 2025-08-14T21:54:58.2102762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\log_normal.py 2025-08-14T21:54:58.2106234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lowrank_multivariate_normal.py 2025-08-14T21:54:58.2109799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\mixture_same_family.py 2025-08-14T21:54:58.2113027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multinomial.py 2025-08-14T21:54:58.2116578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multivariate_normal.py 2025-08-14T21:54:58.2124988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\negative_binomial.py 2025-08-14T21:54:58.2128306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\normal.py 2025-08-14T21:54:58.2131810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\one_hot_categorical.py 2025-08-14T21:54:58.2135528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\pareto.py 2025-08-14T21:54:58.2138846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\poisson.py 2025-08-14T21:54:58.2142082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_bernoulli.py 2025-08-14T21:54:58.2145477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_categorical.py 2025-08-14T21:54:58.2148774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\studentT.py 2025-08-14T21:54:58.2152212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transformed_distribution.py 2025-08-14T21:54:58.2155637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transforms.py 2025-08-14T21:54:58.2159226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\uniform.py 2025-08-14T21:54:58.2162800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\utils.py 2025-08-14T21:54:58.2166165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\von_mises.py 2025-08-14T21:54:58.2175129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\weibull.py 2025-08-14T21:54:58.2178476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\wishart.py 2025-08-14T21:54:58.2181993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__init__.py 2025-08-14T21:54:58.2190592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\bernoulli.cpython-39.pyc 2025-08-14T21:54:58.2193842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\beta.cpython-39.pyc 2025-08-14T21:54:58.2197304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\binomial.cpython-39.pyc 2025-08-14T21:54:58.2205773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\categorical.cpython-39.pyc 2025-08-14T21:54:58.2209115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\cauchy.cpython-39.pyc 2025-08-14T21:54:58.2212825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\chi2.cpython-39.pyc 2025-08-14T21:54:58.2216638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraints.cpython-39.pyc 2025-08-14T21:54:58.2220410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraint_registry.cpython-39.pyc 2025-08-14T21:54:58.2223900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\continuous_bernoulli.cpython-39.pyc 2025-08-14T21:54:58.2227547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\dirichlet.cpython-39.pyc 2025-08-14T21:54:58.2231218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\distribution.cpython-39.pyc 2025-08-14T21:54:58.2234547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exponential.cpython-39.pyc 2025-08-14T21:54:58.2238083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exp_family.cpython-39.pyc 2025-08-14T21:54:58.2241664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\fishersnedecor.cpython-39.pyc 2025-08-14T21:54:58.2245003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gamma.cpython-39.pyc 2025-08-14T21:54:58.2248513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\generalized_pareto.cpython-39.pyc 2025-08-14T21:54:58.2251858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\geometric.cpython-39.pyc 2025-08-14T21:54:58.2261903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gumbel.cpython-39.pyc 2025-08-14T21:54:58.2265439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_cauchy.cpython-39.pyc 2025-08-14T21:54:58.2268760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_normal.cpython-39.pyc 2025-08-14T21:54:58.2272224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\independent.cpython-39.pyc 2025-08-14T21:54:58.2275726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\inverse_gamma.cpython-39.pyc 2025-08-14T21:54:58.2280342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kl.cpython-39.pyc 2025-08-14T21:54:58.2284902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kumaraswamy.cpython-39.pyc 2025-08-14T21:54:58.2289609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\laplace.cpython-39.pyc 2025-08-14T21:54:58.2441893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lkj_cholesky.cpython-39.pyc 2025-08-14T21:54:58.2445481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\logistic_normal.cpython-39.pyc 2025-08-14T21:54:58.2449242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\log_normal.cpython-39.pyc 2025-08-14T21:54:58.2452703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lowrank_multivariate_normal.cpython-39.pyc 2025-08-14T21:54:58.2456102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\mixture_same_family.cpython-39.pyc 2025-08-14T21:54:58.2459388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multinomial.cpython-39.pyc 2025-08-14T21:54:58.2463352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multivariate_normal.cpython-39.pyc 2025-08-14T21:54:58.2466862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\negative_binomial.cpython-39.pyc 2025-08-14T21:54:58.2476162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\normal.cpython-39.pyc 2025-08-14T21:54:58.2479493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\one_hot_categorical.cpython-39.pyc 2025-08-14T21:54:58.2482949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\pareto.cpython-39.pyc 2025-08-14T21:54:58.2487080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\poisson.cpython-39.pyc 2025-08-14T21:54:58.2490371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_bernoulli.cpython-39.pyc 2025-08-14T21:54:58.2493837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_categorical.cpython-39.pyc 2025-08-14T21:54:58.2497126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\studentT.cpython-39.pyc 2025-08-14T21:54:58.2500580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transformed_distribution.cpython-39.pyc 2025-08-14T21:54:58.2509357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transforms.cpython-39.pyc 2025-08-14T21:54:58.2513071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\uniform.cpython-39.pyc 2025-08-14T21:54:58.2516454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:58.2520345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\von_mises.cpython-39.pyc 2025-08-14T21:54:58.2524073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\weibull.cpython-39.pyc 2025-08-14T21:54:58.2527604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\wishart.cpython-39.pyc 2025-08-14T21:54:58.2531229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2540181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_obj.py 2025-08-14T21:54:58.2543507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_ops.py 2025-08-14T21:54:58.2546902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\decomp_utils.py 2025-08-14T21:54:58.2550238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\dynamic_shapes.py 2025-08-14T21:54:58.2559124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\exported_program.py 2025-08-14T21:54:58.2563236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\graph_signature.py 2025-08-14T21:54:58.2566710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\unflatten.py 2025-08-14T21:54:58.2570901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_draft_export.py 2025-08-14T21:54:58.2574444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_auto_functionalized_pass.py 2025-08-14T21:54:58.2577869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_effect_tokens_pass.py 2025-08-14T21:54:58.2581245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_safeguard.py 2025-08-14T21:54:58.2585422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_swap.py 2025-08-14T21:54:58.2588963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_trace.py 2025-08-14T21:54:58.2593164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_tree_utils.py 2025-08-14T21:54:58.2596482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_unlift.py 2025-08-14T21:54:58.2616997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_wrapper_utils.py 2025-08-14T21:54:58.2620376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__init__.py 2025-08-14T21:54:58.2627364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\_utils.py 2025-08-14T21:54:58.2630786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__init__.py 2025-08-14T21:54:58.2637761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:58.2641191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2648234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__init__.py 2025-08-14T21:54:58.2655338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2662341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\constants.py 2025-08-14T21:54:58.2665630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package.py 2025-08-14T21:54:58.2669184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package_weights.py 2025-08-14T21:54:58.2673833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__init__.py 2025-08-14T21:54:58.2685567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\constants.cpython-39.pyc 2025-08-14T21:54:58.2688940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package.cpython-39.pyc 2025-08-14T21:54:58.2692768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package_weights.cpython-39.pyc 2025-08-14T21:54:58.2701315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2715430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_obj.cpython-39.pyc 2025-08-14T21:54:58.2718957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_ops.cpython-39.pyc 2025-08-14T21:54:58.2722765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\decomp_utils.cpython-39.pyc 2025-08-14T21:54:58.2732150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-14T21:54:58.2736072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\exported_program.cpython-39.pyc 2025-08-14T21:54:58.2739687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\graph_signature.cpython-39.pyc 2025-08-14T21:54:58.2743136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\unflatten.cpython-39.pyc 2025-08-14T21:54:58.2746803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_draft_export.cpython-39.pyc 2025-08-14T21:54:58.2750428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_auto_functionalized_pass.cpython-39.pyc 2025-08-14T21:54:58.2754078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_effect_tokens_pass.cpython-39.pyc 2025-08-14T21:54:58.2757574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_safeguard.cpython-39.pyc 2025-08-14T21:54:58.2761732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_swap.cpython-39.pyc 2025-08-14T21:54:58.2765811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_trace.cpython-39.pyc 2025-08-14T21:54:58.2770743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_tree_utils.cpython-39.pyc 2025-08-14T21:54:58.2775620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_unlift.cpython-39.pyc 2025-08-14T21:54:58.2779338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_wrapper_utils.cpython-39.pyc 2025-08-14T21:54:58.2788005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2796179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__init__.py 2025-08-14T21:54:58.2803607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2811401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__init__.py 2025-08-14T21:54:58.2818428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2825459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__init__.py 2025-08-14T21:54:58.2832084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.2840215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\annotate.py 2025-08-14T21:54:58.2843377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\config.py 2025-08-14T21:54:58.2846640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph.py 2025-08-14T21:54:58.2850857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph_module.py 2025-08-14T21:54:58.2854579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\immutable_collections.py 2025-08-14T21:54:58.2865207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\interpreter.py 2025-08-14T21:54:58.2868575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\node.py 2025-08-14T21:54:58.2871899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\operator_schemas.py 2025-08-14T21:54:58.2875355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\proxy.py 2025-08-14T21:54:58.2878704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\subgraph_rewriter.py 2025-08-14T21:54:58.2882413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\tensor_type.py 2025-08-14T21:54:58.2886056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\traceback.py 2025-08-14T21:54:58.2889280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_compatibility.py 2025-08-14T21:54:58.2892655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_graph_pickler.py 2025-08-14T21:54:58.2895938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_lazy_graph_module.py 2025-08-14T21:54:58.2899141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_pytree.py 2025-08-14T21:54:58.2902645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_symbolic_trace.py 2025-08-14T21:54:58.2906284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_utils.py 2025-08-14T21:54:58.2909610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__init__.py 2025-08-14T21:54:58.2916625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\accelerator_partitioner.py 2025-08-14T21:54:58.2920386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\const_fold.py 2025-08-14T21:54:58.2924163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\debug.py 2025-08-14T21:54:58.2932601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\graph_gradual_typechecker.py 2025-08-14T21:54:58.2936009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\merge_matmul.py 2025-08-14T21:54:58.2939352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\meta_tracer.py 2025-08-14T21:54:58.2942596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\normalize.py 2025-08-14T21:54:58.2946075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\optimization.py 2025-08-14T21:54:58.2949326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\partitioner_utils.py 2025-08-14T21:54:58.2952551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\proxy_tensor.py 2025-08-14T21:54:58.2956256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\recording.py 2025-08-14T21:54:58.2959741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\refinement_types.py 2025-08-14T21:54:58.2963013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\rewriter.py 2025-08-14T21:54:58.2966653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\schema_type_annotation.py 2025-08-14T21:54:58.2969749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\symbolic_shapes.py 2025-08-14T21:54:58.2974804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\sym_node.py 2025-08-14T21:54:58.2978492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unify_refinements.py 2025-08-14T21:54:58.2981836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\validator.py 2025-08-14T21:54:58.2985214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_backward_state.py 2025-08-14T21:54:58.2988949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_config.py 2025-08-14T21:54:58.2992569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_constant_symnode.py 2025-08-14T21:54:58.3001421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_dynamism.py 2025-08-14T21:54:58.3004565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__init__.py 2025-08-14T21:54:58.3011687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint.py 2025-08-14T21:54:58.3015450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_generator.py 2025-08-14T21:54:58.3019045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py 2025-08-14T21:54:58.3029133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\operation.py 2025-08-14T21:54:58.3032513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py 2025-08-14T21:54:58.3035825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\util.py 2025-08-14T21:54:58.3039055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\z3_types.py 2025-08-14T21:54:58.3042551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__init__.py 2025-08-14T21:54:58.3049082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint.cpython-39.pyc 2025-08-14T21:54:58.3052856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_generator.cpython-39.pyc 2025-08-14T21:54:58.3056406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_transformation.cpython-39.pyc 2025-08-14T21:54:58.3065215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\operation.cpython-39.pyc 2025-08-14T21:54:58.3069018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\transform_to_z3.cpython-39.pyc 2025-08-14T21:54:58.3072421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\util.cpython-39.pyc 2025-08-14T21:54:58.3075871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\z3_types.cpython-39.pyc 2025-08-14T21:54:58.3079255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3087495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\core.py 2025-08-14T21:54:58.3090790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\dispatch.py 2025-08-14T21:54:58.3094089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\match.py 2025-08-14T21:54:58.3097263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\more.py 2025-08-14T21:54:58.3100651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\unification_tools.py 2025-08-14T21:54:58.3110174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\utils.py 2025-08-14T21:54:58.3113436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\variable.py 2025-08-14T21:54:58.3116674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__init__.py 2025-08-14T21:54:58.3123795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\conflict.py 2025-08-14T21:54:58.3127428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\core.py 2025-08-14T21:54:58.3130547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\dispatcher.py 2025-08-14T21:54:58.3134018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\utils.py 2025-08-14T21:54:58.3137348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\variadic.py 2025-08-14T21:54:58.3146010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__init__.py 2025-08-14T21:54:58.3153068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\conflict.cpython-39.pyc 2025-08-14T21:54:58.3157153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\core.cpython-39.pyc 2025-08-14T21:54:58.3161047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\dispatcher.cpython-39.pyc 2025-08-14T21:54:58.3169501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:58.3172869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\variadic.cpython-39.pyc 2025-08-14T21:54:58.3176541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3184438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\core.cpython-39.pyc 2025-08-14T21:54:58.3188215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\dispatch.cpython-39.pyc 2025-08-14T21:54:58.3192228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\match.cpython-39.pyc 2025-08-14T21:54:58.3201942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\more.cpython-39.pyc 2025-08-14T21:54:58.3205478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\unification_tools.cpython-39.pyc 2025-08-14T21:54:58.3208849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\utils.cpython-39.pyc 2025-08-14T21:54:58.3212328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\variable.cpython-39.pyc 2025-08-14T21:54:58.3215798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3224302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\accelerator_partitioner.cpython-39.pyc 2025-08-14T21:54:58.3227645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\const_fold.cpython-39.pyc 2025-08-14T21:54:58.3230862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\debug.cpython-39.pyc 2025-08-14T21:54:58.3239950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\graph_gradual_typechecker.cpython-39.pyc 2025-08-14T21:54:58.3243649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\merge_matmul.cpython-39.pyc 2025-08-14T21:54:58.3246940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\meta_tracer.cpython-39.pyc 2025-08-14T21:54:58.3250691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\normalize.cpython-39.pyc 2025-08-14T21:54:58.3254240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\optimization.cpython-39.pyc 2025-08-14T21:54:58.3257817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\partitioner_utils.cpython-39.pyc 2025-08-14T21:54:58.3261237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\proxy_tensor.cpython-39.pyc 2025-08-14T21:54:58.3264852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\recording.cpython-39.pyc 2025-08-14T21:54:58.3268344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\refinement_types.cpython-39.pyc 2025-08-14T21:54:58.3271787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\rewriter.cpython-39.pyc 2025-08-14T21:54:58.3275193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\schema_type_annotation.cpython-39.pyc 2025-08-14T21:54:58.3279013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\symbolic_shapes.cpython-39.pyc 2025-08-14T21:54:58.3283281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\sym_node.cpython-39.pyc 2025-08-14T21:54:58.3292971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\unify_refinements.cpython-39.pyc 2025-08-14T21:54:58.3296935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\validator.cpython-39.pyc 2025-08-14T21:54:58.3300649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_backward_state.cpython-39.pyc 2025-08-14T21:54:58.3304069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_config.cpython-39.pyc 2025-08-14T21:54:58.3307826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_constant_symnode.cpython-39.pyc 2025-08-14T21:54:58.3311449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_dynamism.cpython-39.pyc 2025-08-14T21:54:58.3314872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3323491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\annotate_getitem_nodes.py 2025-08-14T21:54:58.3326877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\fake_tensor_prop.py 2025-08-14T21:54:58.3330086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_drawer.py 2025-08-14T21:54:58.3333570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_manipulation.py 2025-08-14T21:54:58.3342715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_transform_observer.py 2025-08-14T21:54:58.3345991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\net_min_base.py 2025-08-14T21:54:58.3350223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\operator_support.py 2025-08-14T21:54:58.3353809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\param_fetch.py 2025-08-14T21:54:58.3357323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\pass_manager.py 2025-08-14T21:54:58.3360732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\reinplace.py 2025-08-14T21:54:58.3364258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\runtime_assert.py 2025-08-14T21:54:58.3367585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\shape_prop.py 2025-08-14T21:54:58.3371056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\splitter_base.py 2025-08-14T21:54:58.3374983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_module.py 2025-08-14T21:54:58.3378286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_utils.py 2025-08-14T21:54:58.3381696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tools_common.py 2025-08-14T21:54:58.3385111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\_tensorify_python_scalars.py 2025-08-14T21:54:58.3388396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__init__.py 2025-08-14T21:54:58.3395165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\cudagraphs.py 2025-08-14T21:54:58.3398392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__init__.py 2025-08-14T21:54:58.3405084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-14T21:54:58.3408464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3514138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__init__.py 2025-08-14T21:54:58.3519697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\cse_pass.py 2025-08-14T21:54:58.3522931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__init__.py 2025-08-14T21:54:58.3528766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\cse_pass.cpython-39.pyc 2025-08-14T21:54:58.3532480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3540085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3547671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\partitioner.py 2025-08-14T21:54:58.3551155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_base.py 2025-08-14T21:54:58.3554372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_manager.py 2025-08-14T21:54:58.3557573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__init__.py 2025-08-14T21:54:58.3570171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\partitioner.cpython-39.pyc 2025-08-14T21:54:58.3573557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_base.cpython-39.pyc 2025-08-14T21:54:58.3577214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_manager.cpython-39.pyc 2025-08-14T21:54:58.3585968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3593996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\test_pass_manager.py 2025-08-14T21:54:58.3597068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__init__.py 2025-08-14T21:54:58.3603468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\test_pass_manager.cpython-39.pyc 2025-08-14T21:54:58.3607032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3614398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\common.py 2025-08-14T21:54:58.3617809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\fuser_utils.py 2025-08-14T21:54:58.3621102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_utils.py 2025-08-14T21:54:58.3624392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_with_name_node_map_utils.py 2025-08-14T21:54:58.3633824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\source_matcher_utils.py 2025-08-14T21:54:58.3637146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__init__.py 2025-08-14T21:54:58.3644229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:54:58.3648169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\fuser_utils.cpython-39.pyc 2025-08-14T21:54:58.3651681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_utils.cpython-39.pyc 2025-08-14T21:54:58.3662037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_with_name_node_map_utils.cpython-39.pyc 2025-08-14T21:54:58.3665229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\source_matcher_utils.cpython-39.pyc 2025-08-14T21:54:58.3668847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3676706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\annotate_getitem_nodes.cpython-39.pyc 2025-08-14T21:54:58.3680314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\fake_tensor_prop.cpython-39.pyc 2025-08-14T21:54:58.3683647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_drawer.cpython-39.pyc 2025-08-14T21:54:58.3692115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_manipulation.cpython-39.pyc 2025-08-14T21:54:58.3695849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_transform_observer.cpython-39.pyc 2025-08-14T21:54:58.3699824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\net_min_base.cpython-39.pyc 2025-08-14T21:54:58.3703271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\operator_support.cpython-39.pyc 2025-08-14T21:54:58.3706618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\param_fetch.cpython-39.pyc 2025-08-14T21:54:58.3710264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\pass_manager.cpython-39.pyc 2025-08-14T21:54:58.3713739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\reinplace.cpython-39.pyc 2025-08-14T21:54:58.3717438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\runtime_assert.cpython-39.pyc 2025-08-14T21:54:58.3721565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\shape_prop.cpython-39.pyc 2025-08-14T21:54:58.3725022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\splitter_base.cpython-39.pyc 2025-08-14T21:54:58.3728489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_module.cpython-39.pyc 2025-08-14T21:54:58.3732142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_utils.cpython-39.pyc 2025-08-14T21:54:58.3735539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\tools_common.cpython-39.pyc 2025-08-14T21:54:58.3744438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\_tensorify_python_scalars.cpython-39.pyc 2025-08-14T21:54:58.3747781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3756424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\annotate.cpython-39.pyc 2025-08-14T21:54:58.3775222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\config.cpython-39.pyc 2025-08-14T21:54:58.3778687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph.cpython-39.pyc 2025-08-14T21:54:58.3787241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:54:58.3790944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\immutable_collections.cpython-39.pyc 2025-08-14T21:54:58.3794376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\interpreter.cpython-39.pyc 2025-08-14T21:54:58.3797881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\node.cpython-39.pyc 2025-08-14T21:54:58.3801653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\operator_schemas.cpython-39.pyc 2025-08-14T21:54:58.3805385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\proxy.cpython-39.pyc 2025-08-14T21:54:58.3809073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\subgraph_rewriter.cpython-39.pyc 2025-08-14T21:54:58.3812361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\tensor_type.cpython-39.pyc 2025-08-14T21:54:58.3816145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\traceback.cpython-39.pyc 2025-08-14T21:54:58.3819522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_compatibility.cpython-39.pyc 2025-08-14T21:54:58.3823121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_graph_pickler.cpython-39.pyc 2025-08-14T21:54:58.3827225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_lazy_graph_module.cpython-39.pyc 2025-08-14T21:54:58.3830744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_pytree.cpython-39.pyc 2025-08-14T21:54:58.3834103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_symbolic_trace.cpython-39.pyc 2025-08-14T21:54:58.3843071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:54:58.3846676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:54:58.3861973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\advisor-annotate.h 2025-08-14T21:54:58.3865618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\cpuinfo.h 2025-08-14T21:54:58.3869205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.h 2025-08-14T21:54:58.3872351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.hpp 2025-08-14T21:54:58.3875477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_config.h 2025-08-14T21:54:58.3883752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_debug.h 2025-08-14T21:54:58.3887245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.h 2025-08-14T21:54:58.3890311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.hpp 2025-08-14T21:54:58.3893422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.h 2025-08-14T21:54:58.3896792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.hpp 2025-08-14T21:54:58.3900521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl_types.h 2025-08-14T21:54:58.3903941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.h 2025-08-14T21:54:58.3907697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.hpp 2025-08-14T21:54:58.3911077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool_iface.hpp 2025-08-14T21:54:58.3914765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_types.h 2025-08-14T21:54:58.3918126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_version.h 2025-08-14T21:54:58.3921560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\experiments-config.h 2025-08-14T21:54:58.3924852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16.h 2025-08-14T21:54:58.3928102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fxdiv.h 2025-08-14T21:54:58.3931614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify-zca.h 2025-08-14T21:54:58.3934974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify.h 2025-08-14T21:54:58.3939883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\jitprofiling.h 2025-08-14T21:54:58.3949219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libittnotify.h 2025-08-14T21:54:58.3952250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libshm.h 2025-08-14T21:54:58.3955604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\psimd.h 2025-08-14T21:54:58.3959079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pthreadpool.h 2025-08-14T21:54:58.3963273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\sleef.h 2025-08-14T21:54:58.3968532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\xnnpack.h 2025-08-14T21:54:58.3977940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\AccumulateType.h 2025-08-14T21:54:58.3981176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ArrayRef.h 2025-08-14T21:54:58.3984350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ATen.h 2025-08-14T21:54:58.3987558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\autocast_mode.h 2025-08-14T21:54:58.3991270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backend.h 2025-08-14T21:54:58.4000253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backtrace.h 2025-08-14T21:54:58.4003464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\BlasBackend.h 2025-08-14T21:54:58.4007052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CachedTensorUtils.h 2025-08-14T21:54:58.4010755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ceil_div.h 2025-08-14T21:54:58.4014145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\code_template.h 2025-08-14T21:54:58.4017645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CollapseDims.h 2025-08-14T21:54:58.4021126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions.h 2025-08-14T21:54:58.4024705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h 2025-08-14T21:54:58.4028553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h 2025-08-14T21:54:58.4032669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h 2025-08-14T21:54:58.4037115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions.h 2025-08-14T21:54:58.4040929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h 2025-08-14T21:54:58.4044872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h 2025-08-14T21:54:58.4048376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h 2025-08-14T21:54:58.4057400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Config.h 2025-08-14T21:54:58.4060571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Context.h 2025-08-14T21:54:58.4064085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpp_custom_type_hack.h 2025-08-14T21:54:58.4067646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUApplyUtils.h 2025-08-14T21:54:58.4071144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFixedAllocator.h 2025-08-14T21:54:58.4075045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions.h 2025-08-14T21:54:58.4078858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions_inl.h 2025-08-14T21:54:58.4082833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUGeneratorImpl.h 2025-08-14T21:54:58.4086364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions.h 2025-08-14T21:54:58.4089794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions_inl.h 2025-08-14T21:54:58.4098635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Device.h 2025-08-14T21:54:58.4101781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceAccelerator.h 2025-08-14T21:54:58.4105229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceGuard.h 2025-08-14T21:54:58.4108624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dimname.h 2025-08-14T21:54:58.4111787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DimVector.h 2025-08-14T21:54:58.4115117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch.h 2025-08-14T21:54:58.4118524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch_v2.h 2025-08-14T21:54:58.4122612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\div_rtn.h 2025-08-14T21:54:58.4126015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DLConvertor.h 2025-08-14T21:54:58.4129397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\dlpack.h 2025-08-14T21:54:58.4132935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DynamicLibrary.h 2025-08-14T21:54:58.4136611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\EmptyTensor.h 2025-08-14T21:54:58.4145030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandBase.h 2025-08-14T21:54:58.4148429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandUtils.h 2025-08-14T21:54:58.4152122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Formatting.h 2025-08-14T21:54:58.4155574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalStorageImpl.h 2025-08-14T21:54:58.4159068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalTensorWrapper.h 2025-08-14T21:54:58.4163079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Functions.h 2025-08-14T21:54:58.4166899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FuncTorchTLS.h 2025-08-14T21:54:58.4170473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Generator.h 2025-08-14T21:54:58.4173955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InferSize.h 2025-08-14T21:54:58.4177509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InitialTensorOptions.h 2025-08-14T21:54:58.4185726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jiterator_macros.h 2025-08-14T21:54:58.4189185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jit_macros.h 2025-08-14T21:54:58.4192490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Layout.h 2025-08-14T21:54:58.4196257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedFallback.h 2025-08-14T21:54:58.4199858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedTensorImpl.h 2025-08-14T21:54:58.4203828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapMode.h 2025-08-14T21:54:58.4207081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapTransforms.h 2025-08-14T21:54:58.4210384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LinalgBackend.h 2025-08-14T21:54:58.4213853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MapAllocator.h 2025-08-14T21:54:58.4217206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MatrixRef.h 2025-08-14T21:54:58.4231798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MemoryOverlap.h 2025-08-14T21:54:58.4235153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions.h 2025-08-14T21:54:58.4238547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions_inl.h 2025-08-14T21:54:58.4242146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MethodOperators.h 2025-08-14T21:54:58.4245944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensor.h 2025-08-14T21:54:58.4249726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensorUtils.h 2025-08-14T21:54:58.4253217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeFunctions.h 2025-08-14T21:54:58.4256934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeMetaFunctions.h 2025-08-14T21:54:58.4260606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NestedTensorImpl.h 2025-08-14T21:54:58.4269261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NumericUtils.h 2025-08-14T21:54:58.4272630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpaqueTensorImpl.h 2025-08-14T21:54:58.4276029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Operators.h 2025-08-14T21:54:58.4279828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpMathType.h 2025-08-14T21:54:58.4283453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PadNd.h 2025-08-14T21:54:58.4287089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel-inl.h 2025-08-14T21:54:58.4290673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel.h 2025-08-14T21:54:58.4294175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelFuture.h 2025-08-14T21:54:58.4297930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelNative.h 2025-08-14T21:54:58.4301352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelOpenMP.h 2025-08-14T21:54:58.4310702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PTThreadPool.h 2025-08-14T21:54:58.4314410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PythonTorchFunctionTLS.h 2025-08-14T21:54:58.4318189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\record_function.h 2025-08-14T21:54:58.4321902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RedispatchFunctions.h 2025-08-14T21:54:58.4338049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RegistrationDeclarations.h 2025-08-14T21:54:58.4345311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ROCmFABackend.h 2025-08-14T21:54:58.4348848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SavedTensorHooks.h 2025-08-14T21:54:58.4352531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Scalar.h 2025-08-14T21:54:58.4355756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarOps.h 2025-08-14T21:54:58.4359167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarType.h 2025-08-14T21:54:58.4362786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SDPBackend.h 2025-08-14T21:54:58.4366223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SequenceNumber.h 2025-08-14T21:54:58.4369545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SmallVector.h 2025-08-14T21:54:58.4373060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorImpl.h 2025-08-14T21:54:58.4376285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorUtils.h 2025-08-14T21:54:58.4379755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseTensorImpl.h 2025-08-14T21:54:58.4383226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Storage.h 2025-08-14T21:54:58.4386457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\StorageUtils.h 2025-08-14T21:54:58.4389876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Tensor.h 2025-08-14T21:54:58.4393120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorAccessor.h 2025-08-14T21:54:58.4402554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorGeometry.h 2025-08-14T21:54:58.4405880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIndexing.h 2025-08-14T21:54:58.4409287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIterator.h 2025-08-14T21:54:58.4413033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIteratorInternal.h 2025-08-14T21:54:58.4416619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorMeta.h 2025-08-14T21:54:58.4419939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorNames.h 2025-08-14T21:54:58.4423353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOperators.h 2025-08-14T21:54:58.4427168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOptions.h 2025-08-14T21:54:58.4430789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorSubclassLikeUtils.h 2025-08-14T21:54:58.4435200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorUtils.h 2025-08-14T21:54:58.4439062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalPythonObjects.h 2025-08-14T21:54:58.4443159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalState.h 2025-08-14T21:54:58.4446490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TracerMode.h 2025-08-14T21:54:58.4449806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TypeDefault.h 2025-08-14T21:54:58.4453198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Utils.h 2025-08-14T21:54:58.4456569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Version.h 2025-08-14T21:54:58.4459902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\VmapGeneratedPlumbing.h 2025-08-14T21:54:58.4471273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtils.h 2025-08-14T21:54:58.4474767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtilsMulti.h 2025-08-14T21:54:58.4483508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\alias_info.h 2025-08-14T21:54:58.4486799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Array.h 2025-08-14T21:54:58.4490044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenGeneral.h 2025-08-14T21:54:58.4493233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenOpList.h 2025-08-14T21:54:58.4502071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_fwd.h 2025-08-14T21:54:58.4505345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\aten_interned_strings.h 2025-08-14T21:54:58.4508945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_pch.h 2025-08-14T21:54:58.4512055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Backtrace.h 2025-08-14T21:54:58.4515344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\blob.h 2025-08-14T21:54:58.4518654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\builtin_function.h 2025-08-14T21:54:58.4522452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CachingHostAllocator.h 2025-08-14T21:54:58.4525843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CheckMemoryFormat.h 2025-08-14T21:54:58.4529155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\class_type.h 2025-08-14T21:54:58.4532414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\custom_class.h 2025-08-14T21:54:58.4535832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypeProperties.h 2025-08-14T21:54:58.4539933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h 2025-08-14T21:54:58.4543211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict.h 2025-08-14T21:54:58.4546542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict_inl.h 2025-08-14T21:54:58.4549653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dimname.h 2025-08-14T21:54:58.4553060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DimVector.h 2025-08-14T21:54:58.4556434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DistributionsHelper.h 2025-08-14T21:54:58.4560118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dynamic_type.h 2025-08-14T21:54:58.4568608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_tag.h 2025-08-14T21:54:58.4571936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_type.h 2025-08-14T21:54:58.4575336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Formatting.h 2025-08-14T21:54:58.4578704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function.h 2025-08-14T21:54:58.4581959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\functional.h 2025-08-14T21:54:58.4585248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema.h 2025-08-14T21:54:58.4588662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema_inl.h 2025-08-14T21:54:58.4592243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Generator.h 2025-08-14T21:54:58.4595749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\GeneratorForPrivateuseone.h 2025-08-14T21:54:58.4600048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\grad_mode.h 2025-08-14T21:54:58.4604115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef.h 2025-08-14T21:54:58.4612711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef_inl.h 2025-08-14T21:54:58.4616095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings.h 2025-08-14T21:54:58.4619517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings_class.h 2025-08-14T21:54:58.4622976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue.h 2025-08-14T21:54:58.4626378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_inl.h 2025-08-14T21:54:58.4630209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_to.h 2025-08-14T21:54:58.4633744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type.h 2025-08-14T21:54:58.4637624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type_base.h 2025-08-14T21:54:58.4641512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\LegacyTypeDispatch.h 2025-08-14T21:54:58.4645287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List.h 2025-08-14T21:54:58.4648833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List_inl.h 2025-08-14T21:54:58.4652238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\MT19937RNGEngine.h 2025-08-14T21:54:58.4660916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NamedTensor.h 2025-08-14T21:54:58.4664599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NestedIntSymNodeImpl.h 2025-08-14T21:54:58.4668067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\operator_name.h 2025-08-14T21:54:58.4671474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PhiloxRNGEngine.h 2025-08-14T21:54:58.4674917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonFallbackKernel.h 2025-08-14T21:54:58.4678593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonOpRegistrationTrampoline.h 2025-08-14T21:54:58.4682255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\qualified_name.h 2025-08-14T21:54:58.4685546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\QuantizerBase.h 2025-08-14T21:54:58.4689124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Range.h 2025-08-14T21:54:58.4692512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Reduction.h 2025-08-14T21:54:58.4700810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\rref_interface.h 2025-08-14T21:54:58.4704489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Scalar.h 2025-08-14T21:54:58.4708197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ScalarType.h 2025-08-14T21:54:58.4711684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\stack.h 2025-08-14T21:54:58.4715001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\symbol.h 2025-08-14T21:54:58.4718229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Tensor.h 2025-08-14T21:54:58.4721658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorAccessor.h 2025-08-14T21:54:58.4725136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBase.h 2025-08-14T21:54:58.4728829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBody.h 2025-08-14T21:54:58.4733799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TorchDispatchUtils.h 2025-08-14T21:54:58.4737266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TransformationHelper.h 2025-08-14T21:54:58.4751181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\typeid.h 2025-08-14T21:54:58.4754439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_factory.h 2025-08-14T21:54:58.4758024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_ptr.h 2025-08-14T21:54:58.4761559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UndefinedTensorImpl.h 2025-08-14T21:54:58.4764884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UnsafeFromTH.h 2025-08-14T21:54:58.4768402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\VariableHooksInterface.h 2025-08-14T21:54:58.4772011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Variadic.h 2025-08-14T21:54:58.4775198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Vitals.h 2025-08-14T21:54:58.4782592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel.h 2025-08-14T21:54:58.4786018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel_impl.h 2025-08-14T21:54:58.4789925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction.h 2025-08-14T21:54:58.4794026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction_impl.h 2025-08-14T21:54:58.4803782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\OperatorKernel.h 2025-08-14T21:54:58.4810985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\boxing.h 2025-08-14T21:54:58.4814353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h 2025-08-14T21:54:58.4817879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\test_helpers.h 2025-08-14T21:54:58.4821972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h 2025-08-14T21:54:58.4831038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h 2025-08-14T21:54:58.4838865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\CppSignature.h 2025-08-14T21:54:58.4859603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\Dispatcher.h 2025-08-14T21:54:58.4863260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h 2025-08-14T21:54:58.4866652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\ObservedOperators.h 2025-08-14T21:54:58.4874895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorEntry.h 2025-08-14T21:54:58.4878383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorOptions.h 2025-08-14T21:54:58.4882022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h 2025-08-14T21:54:58.4890078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\adaption.h 2025-08-14T21:54:58.4893557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\infer_schema.h 2025-08-14T21:54:58.4897100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_allowlist.h 2025-08-14T21:54:58.4900433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_registration.h 2025-08-14T21:54:58.4914951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\FlushDenormal.h 2025-08-14T21:54:58.4918430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\Utils.h 2025-08-14T21:54:58.4921962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vml.h 2025-08-14T21:54:58.4928356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional.h 2025-08-14T21:54:58.4931635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_base.h 2025-08-14T21:54:58.4935038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_bfloat16.h 2025-08-14T21:54:58.4939355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\intrinsics.h 2025-08-14T21:54:58.4948989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec.h 2025-08-14T21:54:58.4953228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_base.h 2025-08-14T21:54:58.4956835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_convert.h 2025-08-14T21:54:58.4960748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_half.h 2025-08-14T21:54:58.4965818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_mask.h 2025-08-14T21:54:58.4969654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_n.h 2025-08-14T21:54:58.7747203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_quant.h 2025-08-14T21:54:58.7754898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\sve_helper.h 2025-08-14T21:54:58.7759687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h 2025-08-14T21:54:58.7763891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_common_sve.h 2025-08-14T21:54:58.7767670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_double.h 2025-08-14T21:54:58.7782303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_float.h 2025-08-14T21:54:58.7785700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_int.h 2025-08-14T21:54:58.7790035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_qint.h 2025-08-14T21:54:58.7797789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128.h 2025-08-14T21:54:58.7801937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h 2025-08-14T21:54:58.7805454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_convert.h 2025-08-14T21:54:58.7808797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h 2025-08-14T21:54:58.7823634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h 2025-08-14T21:54:58.7827157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h 2025-08-14T21:54:58.7834734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h 2025-08-14T21:54:58.7837882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h 2025-08-14T21:54:58.7841231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256.h 2025-08-14T21:54:58.7844426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h 2025-08-14T21:54:58.7858249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h 2025-08-14T21:54:58.7861913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h 2025-08-14T21:54:58.7865349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h 2025-08-14T21:54:58.7869066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_convert.h 2025-08-14T21:54:58.7872398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_double.h 2025-08-14T21:54:58.7875763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_float.h 2025-08-14T21:54:58.7879410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_half.h 2025-08-14T21:54:58.7882951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_int.h 2025-08-14T21:54:58.7886610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_mask.h 2025-08-14T21:54:58.7890069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_qint.h 2025-08-14T21:54:58.7897653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h 2025-08-14T21:54:58.7901256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h 2025-08-14T21:54:58.7904782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h 2025-08-14T21:54:58.7920296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h 2025-08-14T21:54:58.7923708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h 2025-08-14T21:54:58.7927078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h 2025-08-14T21:54:58.7930475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h 2025-08-14T21:54:58.7933978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h 2025-08-14T21:54:58.7937540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h 2025-08-14T21:54:58.7941168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h 2025-08-14T21:54:58.7944830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h 2025-08-14T21:54:58.7948345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h 2025-08-14T21:54:58.7951793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h 2025-08-14T21:54:58.7960186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h 2025-08-14T21:54:58.7968181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512.h 2025-08-14T21:54:58.7971523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h 2025-08-14T21:54:58.7975229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h 2025-08-14T21:54:58.7978687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h 2025-08-14T21:54:58.7994268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_convert.h 2025-08-14T21:54:58.7997770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_double.h 2025-08-14T21:54:58.8001147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float.h 2025-08-14T21:54:58.8004499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float8.h 2025-08-14T21:54:58.8007818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_int.h 2025-08-14T21:54:58.8011350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_mask.h 2025-08-14T21:54:58.8015510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_qint.h 2025-08-14T21:54:58.8025467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ApplyGridUtils.cuh 2025-08-14T21:54:58.8028860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\AsmUtils.cuh 2025-08-14T21:54:58.8032384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ATenCUDAGeneral.h 2025-08-14T21:54:58.8035651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Atomic.cuh 2025-08-14T21:54:58.8040442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CachingHostAllocator.h 2025-08-14T21:54:58.8056657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub-RadixSortPairs.cuh 2025-08-14T21:54:58.8060114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.cuh 2025-08-14T21:54:58.8064672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.h 2025-08-14T21:54:58.8069401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub_definitions.cuh 2025-08-14T21:54:58.8072814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAApplyUtils.cuh 2025-08-14T21:54:58.8077456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDABlas.h 2025-08-14T21:54:58.8082037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContext.h 2025-08-14T21:54:58.8086626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContextLight.h 2025-08-14T21:54:58.8090091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADataType.h 2025-08-14T21:54:58.8094739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADevice.h 2025-08-14T21:54:58.8099451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAEvent.h 2025-08-14T21:54:58.8104116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGeneratorImpl.h 2025-08-14T21:54:58.8107666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraph.h 2025-08-14T21:54:58.8112478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraphsUtils.cuh 2025-08-14T21:54:58.8117288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparse.h 2025-08-14T21:54:58.8122103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseBlas.h 2025-08-14T21:54:58.8137048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseDescriptors.h 2025-08-14T21:54:58.8141885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDATensorMethods.cuh 2025-08-14T21:54:58.8146517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAUtils.h 2025-08-14T21:54:58.8151204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\DeviceUtils.cuh 2025-08-14T21:54:58.8154785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\EmptyTensor.h 2025-08-14T21:54:58.8160243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Exceptions.h 2025-08-14T21:54:58.8168170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator.h 2025-08-14T21:54:58.8171627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator_impl.h 2025-08-14T21:54:58.8175202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\llvm_jit_strings.h 2025-08-14T21:54:58.8190038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\NumericLimits.cuh 2025-08-14T21:54:58.8193652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PeerToPeerAccess.h 2025-08-14T21:54:58.8197349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxCudaState.h 2025-08-14T21:54:58.8200811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxUtils.cuh 2025-08-14T21:54:58.8204514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PinnedMemoryAllocator.h 2025-08-14T21:54:58.8208472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ScanUtils.cuh 2025-08-14T21:54:58.8211869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Sleep.h 2025-08-14T21:54:58.8215275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ThrustAllocator.h 2025-08-14T21:54:58.8223034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\CUDAHooks.h 2025-08-14T21:54:58.8226548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\DeviceThreadHandles.h 2025-08-14T21:54:58.8229857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IndexUtils.cuh 2025-08-14T21:54:58.8233320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IntegerDivider.cuh 2025-08-14T21:54:58.8247614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\KernelUtils.h 2025-08-14T21:54:58.8251405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\LazyNVRTC.h 2025-08-14T21:54:58.8255644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\OffsetCalculator.cuh 2025-08-14T21:54:58.8265466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh 2025-08-14T21:54:58.8266153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\TensorInfo.cuh 2025-08-14T21:54:58.8268983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\UnpackRaw.cuh 2025-08-14T21:54:58.8277287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmCommon.h 2025-08-14T21:54:58.8281173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmHipblaslt.h 2025-08-14T21:54:58.8285155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmRocblas.h 2025-08-14T21:54:58.8289018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\StreamTimer.h 2025-08-14T21:54:58.8303459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\Tunable.h 2025-08-14T21:54:58.8307012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableGemm.h 2025-08-14T21:54:58.8310741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableOp.h 2025-08-14T21:54:58.8318570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\cudnn-wrapper.h 2025-08-14T21:54:58.8321988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Descriptors.h 2025-08-14T21:54:58.8325208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handle.h 2025-08-14T21:54:58.8328873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handles.h 2025-08-14T21:54:58.8331936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Types.h 2025-08-14T21:54:58.8346240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Utils.h 2025-08-14T21:54:58.8354149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\AcceleratorHooksInterface.h 2025-08-14T21:54:58.8358298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\CUDAHooksInterface.h 2025-08-14T21:54:58.8362800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\FunctionTraits.h 2025-08-14T21:54:58.8376942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HIPHooksInterface.h 2025-08-14T21:54:58.8380992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HPUHooksInterface.h 2025-08-14T21:54:58.8385066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\IPUHooksInterface.h 2025-08-14T21:54:58.8389763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MAIAHooksInterface.h 2025-08-14T21:54:58.8393366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MPSHooksInterface.h 2025-08-14T21:54:58.8397381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MTIAHooksInterface.h 2025-08-14T21:54:58.8400970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\PrivateUse1HooksInterface.h 2025-08-14T21:54:58.8404323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\XPUHooksInterface.h 2025-08-14T21:54:58.8412278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\ADInterpreters.h 2025-08-14T21:54:58.8416075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedFallback.h 2025-08-14T21:54:58.8419373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedTensorImpl.h 2025-08-14T21:54:58.8433460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchingMetaprogramming.h 2025-08-14T21:54:58.8436667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchRulesHelper.h 2025-08-14T21:54:58.8440150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\DynamicLayer.h 2025-08-14T21:54:58.8443851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\FunctionalizeInterpreter.h 2025-08-14T21:54:58.8447316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Interpreter.h 2025-08-14T21:54:58.8450810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\LegacyVmapTransforms.h 2025-08-14T21:54:58.8454347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Macros.h 2025-08-14T21:54:58.8457755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\PlumbingHelper.h 2025-08-14T21:54:58.8461144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\TensorWrapper.h 2025-08-14T21:54:58.8464745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\VmapInterpreter.h 2025-08-14T21:54:58.8475757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h 2025-08-14T21:54:58.8479158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h 2025-08-14T21:54:58.8482727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h 2025-08-14T21:54:58.8496002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h 2025-08-14T21:54:58.8504135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\metal\Context.h 2025-08-14T21:54:58.8510726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Descriptors.h 2025-08-14T21:54:58.8513956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Exceptions.h 2025-08-14T21:54:58.8517211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Handle.h 2025-08-14T21:54:58.8520513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\miopen-wrapper.h 2025-08-14T21:54:58.8533930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Types.h 2025-08-14T21:54:58.8537071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Utils.h 2025-08-14T21:54:58.8544460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\EmptyTensor.h 2025-08-14T21:54:58.8547697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\IndexKernels.h 2025-08-14T21:54:58.8551012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocator.h 2025-08-14T21:54:58.8554300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocatorInterface.h 2025-08-14T21:54:58.8568037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSDevice.h 2025-08-14T21:54:58.8571323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSEvent.h 2025-08-14T21:54:58.8575265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGeneratorImpl.h 2025-08-14T21:54:58.8578565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGuardImpl.h 2025-08-14T21:54:58.8581827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSHooks.h 2025-08-14T21:54:58.8585153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSProfiler.h 2025-08-14T21:54:58.8588484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSStream.h 2025-08-14T21:54:58.8596378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Activation.h 2025-08-14T21:54:58.8599807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AdaptivePooling.h 2025-08-14T21:54:58.8603184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AmpKernels.h 2025-08-14T21:54:58.8606674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BatchLinearAlgebra.h 2025-08-14T21:54:58.8619972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\batch_norm.h 2025-08-14T21:54:58.8623281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BinaryOps.h 2025-08-14T21:54:58.8626757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BucketizationUtils.h 2025-08-14T21:54:58.8630152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CanUse32BitIndexMath.h 2025-08-14T21:54:58.8633853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ComplexHelper.h 2025-08-14T21:54:58.8638114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessor.h 2025-08-14T21:54:58.8641733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessorCommon.h 2025-08-14T21:54:58.8645260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvolutionMM3d.h 2025-08-14T21:54:58.8648764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvUtils.h 2025-08-14T21:54:58.8652263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Copy.h 2025-08-14T21:54:58.8655592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUBlas.h 2025-08-14T21:54:58.8658906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUFallback.h 2025-08-14T21:54:58.8662302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Cross.h 2025-08-14T21:54:58.8665765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DilatedConvolutionUtils.h 2025-08-14T21:54:58.8669120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DispatchStub.h 2025-08-14T21:54:58.8672746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distance.h 2025-08-14T21:54:58.8676026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distributions.h 2025-08-14T21:54:58.8690002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DistributionTemplates.h 2025-08-14T21:54:58.8693543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\EmbeddingBag.h 2025-08-14T21:54:58.8696767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Fill.h 2025-08-14T21:54:58.8700089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ForeachUtils.h 2025-08-14T21:54:58.8703451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FractionalMaxPooling.h 2025-08-14T21:54:58.8706917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FunctionOfAMatrixUtils.h 2025-08-14T21:54:58.8710853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdagrad.h 2025-08-14T21:54:58.8714922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdam.h 2025-08-14T21:54:58.8718613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedSGD.h 2025-08-14T21:54:58.8721955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Gelu.h 2025-08-14T21:54:58.8725325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSampler.h 2025-08-14T21:54:58.8738640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSamplerUtils.h 2025-08-14T21:54:58.8742136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\group_norm.h 2025-08-14T21:54:58.8745416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Histogram.h 2025-08-14T21:54:58.8749623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col.h 2025-08-14T21:54:58.8752950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col_shape_check.h 2025-08-14T21:54:58.8756215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexingUtils.h 2025-08-14T21:54:58.8759836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexKernel.h 2025-08-14T21:54:58.8763225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\layer_norm.h 2025-08-14T21:54:58.8766587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Lerp.h 2025-08-14T21:54:58.8769914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebra.h 2025-08-14T21:54:58.8773278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebraUtils.h 2025-08-14T21:54:58.8786906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LossMulti.h 2025-08-14T21:54:58.8790332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Math.h 2025-08-14T21:54:58.8794713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitFallThroughLists.h 2025-08-14T21:54:58.8798082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitsFallback.h 2025-08-14T21:54:58.8801804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MaxPooling.h 2025-08-14T21:54:58.8806249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonEmptyUtils.h 2025-08-14T21:54:58.8809762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonSymbolicBC.h 2025-08-14T21:54:58.8813274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Normalization.h 2025-08-14T21:54:58.8817167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Padding.h 2025-08-14T21:54:58.8854327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PixelShuffle.h 2025-08-14T21:54:58.8862680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PointwiseOps.h 2025-08-14T21:54:58.8865987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pool.h 2025-08-14T21:54:58.8869155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pow.h 2025-08-14T21:54:58.8872863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeFactories.h 2025-08-14T21:54:58.8876494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeUtils.h 2025-08-14T21:54:58.8880191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceAllOps.h 2025-08-14T21:54:58.8883608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOps.h 2025-08-14T21:54:58.8887215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOpsUtils.h 2025-08-14T21:54:58.8890617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReductionType.h 2025-08-14T21:54:58.8893952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Repeat.h 2025-08-14T21:54:58.8897219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Resize.h 2025-08-14T21:54:58.8900718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ResizeCommon.h 2025-08-14T21:54:58.8923358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RNN.h 2025-08-14T21:54:58.8927198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ScatterGatherChecks.h 2025-08-14T21:54:58.8930625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SegmentReduce.h 2025-08-14T21:54:58.8933970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SharedReduceOps.h 2025-08-14T21:54:58.8937288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SobolEngineOpsUtils.h 2025-08-14T21:54:58.8940751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Sorting.h 2025-08-14T21:54:58.8943846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SortingUtils.h 2025-08-14T21:54:58.8947216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SparseTensorUtils.h 2025-08-14T21:54:58.8950519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SpectralOpsUtils.h 2025-08-14T21:54:58.8953891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\StridedRandomAccessor.h 2025-08-14T21:54:58.8967151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexing.h 2025-08-14T21:54:58.8970630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexingUtils.h 2025-08-14T21:54:58.8974065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorCompare.h 2025-08-14T21:54:58.8977812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorConversions.h 2025-08-14T21:54:58.8981375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorDimApply.h 2025-08-14T21:54:58.8985083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorFactories.h 2025-08-14T21:54:58.8988500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIterator.h 2025-08-14T21:54:58.8992203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIteratorDynamicCasting.h 2025-08-14T21:54:58.8995678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorProperties.h 2025-08-14T21:54:58.9009511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorShape.h 2025-08-14T21:54:58.9026474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorTransformations.h 2025-08-14T21:54:58.9027202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TopKImpl.h 2025-08-14T21:54:58.9027795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TransposeType.h 2025-08-14T21:54:58.9028414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TriangularOpsUtils.h 2025-08-14T21:54:58.9029029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TypeProperties.h 2025-08-14T21:54:58.9029825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnaryOps.h 2025-08-14T21:54:58.9033259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold2d.h 2025-08-14T21:54:58.9036912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold3d.h 2025-08-14T21:54:58.9040349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnfoldBackward.h 2025-08-14T21:54:58.9043994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UpSample.h 2025-08-14T21:54:58.9047455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\verbose_wrapper.h 2025-08-14T21:54:58.9050781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\vol2col.h 2025-08-14T21:54:58.9065523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h 2025-08-14T21:54:58.9069067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h 2025-08-14T21:54:58.9072403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h 2025-08-14T21:54:58.9081447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\AtomicAddFloat.h 2025-08-14T21:54:58.9085096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\avx_mathfun.h 2025-08-14T21:54:58.9088380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CatKernel.h 2025-08-14T21:54:58.9091641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ChannelShuffleKernel.h 2025-08-14T21:54:58.9105470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CopyKernel.h 2025-08-14T21:54:58.9109073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DepthwiseConvKernel.h 2025-08-14T21:54:58.9112324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DistributionTemplates.h 2025-08-14T21:54:58.9116010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Elu.h 2025-08-14T21:54:58.9119343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Gelu.h 2025-08-14T21:54:58.9122637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\GridSamplerKernel.h 2025-08-14T21:54:58.9125948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IndexKernelUtils.h 2025-08-14T21:54:58.9129325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Intrinsics.h 2025-08-14T21:54:58.9132688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\int_mm_kernel.h 2025-08-14T21:54:58.9136050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IsContiguous.h 2025-08-14T21:54:58.9139567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogAddExp.h 2025-08-14T21:54:58.9142901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h 2025-08-14T21:54:58.9146482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Loops.h 2025-08-14T21:54:58.9149744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\MaxUnpoolKernel.h 2025-08-14T21:54:58.9153026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\mixed_data_type.h 2025-08-14T21:54:58.9156518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\moments_utils.h 2025-08-14T21:54:58.9170087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\PixelShuffleKernel.h 2025-08-14T21:54:58.9173364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Reduce.h 2025-08-14T21:54:58.9176822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h 2025-08-14T21:54:58.9180638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReduceUtils.h 2025-08-14T21:54:58.9184053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SampledAddmmKernel.h 2025-08-14T21:54:58.9187371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SerialStackImpl.h 2025-08-14T21:54:58.9190660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SoftmaxKernel.h 2025-08-14T21:54:58.9194047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SpmmReduceKernel.h 2025-08-14T21:54:58.9197385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\StackKernel.h 2025-08-14T21:54:58.9200857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h 2025-08-14T21:54:58.9214117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\utils.h 2025-08-14T21:54:58.9217490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\WeightNormKernel.h 2025-08-14T21:54:58.9221027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\zmath.h 2025-08-14T21:54:58.9229351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Activation.h 2025-08-14T21:54:58.9232889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\BinaryInternal.h 2025-08-14T21:54:58.9236267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\block_reduce.cuh 2025-08-14T21:54:58.9240014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CompositeRandomAccessor.h 2025-08-14T21:54:58.9253667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Copy.h 2025-08-14T21:54:58.9256981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDAJitLoops.cuh 2025-08-14T21:54:58.9261469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDALoops.cuh 2025-08-14T21:54:58.9265102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTPlanCache.h 2025-08-14T21:54:58.9268372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTUtils.h 2025-08-14T21:54:58.9271782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\cutlass_common.cuh 2025-08-14T21:54:58.9275229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DeviceSqrt.cuh 2025-08-14T21:54:58.9278508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Distributions.h 2025-08-14T21:54:58.9282006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DistributionTemplates.h 2025-08-14T21:54:58.9285432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh 2025-08-14T21:54:58.9288999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachFunctors.cuh 2025-08-14T21:54:58.9292932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh 2025-08-14T21:54:58.9296410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh 2025-08-14T21:54:58.9299843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh 2025-08-14T21:54:58.9303240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh 2025-08-14T21:54:58.9316690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_impl.cuh 2025-08-14T21:54:58.9320205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh 2025-08-14T21:54:58.9323625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_impl.cuh 2025-08-14T21:54:58.9327220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_utils.cuh 2025-08-14T21:54:58.9330564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.cuh 2025-08-14T21:54:58.9334060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.h 2025-08-14T21:54:58.9337938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMM.h 2025-08-14T21:54:58.9341418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMMCommon.cuh 2025-08-14T21:54:58.9344690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\im2col.cuh 2025-08-14T21:54:58.9358296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernel.h 2025-08-14T21:54:58.9362015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernelUtils.h 2025-08-14T21:54:58.9366059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\JitLoops.cuh 2025-08-14T21:54:58.9369560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\jit_utils.h 2025-08-14T21:54:58.9373153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\KernelUtils.cuh 2025-08-14T21:54:58.9376799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\LaunchUtils.h 2025-08-14T21:54:58.9380385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Loops.cuh 2025-08-14T21:54:58.9383819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Math.cuh 2025-08-14T21:54:58.9387995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MemoryAccess.cuh 2025-08-14T21:54:58.9391576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MiscUtils.h 2025-08-14T21:54:58.9395101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MultiTensorApply.cuh 2025-08-14T21:54:58.9409066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Normalization.cuh 2025-08-14T21:54:58.9412927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\PersistentSoftmax.cuh 2025-08-14T21:54:58.9416311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Pow.cuh 2025-08-14T21:54:58.9419738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Randperm.cuh 2025-08-14T21:54:58.9422858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Reduce.cuh 2025-08-14T21:54:58.9426162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ReduceOps.h 2025-08-14T21:54:58.9430398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\reduction_template.cuh 2025-08-14T21:54:58.9433788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Resize.h 2025-08-14T21:54:58.9437052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\RowwiseScaledMM.h 2025-08-14T21:54:58.9440599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScaledGroupMM.h 2025-08-14T21:54:58.9443919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanKernels.h 2025-08-14T21:54:58.9447276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanUtils.cuh 2025-08-14T21:54:58.9460666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sort.h 2025-08-14T21:54:58.9463837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sorting.h 2025-08-14T21:54:58.9467030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingCommon.cuh 2025-08-14T21:54:58.9470923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingRadixSelect.cuh 2025-08-14T21:54:58.9474372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortStable.h 2025-08-14T21:54:58.9477827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortUtils.cuh 2025-08-14T21:54:58.9481560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.cuh 2025-08-14T21:54:58.9485135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.h 2025-08-14T21:54:58.9488455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorTopK.h 2025-08-14T21:54:58.9492098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\thread_constants.h 2025-08-14T21:54:58.9514429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UniqueCub.cuh 2025-08-14T21:54:58.9517742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UpSample.cuh 2025-08-14T21:54:58.9521093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\vol2col.cuh 2025-08-14T21:54:58.9531188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_bgemm.h 2025-08-14T21:54:58.9534405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm.h 2025-08-14T21:54:58.9537905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm_template.h 2025-08-14T21:54:58.9541161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_types.h 2025-08-14T21:54:58.9557418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h 2025-08-14T21:54:58.9560949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h 2025-08-14T21:54:58.9568685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_kernels.h 2025-08-14T21:54:58.9572091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_pack.h 2025-08-14T21:54:58.9576030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h 2025-08-14T21:54:58.9586959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\Conv.h 2025-08-14T21:54:58.9590395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h 2025-08-14T21:54:58.9596935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h 2025-08-14T21:54:58.9600485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h 2025-08-14T21:54:58.9604013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h 2025-08-14T21:54:58.9607352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h 2025-08-14T21:54:58.9610570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h 2025-08-14T21:54:58.9614513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h 2025-08-14T21:54:58.9632787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\Copy.h 2025-08-14T21:54:58.9636212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MetalShaderLibrary.h 2025-08-14T21:54:58.9639651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h 2025-08-14T21:54:58.9643080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSonomaOps.h 2025-08-14T21:54:58.9656143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphVenturaOps.h 2025-08-14T21:54:58.9659671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\OperationUtils.h 2025-08-14T21:54:58.9663080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\TensorFactory.h 2025-08-14T21:54:58.9670079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\Pooling.h 2025-08-14T21:54:58.9673432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\UpSample.h 2025-08-14T21:54:58.9680798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\BinaryKernel.h 2025-08-14T21:54:58.9684230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h 2025-08-14T21:54:58.9687699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h 2025-08-14T21:54:58.9701399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h 2025-08-14T21:54:58.9705798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h 2025-08-14T21:54:58.9709292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\MultiTensorApply.h 2025-08-14T21:54:58.9717701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mtia\EmptyTensor.h 2025-08-14T21:54:58.9725224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorBinaryOps.h 2025-08-14T21:54:58.9728573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorMath.h 2025-08-14T21:54:58.9732065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h 2025-08-14T21:54:58.9745970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h 2025-08-14T21:54:58.9749495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorUtils.h 2025-08-14T21:54:58.9757384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizer.h 2025-08-14T21:54:58.9760921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizerBase.h 2025-08-14T21:54:58.9764267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\ConvUtils.h 2025-08-14T21:54:58.9777819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\Copy.h 2025-08-14T21:54:58.9781488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\FakeQuantAffine.h 2025-08-14T21:54:58.9784728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\IndexKernel.h 2025-08-14T21:54:58.9788579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\library.h 2025-08-14T21:54:58.9791820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\PackedParams.h 2025-08-14T21:54:58.9798753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\ACLUtils.h 2025-08-14T21:54:58.9802124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\BinaryOps.h 2025-08-14T21:54:58.9805955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\conv_serialization.h 2025-08-14T21:54:58.9809413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h 2025-08-14T21:54:58.9821713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h 2025-08-14T21:54:58.9825226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\init_qnnpack.h 2025-08-14T21:54:58.9828787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\OnednnUtils.h 2025-08-14T21:54:58.9832387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qconv.h 2025-08-14T21:54:58.9836030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag.h 2025-08-14T21:54:58.9839497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h 2025-08-14T21:54:58.9842968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qlinear.h 2025-08-14T21:54:58.9846297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h 2025-08-14T21:54:58.9849798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantizedOps.h 2025-08-14T21:54:58.9853045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantUtils.h 2025-08-14T21:54:58.9856829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\RuyUtils.h 2025-08-14T21:54:58.9860169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h 2025-08-14T21:54:58.9868431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cudnn\utils.h 2025-08-14T21:54:58.9876838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\attention.h 2025-08-14T21:54:58.9880406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils.h 2025-08-14T21:54:58.9883967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils_cpp.h 2025-08-14T21:54:58.9901561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\sdp_utils.h 2025-08-14T21:54:58.9909335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h 2025-08-14T21:54:58.9912784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h 2025-08-14T21:54:58.9920096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h 2025-08-14T21:54:58.9923689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h 2025-08-14T21:54:58.9927344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h 2025-08-14T21:54:58.9940690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h 2025-08-14T21:54:58.9944200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h 2025-08-14T21:54:58.9952031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h 2025-08-14T21:54:58.9955508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h 2025-08-14T21:54:58.9959113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h 2025-08-14T21:54:58.9975778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h 2025-08-14T21:54:58.9979070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h 2025-08-14T21:54:58.9982506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h 2025-08-14T21:54:58.9985997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h 2025-08-14T21:54:58.9999446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h 2025-08-14T21:54:59.0002858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h 2025-08-14T21:54:59.0006210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h 2025-08-14T21:54:59.0014073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h 2025-08-14T21:54:59.0051324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h 2025-08-14T21:54:59.0054767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h 2025-08-14T21:54:59.0063932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h 2025-08-14T21:54:59.0068103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h 2025-08-14T21:54:59.0072213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h 2025-08-14T21:54:59.0075709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h 2025-08-14T21:54:59.0083287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h 2025-08-14T21:54:59.0087219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h 2025-08-14T21:54:59.0094869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h 2025-08-14T21:54:59.0103379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_adapter.h 2025-08-14T21:54:59.0110616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h 2025-08-14T21:54:59.0117300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h 2025-08-14T21:54:59.0125761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\Factory.h 2025-08-14T21:54:59.0129089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamsHash.h 2025-08-14T21:54:59.0132615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamUtils.h 2025-08-14T21:54:59.0141158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs.h 2025-08-14T21:54:59.0146799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute.h 2025-08-14T21:54:59.0151633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0155081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_native.h 2025-08-14T21:54:59.0169789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_ops.h 2025-08-14T21:54:59.0173154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0176762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cpu_dispatch.h 2025-08-14T21:54:59.0180260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cuda_dispatch.h 2025-08-14T21:54:59.0183595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_native.h 2025-08-14T21:54:59.0187026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_ops.h 2025-08-14T21:54:59.0190573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos.h 2025-08-14T21:54:59.0194559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh.h 2025-08-14T21:54:59.0198325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0202136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cpu_dispatch.h 2025-08-14T21:54:59.0205804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cuda_dispatch.h 2025-08-14T21:54:59.0209299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta.h 2025-08-14T21:54:59.0212711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta_dispatch.h 2025-08-14T21:54:59.0216168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_native.h 2025-08-14T21:54:59.0220067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_ops.h 2025-08-14T21:54:59.0224198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0238291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cpu_dispatch.h 2025-08-14T21:54:59.0241770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cuda_dispatch.h 2025-08-14T21:54:59.0245419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta.h 2025-08-14T21:54:59.0248948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta_dispatch.h 2025-08-14T21:54:59.0252443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_native.h 2025-08-14T21:54:59.0255845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_ops.h 2025-08-14T21:54:59.0259132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d.h 2025-08-14T21:54:59.0262775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0266818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0280510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_native.h 2025-08-14T21:54:59.0284009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h 2025-08-14T21:54:59.0287974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d.h 2025-08-14T21:54:59.0291623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0295088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h 2025-08-14T21:54:59.0298749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h 2025-08-14T21:54:59.0302426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_native.h 2025-08-14T21:54:59.0306041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h 2025-08-14T21:54:59.0320003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d.h 2025-08-14T21:54:59.0323566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h 2025-08-14T21:54:59.0327599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:54:59.0331573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:54:59.0335555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h 2025-08-14T21:54:59.0339330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h 2025-08-14T21:54:59.0343447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0347176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h 2025-08-14T21:54:59.0350764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h 2025-08-14T21:54:59.0354449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_native.h 2025-08-14T21:54:59.0358446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h 2025-08-14T21:54:59.0381062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d.h 2025-08-14T21:54:59.0385284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0388789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_native.h 2025-08-14T21:54:59.0392304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_ops.h 2025-08-14T21:54:59.0395812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d.h 2025-08-14T21:54:59.0400516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward.h 2025-08-14T21:54:59.0404680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0408400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h 2025-08-14T21:54:59.0411999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h 2025-08-14T21:54:59.0415725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h 2025-08-14T21:54:59.0419746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h 2025-08-14T21:54:59.0433110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h 2025-08-14T21:54:59.0436645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h 2025-08-14T21:54:59.0440501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0444012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h 2025-08-14T21:54:59.0447647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h 2025-08-14T21:54:59.0451224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta.h 2025-08-14T21:54:59.0455044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h 2025-08-14T21:54:59.0469824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_native.h 2025-08-14T21:54:59.0473635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_ops.h 2025-08-14T21:54:59.0477223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d.h 2025-08-14T21:54:59.0481464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward.h 2025-08-14T21:54:59.0485514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0499688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h 2025-08-14T21:54:59.0503391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h 2025-08-14T21:54:59.0507099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h 2025-08-14T21:54:59.0511041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h 2025-08-14T21:54:59.0514741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h 2025-08-14T21:54:59.0518895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h 2025-08-14T21:54:59.0522861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0526499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h 2025-08-14T21:54:59.0530139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h 2025-08-14T21:54:59.0533725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta.h 2025-08-14T21:54:59.0537397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h 2025-08-14T21:54:59.0541676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_native.h 2025-08-14T21:54:59.0545666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_ops.h 2025-08-14T21:54:59.0549582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add.h 2025-08-14T21:54:59.0553345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm.h 2025-08-14T21:54:59.0556709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cpu_dispatch.h 2025-08-14T21:54:59.0560245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cuda_dispatch.h 2025-08-14T21:54:59.0563672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_meta_dispatch.h 2025-08-14T21:54:59.0567103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_native.h 2025-08-14T21:54:59.0570706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_ops.h 2025-08-14T21:54:59.0574541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv.h 2025-08-14T21:54:59.0578085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0581407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cpu_dispatch.h 2025-08-14T21:54:59.0584905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cuda_dispatch.h 2025-08-14T21:54:59.0597989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta.h 2025-08-14T21:54:59.0601659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta_dispatch.h 2025-08-14T21:54:59.0605212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_native.h 2025-08-14T21:54:59.0608880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_ops.h 2025-08-14T21:54:59.0612337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul.h 2025-08-14T21:54:59.0615897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0619272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cpu_dispatch.h 2025-08-14T21:54:59.0623226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cuda_dispatch.h 2025-08-14T21:54:59.0627850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta.h 2025-08-14T21:54:59.0631566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta_dispatch.h 2025-08-14T21:54:59.0635720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_native.h 2025-08-14T21:54:59.0639516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_ops.h 2025-08-14T21:54:59.0643079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm.h 2025-08-14T21:54:59.0646806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0650158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cpu_dispatch.h 2025-08-14T21:54:59.0653809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cuda_dispatch.h 2025-08-14T21:54:59.0657540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta.h 2025-08-14T21:54:59.0661756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta_dispatch.h 2025-08-14T21:54:59.0665445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_native.h 2025-08-14T21:54:59.0669765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_ops.h 2025-08-14T21:54:59.0673344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv.h 2025-08-14T21:54:59.0677235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0691351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cpu_dispatch.h 2025-08-14T21:54:59.0694796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cuda_dispatch.h 2025-08-14T21:54:59.0698241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta.h 2025-08-14T21:54:59.0701947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta_dispatch.h 2025-08-14T21:54:59.0705733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_native.h 2025-08-14T21:54:59.0709574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_ops.h 2025-08-14T21:54:59.0713274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr.h 2025-08-14T21:54:59.0716709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0720213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cpu_dispatch.h 2025-08-14T21:54:59.0723745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cuda_dispatch.h 2025-08-14T21:54:59.0727241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_native.h 2025-08-14T21:54:59.0730891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_ops.h 2025-08-14T21:54:59.0734853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0738346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0741796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cpu_dispatch.h 2025-08-14T21:54:59.0745731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cuda_dispatch.h 2025-08-14T21:54:59.0749146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta.h 2025-08-14T21:54:59.0752576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta_dispatch.h 2025-08-14T21:54:59.0756192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_native.h 2025-08-14T21:54:59.0760112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_ops.h 2025-08-14T21:54:59.0763323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint.h 2025-08-14T21:54:59.0766731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0770402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_native.h 2025-08-14T21:54:59.0773606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_ops.h 2025-08-14T21:54:59.0777182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator.h 2025-08-14T21:54:59.0780664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward.h 2025-08-14T21:54:59.0784580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0788163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_native.h 2025-08-14T21:54:59.0791838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_ops.h 2025-08-14T21:54:59.0795578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0810471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_native.h 2025-08-14T21:54:59.0814246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_ops.h 2025-08-14T21:54:59.0817897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias.h 2025-08-14T21:54:59.0821485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0824863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy.h 2025-08-14T21:54:59.0828760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0833053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0837227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_native.h 2025-08-14T21:54:59.0841656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_ops.h 2025-08-14T21:54:59.0845816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_native.h 2025-08-14T21:54:59.0849872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_ops.h 2025-08-14T21:54:59.0853387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as.h 2025-08-14T21:54:59.0857415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0861006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_native.h 2025-08-14T21:54:59.0864601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_ops.h 2025-08-14T21:54:59.0868247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors.h 2025-08-14T21:54:59.0872153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0875904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_native.h 2025-08-14T21:54:59.0879700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_ops.h 2025-08-14T21:54:59.0883213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to.h 2025-08-14T21:54:59.0886821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0890396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_native.h 2025-08-14T21:54:59.0893898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_ops.h 2025-08-14T21:54:59.0897648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all.h 2025-08-14T21:54:59.0901577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose.h 2025-08-14T21:54:59.0905098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0908683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_native.h 2025-08-14T21:54:59.0912011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_ops.h 2025-08-14T21:54:59.0915753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0919318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.0923273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0926704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cpu_dispatch.h 2025-08-14T21:54:59.0930124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cuda_dispatch.h 2025-08-14T21:54:59.0933759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta.h 2025-08-14T21:54:59.0937145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta_dispatch.h 2025-08-14T21:54:59.0940890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_native.h 2025-08-14T21:54:59.0944311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_ops.h 2025-08-14T21:54:59.0947670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout.h 2025-08-14T21:54:59.0951465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.0954978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_native.h 2025-08-14T21:54:59.0969367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_ops.h 2025-08-14T21:54:59.0972935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax.h 2025-08-14T21:54:59.0976849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.0980268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cpu_dispatch.h 2025-08-14T21:54:59.0983853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cuda_dispatch.h 2025-08-14T21:54:59.0987549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta.h 2025-08-14T21:54:59.0991718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta_dispatch.h 2025-08-14T21:54:59.0995902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_native.h 2025-08-14T21:54:59.0999708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_ops.h 2025-08-14T21:54:59.1003820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin.h 2025-08-14T21:54:59.1007404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax.h 2025-08-14T21:54:59.1011519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1015084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cpu_dispatch.h 2025-08-14T21:54:59.1018583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cuda_dispatch.h 2025-08-14T21:54:59.1022189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta.h 2025-08-14T21:54:59.1025946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta_dispatch.h 2025-08-14T21:54:59.1029496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_native.h 2025-08-14T21:54:59.1033038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_ops.h 2025-08-14T21:54:59.1036909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1040755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cpu_dispatch.h 2025-08-14T21:54:59.1044433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cuda_dispatch.h 2025-08-14T21:54:59.1048883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta.h 2025-08-14T21:54:59.1052529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta_dispatch.h 2025-08-14T21:54:59.1056403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_native.h 2025-08-14T21:54:59.1060601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_ops.h 2025-08-14T21:54:59.1064073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and.h 2025-08-14T21:54:59.1067525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1072184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_native.h 2025-08-14T21:54:59.1075850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_ops.h 2025-08-14T21:54:59.1079192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle.h 2025-08-14T21:54:59.1083394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cpu_dispatch.h 2025-08-14T21:54:59.1087198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cuda_dispatch.h 2025-08-14T21:54:59.1091501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_native.h 2025-08-14T21:54:59.1096179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_ops.h 2025-08-14T21:54:59.1099869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any.h 2025-08-14T21:54:59.1104004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1107511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.1111121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1114726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cpu_dispatch.h 2025-08-14T21:54:59.1118386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cuda_dispatch.h 2025-08-14T21:54:59.1135914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta.h 2025-08-14T21:54:59.1139460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta_dispatch.h 2025-08-14T21:54:59.1143005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_native.h 2025-08-14T21:54:59.1402452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_ops.h 2025-08-14T21:54:59.1405909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange.h 2025-08-14T21:54:59.1409226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.1412595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cpu_dispatch.h 2025-08-14T21:54:59.1416134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cuda_dispatch.h 2025-08-14T21:54:59.1419835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_meta_dispatch.h 2025-08-14T21:54:59.1423542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_native.h 2025-08-14T21:54:59.1427101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_ops.h 2025-08-14T21:54:59.1430615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos.h 2025-08-14T21:54:59.1434092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh.h 2025-08-14T21:54:59.1438129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1442216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_native.h 2025-08-14T21:54:59.1446404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_ops.h 2025-08-14T21:54:59.1450590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1454274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_native.h 2025-08-14T21:54:59.1457704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_ops.h 2025-08-14T21:54:59.1462011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin.h 2025-08-14T21:54:59.1465231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh.h 2025-08-14T21:54:59.1468801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1472588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_native.h 2025-08-14T21:54:59.1476828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_ops.h 2025-08-14T21:54:59.1481516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1485137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_native.h 2025-08-14T21:54:59.1489312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_ops.h 2025-08-14T21:54:59.1493195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan.h 2025-08-14T21:54:59.1496496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2.h 2025-08-14T21:54:59.1500966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1504756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_native.h 2025-08-14T21:54:59.1508624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_ops.h 2025-08-14T21:54:59.1512549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh.h 2025-08-14T21:54:59.1516126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1519867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_native.h 2025-08-14T21:54:59.1523957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_ops.h 2025-08-14T21:54:59.1527534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1530974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_native.h 2025-08-14T21:54:59.1534445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_ops.h 2025-08-14T21:54:59.1538216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax.h 2025-08-14T21:54:59.1542029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1546231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cpu_dispatch.h 2025-08-14T21:54:59.1550062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cuda_dispatch.h 2025-08-14T21:54:59.1553747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta.h 2025-08-14T21:54:59.1557681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta_dispatch.h 2025-08-14T21:54:59.1561463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_native.h 2025-08-14T21:54:59.1565017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_ops.h 2025-08-14T21:54:59.1568753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin.h 2025-08-14T21:54:59.1572667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1576141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cpu_dispatch.h 2025-08-14T21:54:59.1579816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cuda_dispatch.h 2025-08-14T21:54:59.1583440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta.h 2025-08-14T21:54:59.1587074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta_dispatch.h 2025-08-14T21:54:59.1590789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_native.h 2025-08-14T21:54:59.1594307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_ops.h 2025-08-14T21:54:59.1598629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort.h 2025-08-14T21:54:59.1602333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1606098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_native.h 2025-08-14T21:54:59.1609739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_ops.h 2025-08-14T21:54:59.1613288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere.h 2025-08-14T21:54:59.1616815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1620284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_native.h 2025-08-14T21:54:59.1624266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_ops.h 2025-08-14T21:54:59.1627769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin.h 2025-08-14T21:54:59.1631266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh.h 2025-08-14T21:54:59.1635136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1639006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cpu_dispatch.h 2025-08-14T21:54:59.1643165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cuda_dispatch.h 2025-08-14T21:54:59.1646801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta.h 2025-08-14T21:54:59.1650342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta_dispatch.h 2025-08-14T21:54:59.1654557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_native.h 2025-08-14T21:54:59.1658442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_ops.h 2025-08-14T21:54:59.1662254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1665820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cpu_dispatch.h 2025-08-14T21:54:59.1669382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cuda_dispatch.h 2025-08-14T21:54:59.1672899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta.h 2025-08-14T21:54:59.1676610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta_dispatch.h 2025-08-14T21:54:59.1681054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_native.h 2025-08-14T21:54:59.1685374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_ops.h 2025-08-14T21:54:59.1689071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided.h 2025-08-14T21:54:59.1692895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1705356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy.h 2025-08-14T21:54:59.1709100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1710087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.1713751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_native.h 2025-08-14T21:54:59.1724874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_ops.h 2025-08-14T21:54:59.1728593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cpu_dispatch.h 2025-08-14T21:54:59.1732196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cuda_dispatch.h 2025-08-14T21:54:59.1736027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_meta_dispatch.h 2025-08-14T21:54:59.1740108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_native.h 2025-08-14T21:54:59.1743363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_ops.h 2025-08-14T21:54:59.1746979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter.h 2025-08-14T21:54:59.1750998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1754863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.1758661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_native.h 2025-08-14T21:54:59.1762328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_ops.h 2025-08-14T21:54:59.1766047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan.h 2025-08-14T21:54:59.1769422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2.h 2025-08-14T21:54:59.1773133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1777184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cpu_dispatch.h 2025-08-14T21:54:59.1781049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cuda_dispatch.h 2025-08-14T21:54:59.1784512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta.h 2025-08-14T21:54:59.1790346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta_dispatch.h 2025-08-14T21:54:59.1794119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_native.h 2025-08-14T21:54:59.1798240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_ops.h 2025-08-14T21:54:59.1801917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh.h 2025-08-14T21:54:59.1805825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1809254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cpu_dispatch.h 2025-08-14T21:54:59.1812978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cuda_dispatch.h 2025-08-14T21:54:59.1816768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta.h 2025-08-14T21:54:59.1820190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta_dispatch.h 2025-08-14T21:54:59.1823654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_native.h 2025-08-14T21:54:59.1827467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_ops.h 2025-08-14T21:54:59.1831378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1835029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cpu_dispatch.h 2025-08-14T21:54:59.1838531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cuda_dispatch.h 2025-08-14T21:54:59.1842129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta.h 2025-08-14T21:54:59.1845594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta_dispatch.h 2025-08-14T21:54:59.1849209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_native.h 2025-08-14T21:54:59.1852648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_ops.h 2025-08-14T21:54:59.1855913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d.h 2025-08-14T21:54:59.1859655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1863235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_native.h 2025-08-14T21:54:59.1866840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_ops.h 2025-08-14T21:54:59.1870138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d.h 2025-08-14T21:54:59.1873855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1877391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_native.h 2025-08-14T21:54:59.1881032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_ops.h 2025-08-14T21:54:59.1884766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d.h 2025-08-14T21:54:59.1888574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1892087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_native.h 2025-08-14T21:54:59.1896278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_ops.h 2025-08-14T21:54:59.1900007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d.h 2025-08-14T21:54:59.1904080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.1907637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.1911372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_native.h 2025-08-14T21:54:59.1914990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_ops.h 2025-08-14T21:54:59.1918867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d.h 2025-08-14T21:54:59.1923048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward.h 2025-08-14T21:54:59.1927359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1931984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h 2025-08-14T21:54:59.1936171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h 2025-08-14T21:54:59.1940384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta.h 2025-08-14T21:54:59.1944470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h 2025-08-14T21:54:59.1948544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_native.h 2025-08-14T21:54:59.1953603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_ops.h 2025-08-14T21:54:59.1958489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1962697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h 2025-08-14T21:54:59.1966745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h 2025-08-14T21:54:59.1970562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta.h 2025-08-14T21:54:59.1974266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h 2025-08-14T21:54:59.1978059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_native.h 2025-08-14T21:54:59.1981756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_ops.h 2025-08-14T21:54:59.1985623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d.h 2025-08-14T21:54:59.1989656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward.h 2025-08-14T21:54:59.1993472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.1997242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:54:59.2001402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:54:59.2005449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta.h 2025-08-14T21:54:59.2009219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h 2025-08-14T21:54:59.2012848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_native.h 2025-08-14T21:54:59.2023013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_ops.h 2025-08-14T21:54:59.2027151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.2030972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h 2025-08-14T21:54:59.2034418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h 2025-08-14T21:54:59.2037951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta.h 2025-08-14T21:54:59.2041725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h 2025-08-14T21:54:59.2045724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_native.h 2025-08-14T21:54:59.2049429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_ops.h 2025-08-14T21:54:59.2053207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm.h 2025-08-14T21:54:59.2056855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.2060367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cpu_dispatch.h 2025-08-14T21:54:59.2063995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cuda_dispatch.h 2025-08-14T21:54:59.2067862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta.h 2025-08-14T21:54:59.2071675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta_dispatch.h 2025-08-14T21:54:59.2075526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_native.h 2025-08-14T21:54:59.2079174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_ops.h 2025-08-14T21:54:59.2082674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window.h 2025-08-14T21:54:59.2086309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2089791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_native.h 2025-08-14T21:54:59.2093417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_ops.h 2025-08-14T21:54:59.2097052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm.h 2025-08-14T21:54:59.2100664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward.h 2025-08-14T21:54:59.2104586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h 2025-08-14T21:54:59.2108449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h 2025-08-14T21:54:59.2112579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt.h 2025-08-14T21:54:59.2116630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2120472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h 2025-08-14T21:54:59.2124970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_native.h 2025-08-14T21:54:59.2129071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h 2025-08-14T21:54:59.2132984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_native.h 2025-08-14T21:54:59.2136665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_ops.h 2025-08-14T21:54:59.2140318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce.h 2025-08-14T21:54:59.2144321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2148588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h 2025-08-14T21:54:59.2152457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_native.h 2025-08-14T21:54:59.2156281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h 2025-08-14T21:54:59.2160254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.2163798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt.h 2025-08-14T21:54:59.2167550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h 2025-08-14T21:54:59.2171447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_native.h 2025-08-14T21:54:59.2175079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_ops.h 2025-08-14T21:54:59.2179060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats.h 2025-08-14T21:54:59.2183008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2186760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h 2025-08-14T21:54:59.2190602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_native.h 2025-08-14T21:54:59.2194880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_ops.h 2025-08-14T21:54:59.2198789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h 2025-08-14T21:54:59.2203517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2207922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h 2025-08-14T21:54:59.2211749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h 2025-08-14T21:54:59.2215384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h 2025-08-14T21:54:59.2219683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_native.h 2025-08-14T21:54:59.2223472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_ops.h 2025-08-14T21:54:59.2227089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats.h 2025-08-14T21:54:59.2231012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2234785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h 2025-08-14T21:54:59.2238486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_native.h 2025-08-14T21:54:59.2242797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_ops.h 2025-08-14T21:54:59.2246700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats.h 2025-08-14T21:54:59.2250986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2254568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h 2025-08-14T21:54:59.2258975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h 2025-08-14T21:54:59.2262621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_native.h 2025-08-14T21:54:59.2267926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_ops.h 2025-08-14T21:54:59.2273107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli.h 2025-08-14T21:54:59.2278505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.2283794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.2288238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cpu_dispatch.h 2025-08-14T21:54:59.2292922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cuda_dispatch.h 2025-08-14T21:54:59.7467022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_meta_dispatch.h 2025-08-14T21:54:59.7470413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_native.h 2025-08-14T21:54:59.7474195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_ops.h 2025-08-14T21:54:59.7477764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear.h 2025-08-14T21:54:59.7481909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.7485761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_native.h 2025-08-14T21:54:59.7489227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_ops.h 2025-08-14T21:54:59.7492722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy.h 2025-08-14T21:54:59.7496319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward.h 2025-08-14T21:54:59.7500081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h 2025-08-14T21:54:59.7503846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h 2025-08-14T21:54:59.7507848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_native.h 2025-08-14T21:54:59.7511478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h 2025-08-14T21:54:59.7515076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h 2025-08-14T21:54:59.7518794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h 2025-08-14T21:54:59.7522427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_native.h 2025-08-14T21:54:59.7526781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_ops.h 2025-08-14T21:54:59.7536424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits.h 2025-08-14T21:54:59.7537304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.7539868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h 2025-08-14T21:54:59.7543624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h 2025-08-14T21:54:59.7547188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount.h 2025-08-14T21:54:59.7550619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.7554144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cpu_dispatch.h 2025-08-14T21:54:59.7558129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cuda_dispatch.h 2025-08-14T21:54:59.7561461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_native.h 2025-08-14T21:54:59.7564976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_ops.h 2025-08-14T21:54:59.7568583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial.h 2025-08-14T21:54:59.7572436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.7576675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cpu_dispatch.h 2025-08-14T21:54:59.7825492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cuda_dispatch.h 2025-08-14T21:54:59.7829212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_native.h 2025-08-14T21:54:59.7832756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_ops.h 2025-08-14T21:54:59.7836324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and.h 2025-08-14T21:54:59.7840188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.7844034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.7847944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h 2025-08-14T21:54:59.7851708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h 2025-08-14T21:54:59.7855208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta.h 2025-08-14T21:54:59.7858777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta_dispatch.h 2025-08-14T21:54:59.7862302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_native.h 2025-08-14T21:54:59.7866251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_ops.h 2025-08-14T21:54:59.7869887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift.h 2025-08-14T21:54:59.7874064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.7877823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.7881516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h 2025-08-14T21:54:59.7885554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h 2025-08-14T21:54:59.7889171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta.h 2025-08-14T21:54:59.7892897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h 2025-08-14T21:54:59.7896738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_native.h 2025-08-14T21:54:59.7900654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_ops.h 2025-08-14T21:54:59.7904322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not.h 2025-08-14T21:54:59.7908137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.7911718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h 2025-08-14T21:54:59.7915379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h 2025-08-14T21:54:59.7919849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta.h 2025-08-14T21:54:59.7923472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta_dispatch.h 2025-08-14T21:54:59.7927127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_native.h 2025-08-14T21:54:59.7931008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_ops.h 2025-08-14T21:54:59.7934582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or.h 2025-08-14T21:54:59.7938597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.7942289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.7946486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h 2025-08-14T21:54:59.7950221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h 2025-08-14T21:54:59.7953906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta.h 2025-08-14T21:54:59.7957629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta_dispatch.h 2025-08-14T21:54:59.7961404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_native.h 2025-08-14T21:54:59.7964933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_ops.h 2025-08-14T21:54:59.7968428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift.h 2025-08-14T21:54:59.7972473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.7976159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.7979746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h 2025-08-14T21:54:59.7983364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h 2025-08-14T21:54:59.7987279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta.h 2025-08-14T21:54:59.7991047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h 2025-08-14T21:54:59.7994948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_native.h 2025-08-14T21:54:59.7998658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_ops.h 2025-08-14T21:54:59.8002334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor.h 2025-08-14T21:54:59.8006200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.8010458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.8014796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h 2025-08-14T21:54:59.8019027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h 2025-08-14T21:54:59.8022714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta.h 2025-08-14T21:54:59.8026324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h 2025-08-14T21:54:59.8030099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_native.h 2025-08-14T21:54:59.8033940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_ops.h 2025-08-14T21:54:59.8037506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window.h 2025-08-14T21:54:59.8041374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.8045183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_native.h 2025-08-14T21:54:59.8048914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_ops.h 2025-08-14T21:54:59.8052692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag.h 2025-08-14T21:54:59.8056771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.8060422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_native.h 2025-08-14T21:54:59.8063883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_ops.h 2025-08-14T21:54:59.8067927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm.h 2025-08-14T21:54:59.8071605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.8075286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cpu_dispatch.h 2025-08-14T21:54:59.8079037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cuda_dispatch.h 2025-08-14T21:54:59.8082548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta.h 2025-08-14T21:54:59.8086234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta_dispatch.h 2025-08-14T21:54:59.8090006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_native.h 2025-08-14T21:54:59.8093383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_ops.h 2025-08-14T21:54:59.8096894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors.h 2025-08-14T21:54:59.8100791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.8104342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_native.h 2025-08-14T21:54:59.8107951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_ops.h 2025-08-14T21:54:59.8111918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to.h 2025-08-14T21:54:59.8115770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.8120004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_native.h 2025-08-14T21:54:59.8124072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_ops.h 2025-08-14T21:54:59.8128356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize.h 2025-08-14T21:54:59.8132374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.8136443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cpu_dispatch.h 2025-08-14T21:54:59.8140142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cuda_dispatch.h 2025-08-14T21:54:59.8144482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_native.h 2025-08-14T21:54:59.8148454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_ops.h 2025-08-14T21:54:59.8151812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast.h 2025-08-14T21:54:59.8156201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.8160338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_native.h 2025-08-14T21:54:59.8163830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_ops.h 2025-08-14T21:54:59.8167425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod.h 2025-08-14T21:54:59.8171190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.8174749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_native.h 2025-08-14T21:54:59.8178738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_ops.h 2025-08-14T21:54:59.8182553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat.h 2025-08-14T21:54:59.8186430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:54:59.8190237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h 2025-08-14T21:54:59.8193874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cpu_dispatch.h 2025-08-14T21:54:59.8197343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cuda_dispatch.h 2025-08-14T21:54:59.8201003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta.h 2025-08-14T21:54:59.8204513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta_dispatch.h 2025-08-14T21:54:59.8207965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_native.h 2025-08-14T21:54:59.8211766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_ops.h 2025-08-14T21:54:59.8215131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy.h 2025-08-14T21:54:59.8218761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h 2025-08-14T21:54:59.8222328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cpu_dispatch.h 2025-08-14T21:54:59.8226317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cuda_dispatch.h 2025-08-14T21:54:59.8230036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_meta_dispatch.h 2025-08-14T21:55:00.3383561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_native.h 2025-08-14T21:55:00.3387184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_ops.h 2025-08-14T21:55:00.3391092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices.h 2025-08-14T21:55:00.3394915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3398785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy.h 2025-08-14T21:55:00.3402684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.3406524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3410914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_native.h 2025-08-14T21:55:00.3415088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_ops.h 2025-08-14T21:55:00.3419328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_native.h 2025-08-14T21:55:00.3422870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_ops.h 2025-08-14T21:55:00.3426545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist.h 2025-08-14T21:55:00.3430207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3433757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_native.h 2025-08-14T21:55:00.3437812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_ops.h 2025-08-14T21:55:00.3441472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil.h 2025-08-14T21:55:00.3445414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.3448955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cpu_dispatch.h 2025-08-14T21:55:00.3452483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cuda_dispatch.h 2025-08-14T21:55:00.3456230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta.h 2025-08-14T21:55:00.3459974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta_dispatch.h 2025-08-14T21:55:00.3463510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_native.h 2025-08-14T21:55:00.3466920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_ops.h 2025-08-14T21:55:00.3470552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu.h 2025-08-14T21:55:00.3474151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3477511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_native.h 2025-08-14T21:55:00.3481491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_ops.h 2025-08-14T21:55:00.3484892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul.h 2025-08-14T21:55:00.3497414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3498157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_native.h 2025-08-14T21:55:00.3498817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_ops.h 2025-08-14T21:55:00.3501650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf.h 2025-08-14T21:55:00.3505283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3508540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_native.h 2025-08-14T21:55:00.3511851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_ops.h 2025-08-14T21:55:00.3515404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle.h 2025-08-14T21:55:00.3519350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3522815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h 2025-08-14T21:55:00.3526495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h 2025-08-14T21:55:00.3530139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_native.h 2025-08-14T21:55:00.3533751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_ops.h 2025-08-14T21:55:00.3537258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky.h 2025-08-14T21:55:00.3540583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cpu_dispatch.h 2025-08-14T21:55:00.3544122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cuda_dispatch.h 2025-08-14T21:55:00.3548349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse.h 2025-08-14T21:55:00.3551663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h 2025-08-14T21:55:00.3555429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h 2025-08-14T21:55:00.3559306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_native.h 2025-08-14T21:55:00.3562873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_ops.h 2025-08-14T21:55:00.3566536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_native.h 2025-08-14T21:55:00.3570080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_ops.h 2025-08-14T21:55:00.3574050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve.h 2025-08-14T21:55:00.3577829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3592263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_native.h 2025-08-14T21:55:00.3592981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_ops.h 2025-08-14T21:55:00.3593620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized.h 2025-08-14T21:55:00.3594418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3596757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_native.h 2025-08-14T21:55:00.3600461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_ops.h 2025-08-14T21:55:00.3604025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk.h 2025-08-14T21:55:00.3607753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3611609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_native.h 2025-08-14T21:55:00.3615034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_ops.h 2025-08-14T21:55:00.3618485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp.h 2025-08-14T21:55:00.3622033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.3625498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cpu_dispatch.h 2025-08-14T21:55:00.3629028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cuda_dispatch.h 2025-08-14T21:55:00.3632515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max.h 2025-08-14T21:55:00.3636490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.3640803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cpu_dispatch.h 2025-08-14T21:55:00.3644624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cuda_dispatch.h 2025-08-14T21:55:00.3648165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta.h 2025-08-14T21:55:00.3651734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta_dispatch.h 2025-08-14T21:55:00.3655275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_native.h 2025-08-14T21:55:00.3658779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_ops.h 2025-08-14T21:55:00.3662368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta.h 2025-08-14T21:55:00.3665968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta_dispatch.h 2025-08-14T21:55:00.3670046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min.h 2025-08-14T21:55:00.3673876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.3677501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cpu_dispatch.h 2025-08-14T21:55:00.3681251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cuda_dispatch.h 2025-08-14T21:55:00.3685305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta.h 2025-08-14T21:55:00.3689334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta_dispatch.h 2025-08-14T21:55:00.3692967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_native.h 2025-08-14T21:55:00.3696534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_ops.h 2025-08-14T21:55:00.3700008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_native.h 2025-08-14T21:55:00.3703463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_ops.h 2025-08-14T21:55:00.3707229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip.h 2025-08-14T21:55:00.3710778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3714266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_native.h 2025-08-14T21:55:00.3718026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_ops.h 2025-08-14T21:55:00.3721313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone.h 2025-08-14T21:55:00.3725073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3728375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_native.h 2025-08-14T21:55:00.3731794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_ops.h 2025-08-14T21:55:00.3735375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce.h 2025-08-14T21:55:00.3738872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3742602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_native.h 2025-08-14T21:55:00.3746071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_ops.h 2025-08-14T21:55:00.3749714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im.h 2025-08-14T21:55:00.3753037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cpu_dispatch.h 2025-08-14T21:55:00.3756794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cuda_dispatch.h 2025-08-14T21:55:00.3760500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_native.h 2025-08-14T21:55:00.3764055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_ops.h 2025-08-14T21:55:00.3767639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack.h 2025-08-14T21:55:00.3771445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3775137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_native.h 2025-08-14T21:55:00.3778919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_ops.h 2025-08-14T21:55:00.3782567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices.h 2025-08-14T21:55:00.3786239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3790060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy.h 2025-08-14T21:55:00.3795013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.3798810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3802748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_native.h 2025-08-14T21:55:00.3806520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_ops.h 2025-08-14T21:55:00.3810094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_native.h 2025-08-14T21:55:00.3813933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_ops.h 2025-08-14T21:55:00.3817552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations.h 2025-08-14T21:55:00.3821244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3824910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_native.h 2025-08-14T21:55:00.3828815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_ops.h 2025-08-14T21:55:00.3832396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex.h 2025-08-14T21:55:00.3835943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3839482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cpu_dispatch.h 2025-08-14T21:55:00.3844117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cuda_dispatch.h 2025-08-14T21:55:00.3847801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_native.h 2025-08-14T21:55:00.3851325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_ops.h 2025-08-14T21:55:00.3854980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat.h 2025-08-14T21:55:00.3858591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate.h 2025-08-14T21:55:00.3862245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3866055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_native.h 2025-08-14T21:55:00.3869942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_ops.h 2025-08-14T21:55:00.3873495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3877100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_native.h 2025-08-14T21:55:00.3880710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_ops.h 2025-08-14T21:55:00.3884723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj.h 2025-08-14T21:55:00.3888032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3891948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_native.h 2025-08-14T21:55:00.3895571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_ops.h 2025-08-14T21:55:00.3899729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical.h 2025-08-14T21:55:00.3903582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.3907406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.3911093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cpu_dispatch.h 2025-08-14T21:55:00.3914976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cuda_dispatch.h 2025-08-14T21:55:00.3918944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_native.h 2025-08-14T21:55:00.3923041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_ops.h 2025-08-14T21:55:00.3926885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd.h 2025-08-14T21:55:00.3930606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6094352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_native.h 2025-08-14T21:55:00.6098024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_ops.h 2025-08-14T21:55:00.6101868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous.h 2025-08-14T21:55:00.6114055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6117288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_native.h 2025-08-14T21:55:00.6120858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_ops.h 2025-08-14T21:55:00.6124442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d.h 2025-08-14T21:55:00.6127907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6131657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_native.h 2025-08-14T21:55:00.6135353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_ops.h 2025-08-14T21:55:00.6138860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d.h 2025-08-14T21:55:00.6142305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6146217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_native.h 2025-08-14T21:55:00.6149711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_ops.h 2025-08-14T21:55:00.6153286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d.h 2025-08-14T21:55:00.6157930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6160841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_native.h 2025-08-14T21:55:00.6164377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_ops.h 2025-08-14T21:55:00.6167798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution.h 2025-08-14T21:55:00.6171969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward.h 2025-08-14T21:55:00.6175687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6179354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h 2025-08-14T21:55:00.6183505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_native.h 2025-08-14T21:55:00.6187316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_ops.h 2025-08-14T21:55:00.6191196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable.h 2025-08-14T21:55:00.6195060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6198897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_native.h 2025-08-14T21:55:00.6202711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_ops.h 2025-08-14T21:55:00.6206992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6210748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_native.h 2025-08-14T21:55:00.6214737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_ops.h 2025-08-14T21:55:00.6218554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable.h 2025-08-14T21:55:00.6222498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6226328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_native.h 2025-08-14T21:55:00.6230198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_ops.h 2025-08-14T21:55:00.6234465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d.h 2025-08-14T21:55:00.6238544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6241903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h 2025-08-14T21:55:00.6245481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_native.h 2025-08-14T21:55:00.6249181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_ops.h 2025-08-14T21:55:00.6252812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc.h 2025-08-14T21:55:00.6256278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward.h 2025-08-14T21:55:00.6260463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6264359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_native.h 2025-08-14T21:55:00.6268473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_ops.h 2025-08-14T21:55:00.6272623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6276214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_native.h 2025-08-14T21:55:00.6280193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_ops.h 2025-08-14T21:55:00.6283936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d.h 2025-08-14T21:55:00.6287760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6291554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_native.h 2025-08-14T21:55:00.6295347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_ops.h 2025-08-14T21:55:00.6299062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d.h 2025-08-14T21:55:00.6303034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6306765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_native.h 2025-08-14T21:55:00.6310624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_ops.h 2025-08-14T21:55:00.6314410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d.h 2025-08-14T21:55:00.6318271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6322040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_native.h 2025-08-14T21:55:00.6325756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_ops.h 2025-08-14T21:55:00.6329479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy.h 2025-08-14T21:55:00.6332781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign.h 2025-08-14T21:55:00.6336390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.6340101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6343821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cpu_dispatch.h 2025-08-14T21:55:00.6347505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cuda_dispatch.h 2025-08-14T21:55:00.6351093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta.h 2025-08-14T21:55:00.6354755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta_dispatch.h 2025-08-14T21:55:00.6359282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_native.h 2025-08-14T21:55:00.6363213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_ops.h 2025-08-14T21:55:00.6367550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.6371527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6375088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_meta_dispatch.h 2025-08-14T21:55:00.6378709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_native.h 2025-08-14T21:55:00.6382248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_ops.h 2025-08-14T21:55:00.6385636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse.h 2025-08-14T21:55:00.6390015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6393860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h 2025-08-14T21:55:00.6397552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_native.h 2025-08-14T21:55:00.6401511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h 2025-08-14T21:55:00.6405877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef.h 2025-08-14T21:55:00.6409484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6413154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_native.h 2025-08-14T21:55:00.6416917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_ops.h 2025-08-14T21:55:00.6420478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos.h 2025-08-14T21:55:00.6423923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh.h 2025-08-14T21:55:00.6427576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.6431125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cpu_dispatch.h 2025-08-14T21:55:00.6435010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cuda_dispatch.h 2025-08-14T21:55:00.6439383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta.h 2025-08-14T21:55:00.6443489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta_dispatch.h 2025-08-14T21:55:00.6447614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_native.h 2025-08-14T21:55:00.6451168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_ops.h 2025-08-14T21:55:00.6454759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss.h 2025-08-14T21:55:00.6458482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6462065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_native.h 2025-08-14T21:55:00.6465789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_ops.h 2025-08-14T21:55:00.6470072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity.h 2025-08-14T21:55:00.6474325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6478075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_native.h 2025-08-14T21:55:00.6481977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_ops.h 2025-08-14T21:55:00.6486001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.6489481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cpu_dispatch.h 2025-08-14T21:55:00.6493015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cuda_dispatch.h 2025-08-14T21:55:00.6496691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta.h 2025-08-14T21:55:00.6500299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta_dispatch.h 2025-08-14T21:55:00.6503896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_native.h 2025-08-14T21:55:00.6507377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_ops.h 2025-08-14T21:55:00.6510822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero.h 2025-08-14T21:55:00.6514550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6518192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h 2025-08-14T21:55:00.6521905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h 2025-08-14T21:55:00.6525661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_native.h 2025-08-14T21:55:00.6529642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_ops.h 2025-08-14T21:55:00.6533362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov.h 2025-08-14T21:55:00.6536842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6540681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_native.h 2025-08-14T21:55:00.6544413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_ops.h 2025-08-14T21:55:00.6547697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross.h 2025-08-14T21:55:00.6551167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6554848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss.h 2025-08-14T21:55:00.6559180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6562736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_native.h 2025-08-14T21:55:00.6566286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_ops.h 2025-08-14T21:55:00.6569938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_native.h 2025-08-14T21:55:00.6574054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_ops.h 2025-08-14T21:55:00.6577715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices.h 2025-08-14T21:55:00.6581520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6585084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy.h 2025-08-14T21:55:00.6589293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:00.6592969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:00.6596704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_native.h 2025-08-14T21:55:00.6600643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_ops.h 2025-08-14T21:55:00.6604494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_native.h 2025-08-14T21:55:00.6608180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_ops.h 2025-08-14T21:55:00.6611833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss.h 2025-08-14T21:55:00.6615356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:00.6619175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_native.h 2025-08-14T21:55:00.6622792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_ops.h 2025-08-14T21:55:00.6626431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator.h 2025-08-14T21:55:01.0196825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h 2025-08-14T21:55:01.0200898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0204433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h 2025-08-14T21:55:01.0208431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h 2025-08-14T21:55:01.0212282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h 2025-08-14T21:55:01.0216776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0220832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h 2025-08-14T21:55:01.0224720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h 2025-08-14T21:55:01.0228721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h 2025-08-14T21:55:01.0233089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm.h 2025-08-14T21:55:01.0237178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward.h 2025-08-14T21:55:01.0241514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0245607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:55:01.0250197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h 2025-08-14T21:55:01.0254763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h 2025-08-14T21:55:01.0259214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h 2025-08-14T21:55:01.0263875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_native.h 2025-08-14T21:55:01.0273971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_ops.h 2025-08-14T21:55:01.0275003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution.h 2025-08-14T21:55:01.0279353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu.h 2025-08-14T21:55:01.0283923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0287974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h 2025-08-14T21:55:01.0291645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h 2025-08-14T21:55:01.0295883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h 2025-08-14T21:55:01.0299579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h 2025-08-14T21:55:01.0303486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_native.h 2025-08-14T21:55:01.0307491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_ops.h 2025-08-14T21:55:01.0311257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu.h 2025-08-14T21:55:01.0315359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0319544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h 2025-08-14T21:55:01.0323875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_native.h 2025-08-14T21:55:01.0327599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_ops.h 2025-08-14T21:55:01.0331935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose.h 2025-08-14T21:55:01.0338186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0343663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h 2025-08-14T21:55:01.0347689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_native.h 2025-08-14T21:55:01.0351546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h 2025-08-14T21:55:01.0355563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler.h 2025-08-14T21:55:01.0359308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward.h 2025-08-14T21:55:01.0363321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0367575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h 2025-08-14T21:55:01.0371462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h 2025-08-14T21:55:01.0375519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h 2025-08-14T21:55:01.0379289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0383372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h 2025-08-14T21:55:01.0387131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_native.h 2025-08-14T21:55:01.0391232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_ops.h 2025-08-14T21:55:01.0395222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable.h 2025-08-14T21:55:01.0399824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0403527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_native.h 2025-08-14T21:55:01.0407215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_ops.h 2025-08-14T21:55:01.0410859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax.h 2025-08-14T21:55:01.0414943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward.h 2025-08-14T21:55:01.0418787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0422762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_native.h 2025-08-14T21:55:01.0426394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_ops.h 2025-08-14T21:55:01.0430729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0435034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0438744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_native.h 2025-08-14T21:55:01.0442461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_ops.h 2025-08-14T21:55:01.0446284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin.h 2025-08-14T21:55:01.0449966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0454004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0457516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_native.h 2025-08-14T21:55:01.0462042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_ops.h 2025-08-14T21:55:01.0465680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod.h 2025-08-14T21:55:01.0469227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward.h 2025-08-14T21:55:01.0473734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0477411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_native.h 2025-08-14T21:55:01.0481221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_ops.h 2025-08-14T21:55:01.0485574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0490156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0494499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cpu_dispatch.h 2025-08-14T21:55:01.0498631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cuda_dispatch.h 2025-08-14T21:55:01.0502173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta.h 2025-08-14T21:55:01.0505842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta_dispatch.h 2025-08-14T21:55:01.0510017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_native.h 2025-08-14T21:55:01.0513721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_ops.h 2025-08-14T21:55:01.0517326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum.h 2025-08-14T21:55:01.0521291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0524880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0529046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cpu_dispatch.h 2025-08-14T21:55:01.0532988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cuda_dispatch.h 2025-08-14T21:55:01.0536605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta.h 2025-08-14T21:55:01.0540655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta_dispatch.h 2025-08-14T21:55:01.0544608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_native.h 2025-08-14T21:55:01.0549109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_ops.h 2025-08-14T21:55:01.0553650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid.h 2025-08-14T21:55:01.0557662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0562362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_native.h 2025-08-14T21:55:01.0566312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_ops.h 2025-08-14T21:55:01.0569924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data.h 2025-08-14T21:55:01.0573401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0577000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_native.h 2025-08-14T21:55:01.0580486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_ops.h 2025-08-14T21:55:01.0584237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad.h 2025-08-14T21:55:01.0587891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0591277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_native.h 2025-08-14T21:55:01.0594816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_ops.h 2025-08-14T21:55:01.0598510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim.h 2025-08-14T21:55:01.0602477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0606083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_native.h 2025-08-14T21:55:01.0610557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_ops.h 2025-08-14T21:55:01.0614182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize.h 2025-08-14T21:55:01.0617981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0621517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cpu_dispatch.h 2025-08-14T21:55:01.0625098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cuda_dispatch.h 2025-08-14T21:55:01.0628744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_native.h 2025-08-14T21:55:01.0632586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_ops.h 2025-08-14T21:55:01.0636676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det.h 2025-08-14T21:55:01.0640074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach.h 2025-08-14T21:55:01.0643815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0647239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy.h 2025-08-14T21:55:01.0651479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0655462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0690647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_native.h 2025-08-14T21:55:01.0694246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_ops.h 2025-08-14T21:55:01.0698010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_native.h 2025-08-14T21:55:01.0702480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_ops.h 2025-08-14T21:55:01.0706599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0710181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_native.h 2025-08-14T21:55:01.0713783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_ops.h 2025-08-14T21:55:01.0717124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag.h 2025-08-14T21:55:01.0720588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat.h 2025-08-14T21:55:01.0724285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0728238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_native.h 2025-08-14T21:55:01.0731981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_ops.h 2025-08-14T21:55:01.0735757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal.h 2025-08-14T21:55:01.0739168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward.h 2025-08-14T21:55:01.0742881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0746534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_native.h 2025-08-14T21:55:01.0750792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_ops.h 2025-08-14T21:55:01.0754705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0758879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0762476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy.h 2025-08-14T21:55:01.0766436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0770240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0773930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_native.h 2025-08-14T21:55:01.0778016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_ops.h 2025-08-14T21:55:01.0781925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_native.h 2025-08-14T21:55:01.0785904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_ops.h 2025-08-14T21:55:01.0790173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter.h 2025-08-14T21:55:01.0794378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0798658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0802731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_native.h 2025-08-14T21:55:01.0806486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_ops.h 2025-08-14T21:55:01.0810465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0814049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed.h 2025-08-14T21:55:01.0817939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0821872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0825828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_native.h 2025-08-14T21:55:01.0829827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_ops.h 2025-08-14T21:55:01.0833457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_native.h 2025-08-14T21:55:01.0837730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_ops.h 2025-08-14T21:55:01.0840904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff.h 2025-08-14T21:55:01.0844514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0847987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_native.h 2025-08-14T21:55:01.0851719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_ops.h 2025-08-14T21:55:01.0855132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma.h 2025-08-14T21:55:01.0858904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0862556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cpu_dispatch.h 2025-08-14T21:55:01.0866326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cuda_dispatch.h 2025-08-14T21:55:01.0869923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta.h 2025-08-14T21:55:01.0873661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta_dispatch.h 2025-08-14T21:55:01.0877869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_native.h 2025-08-14T21:55:01.0881687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_ops.h 2025-08-14T21:55:01.0885681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist.h 2025-08-14T21:55:01.0889297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0892851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_native.h 2025-08-14T21:55:01.0896308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_ops.h 2025-08-14T21:55:01.0899700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div.h 2025-08-14T21:55:01.0902996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide.h 2025-08-14T21:55:01.0906695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0910744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_native.h 2025-08-14T21:55:01.0914299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_ops.h 2025-08-14T21:55:01.0918299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.0922046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0925748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cpu_dispatch.h 2025-08-14T21:55:01.0929138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cuda_dispatch.h 2025-08-14T21:55:01.0933005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta.h 2025-08-14T21:55:01.0936763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta_dispatch.h 2025-08-14T21:55:01.0940184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_native.h 2025-08-14T21:55:01.0943783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_ops.h 2025-08-14T21:55:01.0947442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot.h 2025-08-14T21:55:01.0951058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.0954661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cpu_dispatch.h 2025-08-14T21:55:01.0958763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cuda_dispatch.h 2025-08-14T21:55:01.0962630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_native.h 2025-08-14T21:55:01.0966567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_ops.h 2025-08-14T21:55:01.0969922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout.h 2025-08-14T21:55:01.0973933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0977571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_native.h 2025-08-14T21:55:01.0981268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_ops.h 2025-08-14T21:55:01.0984802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit.h 2025-08-14T21:55:01.0988807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.0992204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_native.h 2025-08-14T21:55:01.0995750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_ops.h 2025-08-14T21:55:01.0999921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack.h 2025-08-14T21:55:01.1003460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1007092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_native.h 2025-08-14T21:55:01.1010529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_ops.h 2025-08-14T21:55:01.1014269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum.h 2025-08-14T21:55:01.1017988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1021293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_native.h 2025-08-14T21:55:01.1024909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_ops.h 2025-08-14T21:55:01.1028371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu.h 2025-08-14T21:55:01.1031702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward.h 2025-08-14T21:55:01.1036104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1039916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cpu_dispatch.h 2025-08-14T21:55:01.1043447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cuda_dispatch.h 2025-08-14T21:55:01.1047362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta.h 2025-08-14T21:55:01.1050888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta_dispatch.h 2025-08-14T21:55:01.1054514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_native.h 2025-08-14T21:55:01.1058267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_ops.h 2025-08-14T21:55:01.1062363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1065983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cpu_dispatch.h 2025-08-14T21:55:01.1069411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cuda_dispatch.h 2025-08-14T21:55:01.1072728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta.h 2025-08-14T21:55:01.1076016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta_dispatch.h 2025-08-14T21:55:01.1079549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_native.h 2025-08-14T21:55:01.1083002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_ops.h 2025-08-14T21:55:01.1086288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding.h 2025-08-14T21:55:01.1090238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward.h 2025-08-14T21:55:01.1093858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1097469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_native.h 2025-08-14T21:55:01.1101573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_ops.h 2025-08-14T21:55:01.1105601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag.h 2025-08-14T21:55:01.1109493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1113242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_native.h 2025-08-14T21:55:01.1117043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_ops.h 2025-08-14T21:55:01.1121180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1124970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward.h 2025-08-14T21:55:01.1128892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1132721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h 2025-08-14T21:55:01.1136453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h 2025-08-14T21:55:01.1140146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_native.h 2025-08-14T21:55:01.1143846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_ops.h 2025-08-14T21:55:01.1147562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_native.h 2025-08-14T21:55:01.1151222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_ops.h 2025-08-14T21:55:01.1155108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm.h 2025-08-14T21:55:01.1159099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1162955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h 2025-08-14T21:55:01.1166666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h 2025-08-14T21:55:01.1170596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h 2025-08-14T21:55:01.1174279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_native.h 2025-08-14T21:55:01.1178040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_ops.h 2025-08-14T21:55:01.1181804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward.h 2025-08-14T21:55:01.1185991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1189830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_native.h 2025-08-14T21:55:01.1193663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_ops.h 2025-08-14T21:55:01.1197803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty.h 2025-08-14T21:55:01.1201425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1205132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1209039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cpu_dispatch.h 2025-08-14T21:55:01.1213222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cuda_dispatch.h 2025-08-14T21:55:01.1216870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like.h 2025-08-14T21:55:01.1220821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1224660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_native.h 2025-08-14T21:55:01.1228373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_ops.h 2025-08-14T21:55:01.1232101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_meta_dispatch.h 2025-08-14T21:55:01.1236069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_native.h 2025-08-14T21:55:01.1240446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_ops.h 2025-08-14T21:55:01.1244330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted.h 2025-08-14T21:55:01.1248134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1251821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_native.h 2025-08-14T21:55:01.1255865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_ops.h 2025-08-14T21:55:01.1259525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized.h 2025-08-14T21:55:01.1263298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1267475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_native.h 2025-08-14T21:55:01.1270957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_ops.h 2025-08-14T21:55:01.1275026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided.h 2025-08-14T21:55:01.1278990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1282721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cpu_dispatch.h 2025-08-14T21:55:01.1286377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cuda_dispatch.h 2025-08-14T21:55:01.1290170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_meta_dispatch.h 2025-08-14T21:55:01.1294105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_native.h 2025-08-14T21:55:01.1297788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_ops.h 2025-08-14T21:55:01.1301454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq.h 2025-08-14T21:55:01.1305024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal.h 2025-08-14T21:55:01.1308478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cpu_dispatch.h 2025-08-14T21:55:01.1312170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cuda_dispatch.h 2025-08-14T21:55:01.1316248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_native.h 2025-08-14T21:55:01.1320107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_ops.h 2025-08-14T21:55:01.1324230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1327698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cpu_dispatch.h 2025-08-14T21:55:01.1331284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cuda_dispatch.h 2025-08-14T21:55:01.1334871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta.h 2025-08-14T21:55:01.1338524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta_dispatch.h 2025-08-14T21:55:01.1341972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_native.h 2025-08-14T21:55:01.1345370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_ops.h 2025-08-14T21:55:01.1348701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf.h 2025-08-14T21:55:01.1352053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc.h 2025-08-14T21:55:01.1355892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1497377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cpu_dispatch.h 2025-08-14T21:55:01.1500845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cuda_dispatch.h 2025-08-14T21:55:01.1504459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta.h 2025-08-14T21:55:01.1508141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta_dispatch.h 2025-08-14T21:55:01.1511757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_native.h 2025-08-14T21:55:01.1515239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_ops.h 2025-08-14T21:55:01.1518654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv.h 2025-08-14T21:55:01.1522432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1526089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cpu_dispatch.h 2025-08-14T21:55:01.1529971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cuda_dispatch.h 2025-08-14T21:55:01.1533568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta.h 2025-08-14T21:55:01.1537162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta_dispatch.h 2025-08-14T21:55:01.1540611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_native.h 2025-08-14T21:55:01.1544202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_ops.h 2025-08-14T21:55:01.1548193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1552170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cpu_dispatch.h 2025-08-14T21:55:01.1555712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cuda_dispatch.h 2025-08-14T21:55:01.1559626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta.h 2025-08-14T21:55:01.1562924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta_dispatch.h 2025-08-14T21:55:01.1566482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_native.h 2025-08-14T21:55:01.1570091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_ops.h 2025-08-14T21:55:01.1573517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp.h 2025-08-14T21:55:01.1577017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2.h 2025-08-14T21:55:01.1580544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1584599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cpu_dispatch.h 2025-08-14T21:55:01.1588193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cuda_dispatch.h 2025-08-14T21:55:01.1591758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta.h 2025-08-14T21:55:01.1595290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta_dispatch.h 2025-08-14T21:55:01.1599026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_native.h 2025-08-14T21:55:01.1602586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_ops.h 2025-08-14T21:55:01.1606085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand.h 2025-08-14T21:55:01.1609410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as.h 2025-08-14T21:55:01.1613338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1617398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_native.h 2025-08-14T21:55:01.1620780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_ops.h 2025-08-14T21:55:01.1624470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1627986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy.h 2025-08-14T21:55:01.1632887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1636939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1640636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_native.h 2025-08-14T21:55:01.1644382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_ops.h 2025-08-14T21:55:01.1648082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_native.h 2025-08-14T21:55:01.1651810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_ops.h 2025-08-14T21:55:01.1655489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1.h 2025-08-14T21:55:01.1659450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1663228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cpu_dispatch.h 2025-08-14T21:55:01.1666854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cuda_dispatch.h 2025-08-14T21:55:01.1670471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta.h 2025-08-14T21:55:01.1674105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta_dispatch.h 2025-08-14T21:55:01.1677718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_native.h 2025-08-14T21:55:01.1681463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_ops.h 2025-08-14T21:55:01.1685099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential.h 2025-08-14T21:55:01.1688886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1692701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cpu_dispatch.h 2025-08-14T21:55:01.1696238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cuda_dispatch.h 2025-08-14T21:55:01.1699843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_meta_dispatch.h 2025-08-14T21:55:01.1703838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_native.h 2025-08-14T21:55:01.1707618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_ops.h 2025-08-14T21:55:01.1711526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.1715264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cpu_dispatch.h 2025-08-14T21:55:01.1718835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cuda_dispatch.h 2025-08-14T21:55:01.1722310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta.h 2025-08-14T21:55:01.1725903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta_dispatch.h 2025-08-14T21:55:01.1729525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_native.h 2025-08-14T21:55:01.1733008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_ops.h 2025-08-14T21:55:01.1736253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye.h 2025-08-14T21:55:01.1739726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1743722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cpu_dispatch.h 2025-08-14T21:55:01.1747300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cuda_dispatch.h 2025-08-14T21:55:01.1750788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_meta_dispatch.h 2025-08-14T21:55:01.1754241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_native.h 2025-08-14T21:55:01.1757727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_ops.h 2025-08-14T21:55:01.1761352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine.h 2025-08-14T21:55:01.1765349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h 2025-08-14T21:55:01.1769275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h 2025-08-14T21:55:01.1773270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1777188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h 2025-08-14T21:55:01.1781357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h 2025-08-14T21:55:01.1936201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1940081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h 2025-08-14T21:55:01.1944046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h 2025-08-14T21:55:01.1947773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h 2025-08-14T21:55:01.1951798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h 2025-08-14T21:55:01.1956011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1959908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h 2025-08-14T21:55:01.1963806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h 2025-08-14T21:55:01.1967639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h 2025-08-14T21:55:01.1971741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h 2025-08-14T21:55:01.1976052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h 2025-08-14T21:55:01.1980594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.1984574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h 2025-08-14T21:55:01.1988574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h 2025-08-14T21:55:01.1993158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.1997275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h 2025-08-14T21:55:01.2001310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h 2025-08-14T21:55:01.2005304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h 2025-08-14T21:55:01.2009135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h 2025-08-14T21:55:01.2013219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2016994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h 2025-08-14T21:55:01.2021328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h 2025-08-14T21:55:01.2025115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h 2025-08-14T21:55:01.2028874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2033346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h 2025-08-14T21:55:01.2037358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2041061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h 2025-08-14T21:55:01.2044888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h 2025-08-14T21:55:01.2048792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h 2025-08-14T21:55:01.2052840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h 2025-08-14T21:55:01.2056734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight.h 2025-08-14T21:55:01.2060678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2064768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h 2025-08-14T21:55:01.2068710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2073346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h 2025-08-14T21:55:01.2077202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h 2025-08-14T21:55:01.2081016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h 2025-08-14T21:55:01.2084711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h 2025-08-14T21:55:01.2088419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h 2025-08-14T21:55:01.2092434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2097755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h 2025-08-14T21:55:01.2101282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h 2025-08-14T21:55:01.2105111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h 2025-08-14T21:55:01.2109650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2113333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h 2025-08-14T21:55:01.2116996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h 2025-08-14T21:55:01.2120733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h 2025-08-14T21:55:01.2124548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2128249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h 2025-08-14T21:55:01.2131982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h 2025-08-14T21:55:01.2135955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout.h 2025-08-14T21:55:01.2140123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2143613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_native.h 2025-08-14T21:55:01.2147395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_ops.h 2025-08-14T21:55:01.2151262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout.h 2025-08-14T21:55:01.2155242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2158972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_native.h 2025-08-14T21:55:01.2163309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_ops.h 2025-08-14T21:55:01.2167443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft.h 2025-08-14T21:55:01.2170817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2.h 2025-08-14T21:55:01.2174482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2178157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_native.h 2025-08-14T21:55:01.2181941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_ops.h 2025-08-14T21:55:01.2186145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq.h 2025-08-14T21:55:01.2189944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.2193713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_native.h 2025-08-14T21:55:01.2197382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_ops.h 2025-08-14T21:55:01.2201149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn.h 2025-08-14T21:55:01.2204697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2208254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_native.h 2025-08-14T21:55:01.2211863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_ops.h 2025-08-14T21:55:01.2215528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift.h 2025-08-14T21:55:01.2219544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2223501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_native.h 2025-08-14T21:55:01.2226937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_ops.h 2025-08-14T21:55:01.2230700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2234319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_native.h 2025-08-14T21:55:01.2237941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_ops.h 2025-08-14T21:55:01.2241564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft.h 2025-08-14T21:55:01.2244863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2.h 2025-08-14T21:55:01.2248680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2252402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_native.h 2025-08-14T21:55:01.2256136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_ops.h 2025-08-14T21:55:01.2259603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn.h 2025-08-14T21:55:01.2263404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2267706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_native.h 2025-08-14T21:55:01.2271607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_ops.h 2025-08-14T21:55:01.2275640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2279464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_native.h 2025-08-14T21:55:01.2283021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_ops.h 2025-08-14T21:55:01.2286622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft.h 2025-08-14T21:55:01.2289903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2.h 2025-08-14T21:55:01.2293623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2297178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_native.h 2025-08-14T21:55:01.2300776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_ops.h 2025-08-14T21:55:01.2304698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn.h 2025-08-14T21:55:01.2308410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2312089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_native.h 2025-08-14T21:55:01.2315758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_ops.h 2025-08-14T21:55:01.2319402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift.h 2025-08-14T21:55:01.2323222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2326946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_native.h 2025-08-14T21:55:01.2330699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_ops.h 2025-08-14T21:55:01.2334655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2338487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_native.h 2025-08-14T21:55:01.2342227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_ops.h 2025-08-14T21:55:01.2345901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft.h 2025-08-14T21:55:01.2349372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2.h 2025-08-14T21:55:01.2353504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2357107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_native.h 2025-08-14T21:55:01.2361140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_ops.h 2025-08-14T21:55:01.2365053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn.h 2025-08-14T21:55:01.2368766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2372836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_native.h 2025-08-14T21:55:01.2376534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_ops.h 2025-08-14T21:55:01.2380300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2384485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_native.h 2025-08-14T21:55:01.2388333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_ops.h 2025-08-14T21:55:01.2392005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft.h 2025-08-14T21:55:01.2395908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2.h 2025-08-14T21:55:01.2399782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2403392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_native.h 2025-08-14T21:55:01.2407304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_ops.h 2025-08-14T21:55:01.2411047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn.h 2025-08-14T21:55:01.2416026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2419641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_native.h 2025-08-14T21:55:01.2423225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_ops.h 2025-08-14T21:55:01.2427515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2431175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_native.h 2025-08-14T21:55:01.2434807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_ops.h 2025-08-14T21:55:01.2438479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft.h 2025-08-14T21:55:01.2441742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2.h 2025-08-14T21:55:01.2445503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2449059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_native.h 2025-08-14T21:55:01.2452650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_ops.h 2025-08-14T21:55:01.2456245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq.h 2025-08-14T21:55:01.2460312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.2464018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_native.h 2025-08-14T21:55:01.2467630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_ops.h 2025-08-14T21:55:01.2471406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn.h 2025-08-14T21:55:01.2475275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2479748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_native.h 2025-08-14T21:55:01.2483413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_ops.h 2025-08-14T21:55:01.2487347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2490961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_native.h 2025-08-14T21:55:01.2494502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_ops.h 2025-08-14T21:55:01.2498215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill.h 2025-08-14T21:55:01.2501817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.2505532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cpu_dispatch.h 2025-08-14T21:55:01.2509138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cuda_dispatch.h 2025-08-14T21:55:01.2512958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal.h 2025-08-14T21:55:01.2516885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2520684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_native.h 2025-08-14T21:55:01.2524250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_ops.h 2025-08-14T21:55:01.2527997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_meta_dispatch.h 2025-08-14T21:55:01.2531506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_native.h 2025-08-14T21:55:01.2534937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_ops.h 2025-08-14T21:55:01.2538165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix.h 2025-08-14T21:55:01.2541668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2545268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_native.h 2025-08-14T21:55:01.2548801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_ops.h 2025-08-14T21:55:01.2552136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten.h 2025-08-14T21:55:01.2555716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2559268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors.h 2025-08-14T21:55:01.2563072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2566654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_native.h 2025-08-14T21:55:01.2570301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_ops.h 2025-08-14T21:55:01.2573949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_native.h 2025-08-14T21:55:01.2577496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_ops.h 2025-08-14T21:55:01.2581385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip.h 2025-08-14T21:55:01.2585211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr.h 2025-08-14T21:55:01.2588727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2592545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_native.h 2025-08-14T21:55:01.2596391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_ops.h 2025-08-14T21:55:01.2599647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud.h 2025-08-14T21:55:01.2603132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2606547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_native.h 2025-08-14T21:55:01.2610245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_ops.h 2025-08-14T21:55:01.2614308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.2617580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cpu_dispatch.h 2025-08-14T21:55:01.2621094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cuda_dispatch.h 2025-08-14T21:55:01.2624629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_native.h 2025-08-14T21:55:01.2627957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_ops.h 2025-08-14T21:55:01.2631300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power.h 2025-08-14T21:55:01.2635056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.2638683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_native.h 2025-08-14T21:55:01.2642256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_ops.h 2025-08-14T21:55:01.2645742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor.h 2025-08-14T21:55:01.2649636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.2653031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cpu_dispatch.h 2025-08-14T21:55:01.2656661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cuda_dispatch.h 2025-08-14T21:55:01.2660481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide.h 2025-08-14T21:55:01.2664391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.2667948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cpu_dispatch.h 2025-08-14T21:55:01.2671465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cuda_dispatch.h 2025-08-14T21:55:01.2675055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_meta_dispatch.h 2025-08-14T21:55:01.2678762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_native.h 2025-08-14T21:55:01.2682381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_ops.h 2025-08-14T21:55:01.2686483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta.h 2025-08-14T21:55:01.2690328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta_dispatch.h 2025-08-14T21:55:01.2693893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_native.h 2025-08-14T21:55:01.2697544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_ops.h 2025-08-14T21:55:01.2701192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax.h 2025-08-14T21:55:01.2704818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.2708572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cpu_dispatch.h 2025-08-14T21:55:01.2712418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cuda_dispatch.h 2025-08-14T21:55:01.2715887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta.h 2025-08-14T21:55:01.2719470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta_dispatch.h 2025-08-14T21:55:01.2722999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_native.h 2025-08-14T21:55:01.2726494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_ops.h 2025-08-14T21:55:01.2729758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin.h 2025-08-14T21:55:01.2733366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.2736908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cpu_dispatch.h 2025-08-14T21:55:01.2740384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cuda_dispatch.h 2025-08-14T21:55:01.2744223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta.h 2025-08-14T21:55:01.5309224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta_dispatch.h 2025-08-14T21:55:01.5312723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_native.h 2025-08-14T21:55:01.5316587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_ops.h 2025-08-14T21:55:01.5320139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod.h 2025-08-14T21:55:01.5323699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5328711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5333322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cpu_dispatch.h 2025-08-14T21:55:01.5337351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cuda_dispatch.h 2025-08-14T21:55:01.5341058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta.h 2025-08-14T21:55:01.5356796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta_dispatch.h 2025-08-14T21:55:01.5357510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_native.h 2025-08-14T21:55:01.5358159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_ops.h 2025-08-14T21:55:01.5358680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac.h 2025-08-14T21:55:01.5359868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d.h 2025-08-14T21:55:01.5363514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward.h 2025-08-14T21:55:01.5367814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5371524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h 2025-08-14T21:55:01.5375248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h 2025-08-14T21:55:01.5379166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h 2025-08-14T21:55:01.5383016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h 2025-08-14T21:55:01.5387002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h 2025-08-14T21:55:01.5390899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h 2025-08-14T21:55:01.5394857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5398889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h 2025-08-14T21:55:01.5402764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h 2025-08-14T21:55:01.5406459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta.h 2025-08-14T21:55:01.5410506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h 2025-08-14T21:55:01.5414254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_native.h 2025-08-14T21:55:01.5417953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_ops.h 2025-08-14T21:55:01.5421711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d.h 2025-08-14T21:55:01.5425468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward.h 2025-08-14T21:55:01.5429299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h 2025-08-14T21:55:01.5433638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h 2025-08-14T21:55:01.5437366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h 2025-08-14T21:55:01.5441247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h 2025-08-14T21:55:01.5445778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5449671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h 2025-08-14T21:55:01.5454278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h 2025-08-14T21:55:01.5458069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta.h 2025-08-14T21:55:01.5462175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h 2025-08-14T21:55:01.5466405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_native.h 2025-08-14T21:55:01.5501430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_ops.h 2025-08-14T21:55:01.5505466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5509226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cpu_dispatch.h 2025-08-14T21:55:01.5512990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cuda_dispatch.h 2025-08-14T21:55:01.5516782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta.h 2025-08-14T21:55:01.5520514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta_dispatch.h 2025-08-14T21:55:01.5524337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_native.h 2025-08-14T21:55:01.5527904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_ops.h 2025-08-14T21:55:01.5531272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp.h 2025-08-14T21:55:01.5534965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5538663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cpu_dispatch.h 2025-08-14T21:55:01.5542271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cuda_dispatch.h 2025-08-14T21:55:01.5545893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_native.h 2025-08-14T21:55:01.5549936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_ops.h 2025-08-14T21:55:01.5553626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm.h 2025-08-14T21:55:01.5557442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5561305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_native.h 2025-08-14T21:55:01.5564939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_ops.h 2025-08-14T21:55:01.5568629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_blob.h 2025-08-14T21:55:01.5572086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file.h 2025-08-14T21:55:01.5575805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5579735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_cpu_dispatch.h 2025-08-14T21:55:01.5583540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_native.h 2025-08-14T21:55:01.5587273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_ops.h 2025-08-14T21:55:01.5590884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full.h 2025-08-14T21:55:01.5594466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5598191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like.h 2025-08-14T21:55:01.5601923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5605550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_native.h 2025-08-14T21:55:01.5609134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_ops.h 2025-08-14T21:55:01.5612849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_native.h 2025-08-14T21:55:01.5616723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_ops.h 2025-08-14T21:55:01.5620170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h 2025-08-14T21:55:01.5624164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5627793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h 2025-08-14T21:55:01.5632167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h 2025-08-14T21:55:01.5635799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather.h 2025-08-14T21:55:01.5639408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward.h 2025-08-14T21:55:01.5643471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5647213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_native.h 2025-08-14T21:55:01.5651020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_ops.h 2025-08-14T21:55:01.5655079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5658857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5662705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cpu_dispatch.h 2025-08-14T21:55:01.5666574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cuda_dispatch.h 2025-08-14T21:55:01.5670327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta.h 2025-08-14T21:55:01.5674199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta_dispatch.h 2025-08-14T21:55:01.5678024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_native.h 2025-08-14T21:55:01.5682161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_ops.h 2025-08-14T21:55:01.5685863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd.h 2025-08-14T21:55:01.5689543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5693025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cpu_dispatch.h 2025-08-14T21:55:01.5696809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cuda_dispatch.h 2025-08-14T21:55:01.5700634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta.h 2025-08-14T21:55:01.5704126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta_dispatch.h 2025-08-14T21:55:01.5707659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_native.h 2025-08-14T21:55:01.5711162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_ops.h 2025-08-14T21:55:01.5714503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge.h 2025-08-14T21:55:01.5717986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu.h 2025-08-14T21:55:01.5721376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward.h 2025-08-14T21:55:01.5725365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5729108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h 2025-08-14T21:55:01.5733065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h 2025-08-14T21:55:01.5736759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta.h 2025-08-14T21:55:01.5740609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta_dispatch.h 2025-08-14T21:55:01.5744309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_native.h 2025-08-14T21:55:01.5748073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_ops.h 2025-08-14T21:55:01.5752218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5755751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cpu_dispatch.h 2025-08-14T21:55:01.5759702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cuda_dispatch.h 2025-08-14T21:55:01.5763263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta.h 2025-08-14T21:55:01.5766946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta_dispatch.h 2025-08-14T21:55:01.5770777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_native.h 2025-08-14T21:55:01.5774378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_ops.h 2025-08-14T21:55:01.5777774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric.h 2025-08-14T21:55:01.5781438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5785172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cpu_dispatch.h 2025-08-14T21:55:01.5789730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cuda_dispatch.h 2025-08-14T21:55:01.5793280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_meta_dispatch.h 2025-08-14T21:55:01.5797040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_native.h 2025-08-14T21:55:01.5801178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_ops.h 2025-08-14T21:55:01.5804565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf.h 2025-08-14T21:55:01.5808063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cpu_dispatch.h 2025-08-14T21:55:01.5811786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cuda_dispatch.h 2025-08-14T21:55:01.5815821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_native.h 2025-08-14T21:55:01.5819701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_ops.h 2025-08-14T21:55:01.5823396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger.h 2025-08-14T21:55:01.5826882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5830535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_native.h 2025-08-14T21:55:01.5834069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_ops.h 2025-08-14T21:55:01.5837885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5841541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cpu_dispatch.h 2025-08-14T21:55:01.5845101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cuda_dispatch.h 2025-08-14T21:55:01.5848999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta.h 2025-08-14T21:55:01.5852494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta_dispatch.h 2025-08-14T21:55:01.5856421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_native.h 2025-08-14T21:55:01.5859826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_ops.h 2025-08-14T21:55:01.5863014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu.h 2025-08-14T21:55:01.5866418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward.h 2025-08-14T21:55:01.5870592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cpu_dispatch.h 2025-08-14T21:55:01.5875103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cuda_dispatch.h 2025-08-14T21:55:01.5879027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp.h 2025-08-14T21:55:01.5883317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5887507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h 2025-08-14T21:55:01.5891213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h 2025-08-14T21:55:01.5894977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_native.h 2025-08-14T21:55:01.5899161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_ops.h 2025-08-14T21:55:01.5902909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_native.h 2025-08-14T21:55:01.5906922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_ops.h 2025-08-14T21:55:01.5910967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.5914894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cpu_dispatch.h 2025-08-14T21:55:01.5918618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cuda_dispatch.h 2025-08-14T21:55:01.5922540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp.h 2025-08-14T21:55:01.5926183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.5929761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h 2025-08-14T21:55:01.5933653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h 2025-08-14T21:55:01.5937279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_native.h 2025-08-14T21:55:01.5941027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_ops.h 2025-08-14T21:55:01.5944697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta.h 2025-08-14T21:55:01.5948003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta_dispatch.h 2025-08-14T21:55:01.5951695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_native.h 2025-08-14T21:55:01.5955296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_ops.h 2025-08-14T21:55:01.5958779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient.h 2025-08-14T21:55:01.5962387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5966367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_native.h 2025-08-14T21:55:01.5969943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_ops.h 2025-08-14T21:55:01.5973566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater.h 2025-08-14T21:55:01.5977107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5980762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal.h 2025-08-14T21:55:01.5984657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.5988580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_native.h 2025-08-14T21:55:01.5992551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_ops.h 2025-08-14T21:55:01.5996232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_native.h 2025-08-14T21:55:01.6000129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_ops.h 2025-08-14T21:55:01.6003783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler.h 2025-08-14T21:55:01.6007788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d.h 2025-08-14T21:55:01.6011383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward.h 2025-08-14T21:55:01.6015516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6019630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h 2025-08-14T21:55:01.6023717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h 2025-08-14T21:55:01.6027451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_native.h 2025-08-14T21:55:01.6031718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h 2025-08-14T21:55:01.6035778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6039904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h 2025-08-14T21:55:01.6043848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h 2025-08-14T21:55:01.6047467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_native.h 2025-08-14T21:55:01.6051146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_ops.h 2025-08-14T21:55:01.6054801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d.h 2025-08-14T21:55:01.6058385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward.h 2025-08-14T21:55:01.6063043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6067032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h 2025-08-14T21:55:01.6070682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h 2025-08-14T21:55:01.6074404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_native.h 2025-08-14T21:55:01.6078173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h 2025-08-14T21:55:01.6082261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6086099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h 2025-08-14T21:55:01.6089835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h 2025-08-14T21:55:01.6093593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_native.h 2025-08-14T21:55:01.6097313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_ops.h 2025-08-14T21:55:01.6101567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6105924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_native.h 2025-08-14T21:55:01.6109668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_ops.h 2025-08-14T21:55:01.6113237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm.h 2025-08-14T21:55:01.6117427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6121086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_native.h 2025-08-14T21:55:01.6124685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_ops.h 2025-08-14T21:55:01.6128865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru.h 2025-08-14T21:55:01.6132325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell.h 2025-08-14T21:55:01.6135700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6139412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_native.h 2025-08-14T21:55:01.6142930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_ops.h 2025-08-14T21:55:01.6146913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6150485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_native.h 2025-08-14T21:55:01.6153816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_ops.h 2025-08-14T21:55:01.6157101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt.h 2025-08-14T21:55:01.6161250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6164758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cpu_dispatch.h 2025-08-14T21:55:01.6168253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cuda_dispatch.h 2025-08-14T21:55:01.6171895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta.h 2025-08-14T21:55:01.6175575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta_dispatch.h 2025-08-14T21:55:01.6178951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_native.h 2025-08-14T21:55:01.6182406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_ops.h 2025-08-14T21:55:01.6185697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window.h 2025-08-14T21:55:01.6189356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6192905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_native.h 2025-08-14T21:55:01.6196532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_ops.h 2025-08-14T21:55:01.6200467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window.h 2025-08-14T21:55:01.6204179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6208341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_native.h 2025-08-14T21:55:01.6212141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_ops.h 2025-08-14T21:55:01.6215856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink.h 2025-08-14T21:55:01.6219570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward.h 2025-08-14T21:55:01.6223412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6226945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h 2025-08-14T21:55:01.6230578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h 2025-08-14T21:55:01.6234310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta.h 2025-08-14T21:55:01.6238193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h 2025-08-14T21:55:01.6242179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_native.h 2025-08-14T21:55:01.6245779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_ops.h 2025-08-14T21:55:01.6249623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6253176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cpu_dispatch.h 2025-08-14T21:55:01.6256869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cuda_dispatch.h 2025-08-14T21:55:01.6260472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta.h 2025-08-14T21:55:01.6264112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta_dispatch.h 2025-08-14T21:55:01.6268629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_native.h 2025-08-14T21:55:01.6272509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_ops.h 2025-08-14T21:55:01.6276240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid.h 2025-08-14T21:55:01.6279982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward.h 2025-08-14T21:55:01.6283867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6287642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h 2025-08-14T21:55:01.6291701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h 2025-08-14T21:55:01.6295333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta.h 2025-08-14T21:55:01.6299134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h 2025-08-14T21:55:01.6302911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_native.h 2025-08-14T21:55:01.6307102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_ops.h 2025-08-14T21:55:01.6311066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6314762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h 2025-08-14T21:55:01.6318509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h 2025-08-14T21:55:01.6322237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta.h 2025-08-14T21:55:01.6326100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h 2025-08-14T21:55:01.6329850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_native.h 2025-08-14T21:55:01.6333775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_ops.h 2025-08-14T21:55:01.6337395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish.h 2025-08-14T21:55:01.6341410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward.h 2025-08-14T21:55:01.6345246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6348865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h 2025-08-14T21:55:01.6352996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h 2025-08-14T21:55:01.6356698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_native.h 2025-08-14T21:55:01.6360520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_ops.h 2025-08-14T21:55:01.6364477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cpu_dispatch.h 2025-08-14T21:55:01.6368211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cuda_dispatch.h 2025-08-14T21:55:01.6372097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_meta_dispatch.h 2025-08-14T21:55:01.6375672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_native.h 2025-08-14T21:55:01.6379469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_ops.h 2025-08-14T21:55:01.6383152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh.h 2025-08-14T21:55:01.6386844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward.h 2025-08-14T21:55:01.6390624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h 2025-08-14T21:55:01.6394257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h 2025-08-14T21:55:01.6397907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_native.h 2025-08-14T21:55:01.6401612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_ops.h 2025-08-14T21:55:01.6405605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cpu_dispatch.h 2025-08-14T21:55:01.6410005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cuda_dispatch.h 2025-08-14T21:55:01.6413736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_meta_dispatch.h 2025-08-14T21:55:01.6417327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_native.h 2025-08-14T21:55:01.6420961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_ops.h 2025-08-14T21:55:01.6424650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor.h 2025-08-14T21:55:01.6428843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6432634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h 2025-08-14T21:55:01.6436451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h 2025-08-14T21:55:01.6440217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta.h 2025-08-14T21:55:01.6443869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta_dispatch.h 2025-08-14T21:55:01.6447562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_native.h 2025-08-14T21:55:01.6451307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_ops.h 2025-08-14T21:55:01.6454970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside.h 2025-08-14T21:55:01.6459000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6462835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cpu_dispatch.h 2025-08-14T21:55:01.6495916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cuda_dispatch.h 2025-08-14T21:55:01.6526922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta.h 2025-08-14T21:55:01.6530639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta_dispatch.h 2025-08-14T21:55:01.6534252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_native.h 2025-08-14T21:55:01.6538012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_ops.h 2025-08-14T21:55:01.6541658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss.h 2025-08-14T21:55:01.6545635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6550048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_native.h 2025-08-14T21:55:01.6553784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_ops.h 2025-08-14T21:55:01.6557331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc.h 2025-08-14T21:55:01.6561108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cpu_dispatch.h 2025-08-14T21:55:01.6564517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cuda_dispatch.h 2025-08-14T21:55:01.6568295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_native.h 2025-08-14T21:55:01.6572206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_ops.h 2025-08-14T21:55:01.6576283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram.h 2025-08-14T21:55:01.6579818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd.h 2025-08-14T21:55:01.6583517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6587085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_native.h 2025-08-14T21:55:01.6590702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_ops.h 2025-08-14T21:55:01.6594507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_cpu_dispatch.h 2025-08-14T21:55:01.6598319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_native.h 2025-08-14T21:55:01.6602020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_ops.h 2025-08-14T21:55:01.6605942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit.h 2025-08-14T21:55:01.6609329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6612781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_native.h 2025-08-14T21:55:01.6616640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_ops.h 2025-08-14T21:55:01.6620467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm.h 2025-08-14T21:55:01.6623536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_native.h 2025-08-14T21:55:01.6627131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_ops.h 2025-08-14T21:55:01.6630995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack.h 2025-08-14T21:55:01.6634424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6637932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_native.h 2025-08-14T21:55:01.6641557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_ops.h 2025-08-14T21:55:01.6645237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss.h 2025-08-14T21:55:01.6648708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward.h 2025-08-14T21:55:01.6652434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6656105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h 2025-08-14T21:55:01.6659922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h 2025-08-14T21:55:01.6663570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_native.h 2025-08-14T21:55:01.6667249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_ops.h 2025-08-14T21:55:01.6670926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cpu_dispatch.h 2025-08-14T21:55:01.6674666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cuda_dispatch.h 2025-08-14T21:55:01.6679160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_native.h 2025-08-14T21:55:01.6682715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_ops.h 2025-08-14T21:55:01.6686501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot.h 2025-08-14T21:55:01.6690183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6693542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cpu_dispatch.h 2025-08-14T21:55:01.6697047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cuda_dispatch.h 2025-08-14T21:55:01.6700668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta.h 2025-08-14T21:55:01.6704566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta_dispatch.h 2025-08-14T21:55:01.6708465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_native.h 2025-08-14T21:55:01.6712036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_ops.h 2025-08-14T21:55:01.6715731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0.h 2025-08-14T21:55:01.6719363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6722795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cpu_dispatch.h 2025-08-14T21:55:01.6726518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cuda_dispatch.h 2025-08-14T21:55:01.6730374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta.h 2025-08-14T21:55:01.6733706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta_dispatch.h 2025-08-14T21:55:01.6737195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_native.h 2025-08-14T21:55:01.6740599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_ops.h 2025-08-14T21:55:01.6744102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma.h 2025-08-14T21:55:01.6747823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac.h 2025-08-14T21:55:01.6751821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6755296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cpu_dispatch.h 2025-08-14T21:55:01.6758998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cuda_dispatch.h 2025-08-14T21:55:01.6762636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta.h 2025-08-14T21:55:01.6766555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta_dispatch.h 2025-08-14T21:55:01.6769954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_native.h 2025-08-14T21:55:01.6773834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_ops.h 2025-08-14T21:55:01.6778177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6781813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cpu_dispatch.h 2025-08-14T21:55:01.6786112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cuda_dispatch.h 2025-08-14T21:55:01.6789862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta.h 2025-08-14T21:55:01.6793385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta_dispatch.h 2025-08-14T21:55:01.6797094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_native.h 2025-08-14T21:55:01.6801196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_ops.h 2025-08-14T21:55:01.6805038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col.h 2025-08-14T21:55:01.6809425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cpu_dispatch.h 2025-08-14T21:55:01.6813032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cuda_dispatch.h 2025-08-14T21:55:01.6816575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_native.h 2025-08-14T21:55:01.6820340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_ops.h 2025-08-14T21:55:01.6824192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag.h 2025-08-14T21:55:01.6828515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6831725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_native.h 2025-08-14T21:55:01.6835522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_ops.h 2025-08-14T21:55:01.6838873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index.h 2025-08-14T21:55:01.6842533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add.h 2025-08-14T21:55:01.6846631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6850316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6854090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cpu_dispatch.h 2025-08-14T21:55:01.6858248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cuda_dispatch.h 2025-08-14T21:55:01.6862281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta.h 2025-08-14T21:55:01.6877552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta_dispatch.h 2025-08-14T21:55:01.6878357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_native.h 2025-08-14T21:55:01.6878938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_ops.h 2025-08-14T21:55:01.6881075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6885005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy.h 2025-08-14T21:55:01.6889014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6893237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6897661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cpu_dispatch.h 2025-08-14T21:55:01.6901520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cuda_dispatch.h 2025-08-14T21:55:01.6905188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta.h 2025-08-14T21:55:01.6908883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta_dispatch.h 2025-08-14T21:55:01.6913024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_native.h 2025-08-14T21:55:01.6917012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_ops.h 2025-08-14T21:55:01.6920994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cpu_dispatch.h 2025-08-14T21:55:01.6924811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cuda_dispatch.h 2025-08-14T21:55:01.6928446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill.h 2025-08-14T21:55:01.6932455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6936267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.6940077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cpu_dispatch.h 2025-08-14T21:55:01.6944027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cuda_dispatch.h 2025-08-14T21:55:01.6947911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_meta_dispatch.h 2025-08-14T21:55:01.6951659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_native.h 2025-08-14T21:55:01.6955483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_ops.h 2025-08-14T21:55:01.6959278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta.h 2025-08-14T21:55:01.6963130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta_dispatch.h 2025-08-14T21:55:01.6967596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_native.h 2025-08-14T21:55:01.6971320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_ops.h 2025-08-14T21:55:01.6974958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put.h 2025-08-14T21:55:01.6979279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.6982988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_native.h 2025-08-14T21:55:01.6986746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_ops.h 2025-08-14T21:55:01.6990437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce.h 2025-08-14T21:55:01.6995081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.6999127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cpu_dispatch.h 2025-08-14T21:55:01.7003081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cuda_dispatch.h 2025-08-14T21:55:01.7007957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta.h 2025-08-14T21:55:01.7012125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta_dispatch.h 2025-08-14T21:55:01.7016144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_native.h 2025-08-14T21:55:01.7020059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_ops.h 2025-08-14T21:55:01.7023789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select.h 2025-08-14T21:55:01.7027944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward.h 2025-08-14T21:55:01.7031975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7036007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_native.h 2025-08-14T21:55:01.7039850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_ops.h 2025-08-14T21:55:01.7043904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7047788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cpu_dispatch.h 2025-08-14T21:55:01.7051770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cuda_dispatch.h 2025-08-14T21:55:01.7055502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_native.h 2025-08-14T21:55:01.7059492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_ops.h 2025-08-14T21:55:01.7063658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices.h 2025-08-14T21:55:01.7067436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7070977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy.h 2025-08-14T21:55:01.7074815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7078614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7082482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_native.h 2025-08-14T21:55:01.7086699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_ops.h 2025-08-14T21:55:01.7091365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_native.h 2025-08-14T21:55:01.7095078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_ops.h 2025-08-14T21:55:01.7098856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h 2025-08-14T21:55:01.7102636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7106836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h 2025-08-14T21:55:01.7110861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h 2025-08-14T21:55:01.7114659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner.h 2025-08-14T21:55:01.7118360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7121969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_native.h 2025-08-14T21:55:01.7125503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_ops.h 2025-08-14T21:55:01.7129166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm.h 2025-08-14T21:55:01.7132886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7136935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_native.h 2025-08-14T21:55:01.7140634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_ops.h 2025-08-14T21:55:01.7144206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr.h 2025-08-14T21:55:01.7147677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7151318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_native.h 2025-08-14T21:55:01.7154870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_ops.h 2025-08-14T21:55:01.7158582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse.h 2025-08-14T21:55:01.7162269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7166566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_native.h 2025-08-14T21:55:01.7170024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_ops.h 2025-08-14T21:55:01.7173543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose.h 2025-08-14T21:55:01.7177000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7180568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_native.h 2025-08-14T21:55:01.7184004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_ops.h 2025-08-14T21:55:01.7187487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite.h 2025-08-14T21:55:01.7191712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7195242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_native.h 2025-08-14T21:55:01.7198720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_ops.h 2025-08-14T21:55:01.7202321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin.h 2025-08-14T21:55:01.7205653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf.h 2025-08-14T21:55:01.7209840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7213425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_native.h 2025-08-14T21:55:01.7217017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_ops.h 2025-08-14T21:55:01.7220987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7224592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cpu_dispatch.h 2025-08-14T21:55:01.7228049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cuda_dispatch.h 2025-08-14T21:55:01.7231583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta.h 2025-08-14T21:55:01.7235078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta_dispatch.h 2025-08-14T21:55:01.7238907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_native.h 2025-08-14T21:55:01.7242646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_ops.h 2025-08-14T21:55:01.7246045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan.h 2025-08-14T21:55:01.7249809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7253385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cpu_dispatch.h 2025-08-14T21:55:01.7256915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cuda_dispatch.h 2025-08-14T21:55:01.7260410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_native.h 2025-08-14T21:55:01.7264045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_ops.h 2025-08-14T21:55:01.7267668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf.h 2025-08-14T21:55:01.7271072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7274517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cpu_dispatch.h 2025-08-14T21:55:01.7278469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cuda_dispatch.h 2025-08-14T21:55:01.7282289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta.h 2025-08-14T21:55:01.7286005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta_dispatch.h 2025-08-14T21:55:01.7290225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_native.h 2025-08-14T21:55:01.7293851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_ops.h 2025-08-14T21:55:01.7297314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf.h 2025-08-14T21:55:01.7301293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7305222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cpu_dispatch.h 2025-08-14T21:55:01.7308878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cuda_dispatch.h 2025-08-14T21:55:01.7313058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta.h 2025-08-14T21:55:01.7316671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta_dispatch.h 2025-08-14T21:55:01.7320342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_native.h 2025-08-14T21:55:01.7323928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_ops.h 2025-08-14T21:55:01.7327710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal.h 2025-08-14T21:55:01.7331205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7334900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_native.h 2025-08-14T21:55:01.7338587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_ops.h 2025-08-14T21:55:01.7342193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft.h 2025-08-14T21:55:01.7345639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7349100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_native.h 2025-08-14T21:55:01.7352800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_ops.h 2025-08-14T21:55:01.7356662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced.h 2025-08-14T21:55:01.7360576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7365126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_native.h 2025-08-14T21:55:01.7368836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_ops.h 2025-08-14T21:55:01.7372459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex.h 2025-08-14T21:55:01.7376253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7379912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_native.h 2025-08-14T21:55:01.7383462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_ops.h 2025-08-14T21:55:01.7387563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj.h 2025-08-14T21:55:01.7391324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7395006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_native.h 2025-08-14T21:55:01.7398687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_ops.h 2025-08-14T21:55:01.7402523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed.h 2025-08-14T21:55:01.7406345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7410118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_native.h 2025-08-14T21:55:01.7414246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_ops.h 2025-08-14T21:55:01.7418250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point.h 2025-08-14T21:55:01.7422532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7426245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_native.h 2025-08-14T21:55:01.7429978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_ops.h 2025-08-14T21:55:01.7433981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference.h 2025-08-14T21:55:01.7438083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7442316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_native.h 2025-08-14T21:55:01.7445876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_ops.h 2025-08-14T21:55:01.7449605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf.h 2025-08-14T21:55:01.7453025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7456666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_native.h 2025-08-14T21:55:01.7460236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_ops.h 2025-08-14T21:55:01.7464096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg.h 2025-08-14T21:55:01.7467653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7471323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_native.h 2025-08-14T21:55:01.7474856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_ops.h 2025-08-14T21:55:01.7478660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero.h 2025-08-14T21:55:01.7482297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7486192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_native.h 2025-08-14T21:55:01.7490158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_ops.h 2025-08-14T21:55:01.7522528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned.h 2025-08-14T21:55:01.7526237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7530311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_native.h 2025-08-14T21:55:01.7534059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_ops.h 2025-08-14T21:55:01.7537761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size.h 2025-08-14T21:55:01.7542174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7545681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_native.h 2025-08-14T21:55:01.7549212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_ops.h 2025-08-14T21:55:01.7552894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to.h 2025-08-14T21:55:01.7557059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cpu_dispatch.h 2025-08-14T21:55:01.7560888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cuda_dispatch.h 2025-08-14T21:55:01.7564702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_native.h 2025-08-14T21:55:01.7568478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_ops.h 2025-08-14T21:55:01.7572068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed.h 2025-08-14T21:55:01.7575859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7579496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_native.h 2025-08-14T21:55:01.7583125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_ops.h 2025-08-14T21:55:01.7587126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available.h 2025-08-14T21:55:01.7590896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7594474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_native.h 2025-08-14T21:55:01.7598466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_ops.h 2025-08-14T21:55:01.7602358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item.h 2025-08-14T21:55:01.7606153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7609734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_native.h 2025-08-14T21:55:01.7613224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_ops.h 2025-08-14T21:55:01.7616597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window.h 2025-08-14T21:55:01.7620183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7623697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_native.h 2025-08-14T21:55:01.7627467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_ops.h 2025-08-14T21:55:01.7630971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div.h 2025-08-14T21:55:01.7634465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7638377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_native.h 2025-08-14T21:55:01.7641913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_ops.h 2025-08-14T21:55:01.7645399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron.h 2025-08-14T21:55:01.7649277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7653016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_native.h 2025-08-14T21:55:01.7657016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_ops.h 2025-08-14T21:55:01.7660520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue.h 2025-08-14T21:55:01.7664247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7668481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7672362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cpu_dispatch.h 2025-08-14T21:55:01.7676607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cuda_dispatch.h 2025-08-14T21:55:01.7680105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_native.h 2025-08-14T21:55:01.7683677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_ops.h 2025-08-14T21:55:01.7687291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss.h 2025-08-14T21:55:01.7690814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7694972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_native.h 2025-08-14T21:55:01.7698750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_ops.h 2025-08-14T21:55:01.7702254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm.h 2025-08-14T21:55:01.7705934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7709581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_native.h 2025-08-14T21:55:01.7713060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_ops.h 2025-08-14T21:55:01.7716554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm.h 2025-08-14T21:55:01.7720576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7724061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cpu_dispatch.h 2025-08-14T21:55:01.7727378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cuda_dispatch.h 2025-08-14T21:55:01.7730855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta.h 2025-08-14T21:55:01.7734195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta_dispatch.h 2025-08-14T21:55:01.7737667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_native.h 2025-08-14T21:55:01.7741560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_ops.h 2025-08-14T21:55:01.7745212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp.h 2025-08-14T21:55:01.7748780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7752290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_native.h 2025-08-14T21:55:01.7755953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_ops.h 2025-08-14T21:55:01.7759916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le.h 2025-08-14T21:55:01.7763897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu.h 2025-08-14T21:55:01.7768186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward.h 2025-08-14T21:55:01.7773050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7777141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h 2025-08-14T21:55:01.7781743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h 2025-08-14T21:55:01.7786039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta.h 2025-08-14T21:55:01.7790305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h 2025-08-14T21:55:01.7794543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_native.h 2025-08-14T21:55:01.7798721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_ops.h 2025-08-14T21:55:01.7803255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7807784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h 2025-08-14T21:55:01.7811782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h 2025-08-14T21:55:01.7815590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta.h 2025-08-14T21:55:01.7819513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta_dispatch.h 2025-08-14T21:55:01.7823311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_native.h 2025-08-14T21:55:01.7827286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_ops.h 2025-08-14T21:55:01.7830964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp.h 2025-08-14T21:55:01.7834434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7838296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cpu_dispatch.h 2025-08-14T21:55:01.7842007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cuda_dispatch.h 2025-08-14T21:55:01.7845580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta.h 2025-08-14T21:55:01.7849127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta_dispatch.h 2025-08-14T21:55:01.7852878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_native.h 2025-08-14T21:55:01.7857138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_ops.h 2025-08-14T21:55:01.7860351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less.h 2025-08-14T21:55:01.7863819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7867500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal.h 2025-08-14T21:55:01.7871236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.7874795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_native.h 2025-08-14T21:55:01.7879531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_ops.h 2025-08-14T21:55:01.7883092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_native.h 2025-08-14T21:55:01.7886783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_ops.h 2025-08-14T21:55:01.7890339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7894205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cpu_dispatch.h 2025-08-14T21:55:01.7898524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cuda_dispatch.h 2025-08-14T21:55:01.7902290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta.h 2025-08-14T21:55:01.7905616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta_dispatch.h 2025-08-14T21:55:01.7909139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_native.h 2025-08-14T21:55:01.7912617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_ops.h 2025-08-14T21:55:01.7916007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma.h 2025-08-14T21:55:01.7919647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7923283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cpu_dispatch.h 2025-08-14T21:55:01.7927144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cuda_dispatch.h 2025-08-14T21:55:01.7930784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta.h 2025-08-14T21:55:01.7934604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta_dispatch.h 2025-08-14T21:55:01.7938256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_native.h 2025-08-14T21:55:01.7941908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_ops.h 2025-08-14T21:55:01.7945977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift.h 2025-08-14T21:55:01.7949507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7953229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh.h 2025-08-14T21:55:01.7956993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7960641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy.h 2025-08-14T21:55:01.7964470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.7968300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.7972102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_native.h 2025-08-14T21:55:01.7976087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_ops.h 2025-08-14T21:55:01.7979834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_native.h 2025-08-14T21:55:01.7983870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_ops.h 2025-08-14T21:55:01.7987580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_native.h 2025-08-14T21:55:01.7991183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_ops.h 2025-08-14T21:55:01.7994671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky.h 2025-08-14T21:55:01.7998596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8002558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex.h 2025-08-14T21:55:01.8006481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8010056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h 2025-08-14T21:55:01.8014270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h 2025-08-14T21:55:01.8018481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta.h 2025-08-14T21:55:01.8022260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h 2025-08-14T21:55:01.8026878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_native.h 2025-08-14T21:55:01.8030697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_ops.h 2025-08-14T21:55:01.8034373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_native.h 2025-08-14T21:55:01.8038181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ops.h 2025-08-14T21:55:01.8041815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond.h 2025-08-14T21:55:01.8045986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8049833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_native.h 2025-08-14T21:55:01.8053724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_ops.h 2025-08-14T21:55:01.8057215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross.h 2025-08-14T21:55:01.8061153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8064738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h 2025-08-14T21:55:01.8068619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h 2025-08-14T21:55:01.8072467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta.h 2025-08-14T21:55:01.8076311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta_dispatch.h 2025-08-14T21:55:01.8080125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_native.h 2025-08-14T21:55:01.8083796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_ops.h 2025-08-14T21:55:01.8087860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det.h 2025-08-14T21:55:01.8091868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8095494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_native.h 2025-08-14T21:55:01.8099265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_ops.h 2025-08-14T21:55:01.8102947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal.h 2025-08-14T21:55:01.8107093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8110924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_native.h 2025-08-14T21:55:01.8114570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_ops.h 2025-08-14T21:55:01.8118354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig.h 2025-08-14T21:55:01.8122142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh.h 2025-08-14T21:55:01.8126025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8129500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_native.h 2025-08-14T21:55:01.8133317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_ops.h 2025-08-14T21:55:01.8136996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals.h 2025-08-14T21:55:01.8140600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh.h 2025-08-14T21:55:01.8144545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8148730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_native.h 2025-08-14T21:55:01.8152824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_ops.h 2025-08-14T21:55:01.8156888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8161248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h 2025-08-14T21:55:01.8165081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h 2025-08-14T21:55:01.8168774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_native.h 2025-08-14T21:55:01.8172598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_ops.h 2025-08-14T21:55:01.8177663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h 2025-08-14T21:55:01.8181353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h 2025-08-14T21:55:01.8184985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_native.h 2025-08-14T21:55:01.8188988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_ops.h 2025-08-14T21:55:01.8193595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product.h 2025-08-14T21:55:01.8197640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h 2025-08-14T21:55:01.8202182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h 2025-08-14T21:55:01.8205849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_native.h 2025-08-14T21:55:01.8209596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_ops.h 2025-08-14T21:55:01.8213465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv.h 2025-08-14T21:55:01.8217664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8221548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex.h 2025-08-14T21:55:01.8225722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8229447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h 2025-08-14T21:55:01.8233058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h 2025-08-14T21:55:01.8237180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta.h 2025-08-14T21:55:01.8241853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h 2025-08-14T21:55:01.8246059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_native.h 2025-08-14T21:55:01.8250648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_ops.h 2025-08-14T21:55:01.8255343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_native.h 2025-08-14T21:55:01.8259642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ops.h 2025-08-14T21:55:01.8263890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor.h 2025-08-14T21:55:01.8268175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8272270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex.h 2025-08-14T21:55:01.8276231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8280295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h 2025-08-14T21:55:01.8284251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h 2025-08-14T21:55:01.8288145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h 2025-08-14T21:55:01.8292419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h 2025-08-14T21:55:01.8297111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h 2025-08-14T21:55:01.8301034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h 2025-08-14T21:55:01.8304792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_native.h 2025-08-14T21:55:01.8308618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ops.h 2025-08-14T21:55:01.8312457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve.h 2025-08-14T21:55:01.8316643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8320754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h 2025-08-14T21:55:01.8324453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h 2025-08-14T21:55:01.8328227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta.h 2025-08-14T21:55:01.8332011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h 2025-08-14T21:55:01.8336048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_native.h 2025-08-14T21:55:01.8339789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_ops.h 2025-08-14T21:55:01.8343493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq.h 2025-08-14T21:55:01.8347704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.8352080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h 2025-08-14T21:55:01.8355977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h 2025-08-14T21:55:01.8359841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_native.h 2025-08-14T21:55:01.8363868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_ops.h 2025-08-14T21:55:01.8367774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu.h 2025-08-14T21:55:01.8371724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8375449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h 2025-08-14T21:55:01.8379238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h 2025-08-14T21:55:01.8382946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor.h 2025-08-14T21:55:01.8386931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8390932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex.h 2025-08-14T21:55:01.8395981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8399972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h 2025-08-14T21:55:01.8403823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h 2025-08-14T21:55:01.8407832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h 2025-08-14T21:55:01.8411778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h 2025-08-14T21:55:01.8415451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_native.h 2025-08-14T21:55:01.8419076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h 2025-08-14T21:55:01.8422911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_native.h 2025-08-14T21:55:01.8426658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ops.h 2025-08-14T21:55:01.8430374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta.h 2025-08-14T21:55:01.8434532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta_dispatch.h 2025-08-14T21:55:01.8438393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_native.h 2025-08-14T21:55:01.8442099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_ops.h 2025-08-14T21:55:01.8445877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve.h 2025-08-14T21:55:01.8449818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8453832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h 2025-08-14T21:55:01.8457898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h 2025-08-14T21:55:01.8461743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta.h 2025-08-14T21:55:01.8465423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h 2025-08-14T21:55:01.8469091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_native.h 2025-08-14T21:55:01.8472821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_ops.h 2025-08-14T21:55:01.8476683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul.h 2025-08-14T21:55:01.8481026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8485012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_native.h 2025-08-14T21:55:01.8488720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_ops.h 2025-08-14T21:55:01.8492372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp.h 2025-08-14T21:55:01.8497193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.8500980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h 2025-08-14T21:55:01.8505031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h 2025-08-14T21:55:01.8509129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_native.h 2025-08-14T21:55:01.8542603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_ops.h 2025-08-14T21:55:01.8546308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm.h 2025-08-14T21:55:01.8550264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8554255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_native.h 2025-08-14T21:55:01.8558801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_ops.h 2025-08-14T21:55:01.8562619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power.h 2025-08-14T21:55:01.8566555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8570214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_native.h 2025-08-14T21:55:01.8573840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_ops.h 2025-08-14T21:55:01.8577721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank.h 2025-08-14T21:55:01.8581722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8585486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_native.h 2025-08-14T21:55:01.8589287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_ops.h 2025-08-14T21:55:01.8593049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot.h 2025-08-14T21:55:01.8597301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8601853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_native.h 2025-08-14T21:55:01.8605447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_ops.h 2025-08-14T21:55:01.8609825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm.h 2025-08-14T21:55:01.8614087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8618243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_native.h 2025-08-14T21:55:01.8622461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_ops.h 2025-08-14T21:55:01.8626481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv.h 2025-08-14T21:55:01.8631520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8635935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.8640544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8644729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_native.h 2025-08-14T21:55:01.8649033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_ops.h 2025-08-14T21:55:01.8653000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr.h 2025-08-14T21:55:01.8657249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8660886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h 2025-08-14T21:55:01.8664885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h 2025-08-14T21:55:01.8668592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta.h 2025-08-14T21:55:01.8672976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta_dispatch.h 2025-08-14T21:55:01.8676804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_native.h 2025-08-14T21:55:01.8681103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_ops.h 2025-08-14T21:55:01.8685049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet.h 2025-08-14T21:55:01.8707247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8708115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_native.h 2025-08-14T21:55:01.8708734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_ops.h 2025-08-14T21:55:01.8709302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve.h 2025-08-14T21:55:01.8710007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8710728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex.h 2025-08-14T21:55:01.8712374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8716470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_native.h 2025-08-14T21:55:01.8720289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_ops.h 2025-08-14T21:55:01.8723912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_native.h 2025-08-14T21:55:01.8727541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ops.h 2025-08-14T21:55:01.8731238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular.h 2025-08-14T21:55:01.8735719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h 2025-08-14T21:55:01.8739960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h 2025-08-14T21:55:01.8744015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_native.h 2025-08-14T21:55:01.8747797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_ops.h 2025-08-14T21:55:01.8751524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd.h 2025-08-14T21:55:01.8755457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals.h 2025-08-14T21:55:01.8759486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8763365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_native.h 2025-08-14T21:55:01.8767318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_ops.h 2025-08-14T21:55:01.8771472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8775318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_native.h 2025-08-14T21:55:01.8779786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_ops.h 2025-08-14T21:55:01.8783511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv.h 2025-08-14T21:55:01.8787438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8791323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_native.h 2025-08-14T21:55:01.8795048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_ops.h 2025-08-14T21:55:01.8798988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve.h 2025-08-14T21:55:01.8802918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8806653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_native.h 2025-08-14T21:55:01.8810370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_ops.h 2025-08-14T21:55:01.8814202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander.h 2025-08-14T21:55:01.8818109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8821939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_native.h 2025-08-14T21:55:01.8825758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_ops.h 2025-08-14T21:55:01.8858249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot.h 2025-08-14T21:55:01.8861848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8866111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_native.h 2025-08-14T21:55:01.8870855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_ops.h 2025-08-14T21:55:01.8874508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm.h 2025-08-14T21:55:01.8878637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8882614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h 2025-08-14T21:55:01.8886433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h 2025-08-14T21:55:01.8890637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta.h 2025-08-14T21:55:01.8895032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h 2025-08-14T21:55:01.8898925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_native.h 2025-08-14T21:55:01.8904048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_ops.h 2025-08-14T21:55:01.8907745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear.h 2025-08-14T21:55:01.8911575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward.h 2025-08-14T21:55:01.8915805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.8920050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_native.h 2025-08-14T21:55:01.8923850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_ops.h 2025-08-14T21:55:01.8927738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.8931744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.8935572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_native.h 2025-08-14T21:55:01.8939799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_ops.h 2025-08-14T21:55:01.8943948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace.h 2025-08-14T21:55:01.8947775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.8951423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cpu_dispatch.h 2025-08-14T21:55:01.8955591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cuda_dispatch.h 2025-08-14T21:55:01.8959548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_meta_dispatch.h 2025-08-14T21:55:01.8963689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_native.h 2025-08-14T21:55:01.8967498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_ops.h 2025-08-14T21:55:01.8971260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log.h 2025-08-14T21:55:01.8976438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10.h 2025-08-14T21:55:01.8980218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.8983961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cpu_dispatch.h 2025-08-14T21:55:01.8987850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cuda_dispatch.h 2025-08-14T21:55:01.8991555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta.h 2025-08-14T21:55:01.8995369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta_dispatch.h 2025-08-14T21:55:01.8999355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_native.h 2025-08-14T21:55:01.9003216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_ops.h 2025-08-14T21:55:01.9008117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p.h 2025-08-14T21:55:01.9012028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9015631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cpu_dispatch.h 2025-08-14T21:55:01.9019301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cuda_dispatch.h 2025-08-14T21:55:01.9023446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta.h 2025-08-14T21:55:01.9027540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta_dispatch.h 2025-08-14T21:55:01.9031728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_native.h 2025-08-14T21:55:01.9035890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_ops.h 2025-08-14T21:55:01.9041374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2.h 2025-08-14T21:55:01.9046003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9049225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cpu_dispatch.h 2025-08-14T21:55:01.9053011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cuda_dispatch.h 2025-08-14T21:55:01.9056515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta.h 2025-08-14T21:55:01.9060260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta_dispatch.h 2025-08-14T21:55:01.9063925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_native.h 2025-08-14T21:55:01.9068010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_ops.h 2025-08-14T21:55:01.9071232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp.h 2025-08-14T21:55:01.9074665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h 2025-08-14T21:55:01.9079503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9083470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h 2025-08-14T21:55:01.9087119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h 2025-08-14T21:55:01.9091287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta.h 2025-08-14T21:55:01.9095274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta_dispatch.h 2025-08-14T21:55:01.9099107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_native.h 2025-08-14T21:55:01.9102830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_ops.h 2025-08-14T21:55:01.9106761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9110343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cpu_dispatch.h 2025-08-14T21:55:01.9114833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cuda_dispatch.h 2025-08-14T21:55:01.9118703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta.h 2025-08-14T21:55:01.9122612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta_dispatch.h 2025-08-14T21:55:01.9126490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_native.h 2025-08-14T21:55:01.9130147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_ops.h 2025-08-14T21:55:01.9133855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp.h 2025-08-14T21:55:01.9137569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9141204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9145025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_native.h 2025-08-14T21:55:01.9149337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_ops.h 2025-08-14T21:55:01.9153229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet.h 2025-08-14T21:55:01.9156764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9160435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_native.h 2025-08-14T21:55:01.9164007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_ops.h 2025-08-14T21:55:01.9168524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and.h 2025-08-14T21:55:01.9172217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9176319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cpu_dispatch.h 2025-08-14T21:55:01.9180133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cuda_dispatch.h 2025-08-14T21:55:01.9184736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_native.h 2025-08-14T21:55:01.9188731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_ops.h 2025-08-14T21:55:01.9193231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not.h 2025-08-14T21:55:01.9197754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9201491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cpu_dispatch.h 2025-08-14T21:55:01.9205169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cuda_dispatch.h 2025-08-14T21:55:01.9208861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_native.h 2025-08-14T21:55:01.9212942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_ops.h 2025-08-14T21:55:01.9216626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or.h 2025-08-14T21:55:01.9220908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9224709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cpu_dispatch.h 2025-08-14T21:55:01.9228492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cuda_dispatch.h 2025-08-14T21:55:01.9232220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_native.h 2025-08-14T21:55:01.9235911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_ops.h 2025-08-14T21:55:01.9240287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor.h 2025-08-14T21:55:01.9244103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9247790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cpu_dispatch.h 2025-08-14T21:55:01.9252111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cuda_dispatch.h 2025-08-14T21:55:01.9255985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_native.h 2025-08-14T21:55:01.9259701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_ops.h 2025-08-14T21:55:01.9263427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit.h 2025-08-14T21:55:01.9267028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward.h 2025-08-14T21:55:01.9271099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9274896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cpu_dispatch.h 2025-08-14T21:55:01.9278675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cuda_dispatch.h 2025-08-14T21:55:01.9282336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta.h 2025-08-14T21:55:01.9286109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta_dispatch.h 2025-08-14T21:55:01.9290681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_native.h 2025-08-14T21:55:01.9294532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_ops.h 2025-08-14T21:55:01.9298310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cpu_dispatch.h 2025-08-14T21:55:01.9302515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cuda_dispatch.h 2025-08-14T21:55:01.9306238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_meta_dispatch.h 2025-08-14T21:55:01.9309982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_native.h 2025-08-14T21:55:01.9314123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_ops.h 2025-08-14T21:55:01.9318171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace.h 2025-08-14T21:55:01.9321707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9326684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cpu_dispatch.h 2025-08-14T21:55:01.9330482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cuda_dispatch.h 2025-08-14T21:55:01.9334352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_meta_dispatch.h 2025-08-14T21:55:01.9338153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_native.h 2025-08-14T21:55:01.9341852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_ops.h 2025-08-14T21:55:01.9345547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp.h 2025-08-14T21:55:01.9349617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9353528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9358010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9362007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_native.h 2025-08-14T21:55:01.9365860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_ops.h 2025-08-14T21:55:01.9369725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9373330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cpu_dispatch.h 2025-08-14T21:55:01.9376962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cuda_dispatch.h 2025-08-14T21:55:01.9380967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta.h 2025-08-14T21:55:01.9384461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta_dispatch.h 2025-08-14T21:55:01.9388089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_native.h 2025-08-14T21:55:01.9391708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal.h 2025-08-14T21:55:01.9396206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9400088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cpu_dispatch.h 2025-08-14T21:55:01.9403923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cuda_dispatch.h 2025-08-14T21:55:01.9408412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_meta_dispatch.h 2025-08-14T21:55:01.9412696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_native.h 2025-08-14T21:55:01.9416412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_ops.h 2025-08-14T21:55:01.9420175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_ops.h 2025-08-14T21:55:01.9423679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid.h 2025-08-14T21:55:01.9428394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward.h 2025-08-14T21:55:01.9432345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h 2025-08-14T21:55:01.9435940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h 2025-08-14T21:55:01.9439971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_native.h 2025-08-14T21:55:01.9443982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_ops.h 2025-08-14T21:55:01.9448208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9451953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward.h 2025-08-14T21:55:01.9456096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h 2025-08-14T21:55:01.9460175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h 2025-08-14T21:55:01.9464534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_native.h 2025-08-14T21:55:01.9468341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_ops.h 2025-08-14T21:55:01.9472190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_native.h 2025-08-14T21:55:01.9476269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_ops.h 2025-08-14T21:55:01.9480164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax.h 2025-08-14T21:55:01.9484008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9487907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9491994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_native.h 2025-08-14T21:55:01.9495727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_ops.h 2025-08-14T21:55:01.9499607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift.h 2025-08-14T21:55:01.9503387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9507428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cpu_dispatch.h 2025-08-14T21:55:01.9511233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cuda_dispatch.h 2025-08-14T21:55:01.9515442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_meta_dispatch.h 2025-08-14T21:55:01.9519491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_native.h 2025-08-14T21:55:01.9524035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_ops.h 2025-08-14T21:55:01.9528112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm.h 2025-08-14T21:55:01.9532011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell.h 2025-08-14T21:55:01.9536435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9540380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_native.h 2025-08-14T21:55:01.9544462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_ops.h 2025-08-14T21:55:01.9548226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9552162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward.h 2025-08-14T21:55:01.9556161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9560106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_native.h 2025-08-14T21:55:01.9563902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_ops.h 2025-08-14T21:55:01.9567890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_native.h 2025-08-14T21:55:01.9571816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_ops.h 2025-08-14T21:55:01.9611385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt.h 2025-08-14T21:55:01.9615396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9619790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cpu_dispatch.h 2025-08-14T21:55:01.9623386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cuda_dispatch.h 2025-08-14T21:55:01.9626821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta.h 2025-08-14T21:55:01.9630564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta_dispatch.h 2025-08-14T21:55:01.9634549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_native.h 2025-08-14T21:55:01.9638105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_ops.h 2025-08-14T21:55:01.9642460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve.h 2025-08-14T21:55:01.9646439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9650629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_native.h 2025-08-14T21:55:01.9654593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_ops.h 2025-08-14T21:55:01.9658214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack.h 2025-08-14T21:55:01.9662021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9666143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h 2025-08-14T21:55:01.9669865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h 2025-08-14T21:55:01.9674013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta.h 2025-08-14T21:55:01.9677939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta_dispatch.h 2025-08-14T21:55:01.9681793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_native.h 2025-08-14T21:55:01.9685689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_ops.h 2025-08-14T21:55:01.9689160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss.h 2025-08-14T21:55:01.9692814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9696339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_native.h 2025-08-14T21:55:01.9699975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_ops.h 2025-08-14T21:55:01.9704025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill.h 2025-08-14T21:55:01.9707829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9711406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cpu_dispatch.h 2025-08-14T21:55:01.9715407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cuda_dispatch.h 2025-08-14T21:55:01.9719185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_meta_dispatch.h 2025-08-14T21:55:01.9722998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_native.h 2025-08-14T21:55:01.9726645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_ops.h 2025-08-14T21:55:01.9730427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter.h 2025-08-14T21:55:01.9733919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward.h 2025-08-14T21:55:01.9738103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9741563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_native.h 2025-08-14T21:55:01.9745835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_ops.h 2025-08-14T21:55:01.9749654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9753590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h 2025-08-14T21:55:01.9757277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h 2025-08-14T21:55:01.9761303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_meta_dispatch.h 2025-08-14T21:55:01.9768361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_native.h 2025-08-14T21:55:01.9772320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_ops.h 2025-08-14T21:55:01.9776077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select.h 2025-08-14T21:55:01.9780199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward.h 2025-08-14T21:55:01.9784149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9787935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_native.h 2025-08-14T21:55:01.9791674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_ops.h 2025-08-14T21:55:01.9795752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cpu_dispatch.h 2025-08-14T21:55:01.9799601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cuda_dispatch.h 2025-08-14T21:55:01.9803259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_native.h 2025-08-14T21:55:01.9807561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_ops.h 2025-08-14T21:55:01.9811110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul.h 2025-08-14T21:55:01.9815837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward.h 2025-08-14T21:55:01.9819589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:01.9823207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_native.h 2025-08-14T21:55:01.9826873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_ops.h 2025-08-14T21:55:01.9830879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9834836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_native.h 2025-08-14T21:55:01.9838956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_ops.h 2025-08-14T21:55:01.9842362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp.h 2025-08-14T21:55:01.9845981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward.h 2025-08-14T21:55:01.9849803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9853536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_native.h 2025-08-14T21:55:01.9857114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_ops.h 2025-08-14T21:55:01.9861305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9865464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_native.h 2025-08-14T21:55:01.9869090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_ops.h 2025-08-14T21:55:01.9873145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H.h 2025-08-14T21:55:01.9876694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9880966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_native.h 2025-08-14T21:55:01.9884694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_ops.h 2025-08-14T21:55:01.9888576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power.h 2025-08-14T21:55:01.9892631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9896369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_native.h 2025-08-14T21:55:01.9900066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_ops.h 2025-08-14T21:55:01.9903673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max.h 2025-08-14T21:55:01.9907509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum.h 2025-08-14T21:55:01.9911065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9914511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cpu_dispatch.h 2025-08-14T21:55:01.9918382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cuda_dispatch.h 2025-08-14T21:55:01.9921944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta.h 2025-08-14T21:55:01.9925575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta_dispatch.h 2025-08-14T21:55:01.9929247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_native.h 2025-08-14T21:55:01.9932857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_ops.h 2025-08-14T21:55:01.9936714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:01.9941106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9945063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cpu_dispatch.h 2025-08-14T21:55:01.9948799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cuda_dispatch.h 2025-08-14T21:55:01.9952319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta.h 2025-08-14T21:55:01.9955883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta_dispatch.h 2025-08-14T21:55:01.9959478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_native.h 2025-08-14T21:55:01.9962992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_ops.h 2025-08-14T21:55:01.9966296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d.h 2025-08-14T21:55:01.9970068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9974609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_native.h 2025-08-14T21:55:01.9978007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_ops.h 2025-08-14T21:55:01.9982370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices.h 2025-08-14T21:55:01.9986456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:01.9990082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_native.h 2025-08-14T21:55:01.9993805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_ops.h 2025-08-14T21:55:01.9997588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d.h 2025-08-14T21:55:02.0001590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward.h 2025-08-14T21:55:02.0005477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0009099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_native.h 2025-08-14T21:55:02.0012811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_ops.h 2025-08-14T21:55:02.0016786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0020594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_native.h 2025-08-14T21:55:02.0024406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_ops.h 2025-08-14T21:55:02.0028143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices.h 2025-08-14T21:55:02.0031945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward.h 2025-08-14T21:55:02.0035973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.0040047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h 2025-08-14T21:55:02.0044201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h 2025-08-14T21:55:02.0048163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h 2025-08-14T21:55:02.0051936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h 2025-08-14T21:55:02.0056323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h 2025-08-14T21:55:02.0060547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h 2025-08-14T21:55:02.0064531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.0068409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h 2025-08-14T21:55:02.0072807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h 2025-08-14T21:55:02.0076663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta.h 2025-08-14T21:55:02.0080907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h 2025-08-14T21:55:02.0085337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_native.h 2025-08-14T21:55:02.0089857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_ops.h 2025-08-14T21:55:02.0094334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d.h 2025-08-14T21:55:02.0098169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0102657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_native.h 2025-08-14T21:55:02.0106936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_ops.h 2025-08-14T21:55:02.0111092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices.h 2025-08-14T21:55:02.0116028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward.h 2025-08-14T21:55:02.0120745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h 2025-08-14T21:55:02.0125422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h 2025-08-14T21:55:02.0130055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h 2025-08-14T21:55:02.0134434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h 2025-08-14T21:55:02.0138873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h 2025-08-14T21:55:02.0142790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h 2025-08-14T21:55:02.0147239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_native.h 2025-08-14T21:55:02.0151659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_ops.h 2025-08-14T21:55:02.0155096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d.h 2025-08-14T21:55:02.0159025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h 2025-08-14T21:55:02.0163123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h 2025-08-14T21:55:02.0166667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_native.h 2025-08-14T21:55:02.0170427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_ops.h 2025-08-14T21:55:02.0174488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d.h 2025-08-14T21:55:02.0178263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h 2025-08-14T21:55:02.0182602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h 2025-08-14T21:55:02.0186340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_native.h 2025-08-14T21:55:02.0190224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_ops.h 2025-08-14T21:55:02.0194580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean.h 2025-08-14T21:55:02.0198662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.0202352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0206008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0209605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cpu_dispatch.h 2025-08-14T21:55:02.0213311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cuda_dispatch.h 2025-08-14T21:55:02.0216939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta.h 2025-08-14T21:55:02.0220630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta_dispatch.h 2025-08-14T21:55:02.0224480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_native.h 2025-08-14T21:55:02.0228246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_ops.h 2025-08-14T21:55:02.0232192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median.h 2025-08-14T21:55:02.0235980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0239777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0243497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cpu_dispatch.h 2025-08-14T21:55:02.0247382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cuda_dispatch.h 2025-08-14T21:55:02.0251277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_native.h 2025-08-14T21:55:02.0262063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_ops.h 2025-08-14T21:55:02.0262624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid.h 2025-08-14T21:55:02.0263826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0267518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_native.h 2025-08-14T21:55:02.0271100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_ops.h 2025-08-14T21:55:02.0274691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH.h 2025-08-14T21:55:02.0278310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0281777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_native.h 2025-08-14T21:55:02.0285413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_ops.h 2025-08-14T21:55:02.0288754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min.h 2025-08-14T21:55:02.0292548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum.h 2025-08-14T21:55:02.0296138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.0299635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cpu_dispatch.h 2025-08-14T21:55:02.0303285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cuda_dispatch.h 2025-08-14T21:55:02.0306915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta.h 2025-08-14T21:55:02.0310601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta_dispatch.h 2025-08-14T21:55:02.0314226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_native.h 2025-08-14T21:55:02.0317995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_ops.h 2025-08-14T21:55:02.0321813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.0325428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0329393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cpu_dispatch.h 2025-08-14T21:55:02.0333027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cuda_dispatch.h 2025-08-14T21:55:02.0336503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta.h 2025-08-14T21:55:02.0339844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta_dispatch.h 2025-08-14T21:55:02.0343697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_native.h 2025-08-14T21:55:02.0347400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_ops.h 2025-08-14T21:55:02.0350683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm.h 2025-08-14T21:55:02.0354219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward.h 2025-08-14T21:55:02.0358062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0361718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:55:02.0365360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_native.h 2025-08-14T21:55:02.0369282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h 2025-08-14T21:55:02.0373188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0376941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h 2025-08-14T21:55:02.0380713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_native.h 2025-08-14T21:55:02.0384512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_ops.h 2025-08-14T21:55:02.0388908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution.h 2025-08-14T21:55:02.0393459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu.h 2025-08-14T21:55:02.0397337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h 2025-08-14T21:55:02.0401302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_native.h 2025-08-14T21:55:02.0405164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h 2025-08-14T21:55:02.0409105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0413225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h 2025-08-14T21:55:02.0417234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_native.h 2025-08-14T21:55:02.0421119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_ops.h 2025-08-14T21:55:02.0424982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu.h 2025-08-14T21:55:02.0428920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h 2025-08-14T21:55:02.0432703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_native.h 2025-08-14T21:55:02.0436599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_ops.h 2025-08-14T21:55:02.0440954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose.h 2025-08-14T21:55:02.0445580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0449416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h 2025-08-14T21:55:02.0453349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_native.h 2025-08-14T21:55:02.0457487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_ops.h 2025-08-14T21:55:02.0461313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution.h 2025-08-14T21:55:02.0465911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0469849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h 2025-08-14T21:55:02.0473761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_native.h 2025-08-14T21:55:02.0477714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h 2025-08-14T21:55:02.0481699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn.h 2025-08-14T21:55:02.0485674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward.h 2025-08-14T21:55:02.0490342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0494253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h 2025-08-14T21:55:02.0498190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_native.h 2025-08-14T21:55:02.0502054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_ops.h 2025-08-14T21:55:02.0506055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0510148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h 2025-08-14T21:55:02.0514182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_native.h 2025-08-14T21:55:02.0518115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_ops.h 2025-08-14T21:55:02.0522263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish.h 2025-08-14T21:55:02.0525902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward.h 2025-08-14T21:55:02.0529964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.0534037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cpu_dispatch.h 2025-08-14T21:55:02.0538412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cuda_dispatch.h 2025-08-14T21:55:02.0542603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_native.h 2025-08-14T21:55:02.0546877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_ops.h 2025-08-14T21:55:02.0550843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.0554532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cpu_dispatch.h 2025-08-14T21:55:02.0558402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cuda_dispatch.h 2025-08-14T21:55:02.0562017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta.h 2025-08-14T21:55:02.0565754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta_dispatch.h 2025-08-14T21:55:02.0569389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_native.h 2025-08-14T21:55:02.0573949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_ops.h 2025-08-14T21:55:02.0577954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h 2025-08-14T21:55:02.0582177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h 2025-08-14T21:55:02.0586036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.0589675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h 2025-08-14T21:55:02.0593895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h 2025-08-14T21:55:02.0598145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h 2025-08-14T21:55:02.0602398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h 2025-08-14T21:55:02.0606405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution.h 2025-08-14T21:55:02.0610429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2712173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_native.h 2025-08-14T21:55:02.2715851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_ops.h 2025-08-14T21:55:02.2719954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear.h 2025-08-14T21:55:02.2723723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward.h 2025-08-14T21:55:02.2727680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2731716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input.h 2025-08-14T21:55:02.2735723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2739560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h 2025-08-14T21:55:02.2743620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h 2025-08-14T21:55:02.2747400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_native.h 2025-08-14T21:55:02.2751278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_ops.h 2025-08-14T21:55:02.2755750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights.h 2025-08-14T21:55:02.2759523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2763333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h 2025-08-14T21:55:02.2767395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h 2025-08-14T21:55:02.2771117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2775298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_native.h 2025-08-14T21:55:02.2778916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_ops.h 2025-08-14T21:55:02.2782645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d.h 2025-08-14T21:55:02.2787007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h 2025-08-14T21:55:02.2791557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2795379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h 2025-08-14T21:55:02.2799809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h 2025-08-14T21:55:02.2803974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2807862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_native.h 2025-08-14T21:55:02.2811816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h 2025-08-14T21:55:02.2815731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d.h 2025-08-14T21:55:02.2819508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h 2025-08-14T21:55:02.2823875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2827636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h 2025-08-14T21:55:02.2831514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h 2025-08-14T21:55:02.2835414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2839551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_native.h 2025-08-14T21:55:02.2843608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h 2025-08-14T21:55:02.2847153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h 2025-08-14T21:55:02.2851436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2856344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h 2025-08-14T21:55:02.2861139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h 2025-08-14T21:55:02.2865149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h 2025-08-14T21:55:02.2869178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2873075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h 2025-08-14T21:55:02.2876807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h 2025-08-14T21:55:02.2880967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer.h 2025-08-14T21:55:02.2884807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h 2025-08-14T21:55:02.2888934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2893056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h 2025-08-14T21:55:02.2896921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h 2025-08-14T21:55:02.2900776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h 2025-08-14T21:55:02.2904802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2909072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h 2025-08-14T21:55:02.2913001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_native.h 2025-08-14T21:55:02.2916713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h 2025-08-14T21:55:02.2920649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm.h 2025-08-14T21:55:02.2924550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.2928542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cpu_dispatch.h 2025-08-14T21:55:02.2932258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cuda_dispatch.h 2025-08-14T21:55:02.2935928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta.h 2025-08-14T21:55:02.2939470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta_dispatch.h 2025-08-14T21:55:02.2943496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_native.h 2025-08-14T21:55:02.2947423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_ops.h 2025-08-14T21:55:02.2950733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode.h 2025-08-14T21:55:02.2954377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.2958285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.2961771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cpu_dispatch.h 2025-08-14T21:55:02.2965446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cuda_dispatch.h 2025-08-14T21:55:02.2969882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_native.h 2025-08-14T21:55:02.2973368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_ops.h 2025-08-14T21:55:02.2976779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis.h 2025-08-14T21:55:02.2980255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.2984258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_native.h 2025-08-14T21:55:02.2987961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_ops.h 2025-08-14T21:55:02.2991625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim.h 2025-08-14T21:55:02.2995379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.2999196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_native.h 2025-08-14T21:55:02.3002675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_ops.h 2025-08-14T21:55:02.3006333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward.h 2025-08-14T21:55:02.3010508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.3014137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_native.h 2025-08-14T21:55:02.3017882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_ops.h 2025-08-14T21:55:02.3021920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward.h 2025-08-14T21:55:02.3026012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.3029843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h 2025-08-14T21:55:02.3033732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h 2025-08-14T21:55:02.3037722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss.h 2025-08-14T21:55:02.3041618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward.h 2025-08-14T21:55:02.3046291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h 2025-08-14T21:55:02.3050331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h 2025-08-14T21:55:02.3054628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_native.h 2025-08-14T21:55:02.3058661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_ops.h 2025-08-14T21:55:02.3063256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.3066900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cpu_dispatch.h 2025-08-14T21:55:02.3070975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cuda_dispatch.h 2025-08-14T21:55:02.3075182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta.h 2025-08-14T21:55:02.3079008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta_dispatch.h 2025-08-14T21:55:02.3083083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_native.h 2025-08-14T21:55:02.3087162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_ops.h 2025-08-14T21:55:02.3090963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort.h 2025-08-14T21:55:02.3094705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.3098309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_native.h 2025-08-14T21:55:02.3102146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_ops.h 2025-08-14T21:55:02.3105691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT.h 2025-08-14T21:55:02.3109310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.3113217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_native.h 2025-08-14T21:55:02.3116734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_ops.h 2025-08-14T21:55:02.3120208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul.h 2025-08-14T21:55:02.3123586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss.h 2025-08-14T21:55:02.3127266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward.h 2025-08-14T21:55:02.3130961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h 2025-08-14T21:55:02.3134782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h 2025-08-14T21:55:02.3138752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h 2025-08-14T21:55:02.3142461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h 2025-08-14T21:55:02.3146315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.3150326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward.h 2025-08-14T21:55:02.3154514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h 2025-08-14T21:55:02.3158486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h 2025-08-14T21:55:02.3162185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h 2025-08-14T21:55:02.3165926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h 2025-08-14T21:55:02.3169753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_native.h 2025-08-14T21:55:02.3173783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_ops.h 2025-08-14T21:55:02.3177719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial.h 2025-08-14T21:55:02.3181446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cpu_dispatch.h 2025-08-14T21:55:02.3185414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cuda_dispatch.h 2025-08-14T21:55:02.3189123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_native.h 2025-08-14T21:55:02.3193090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_ops.h 2025-08-14T21:55:02.3197003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply.h 2025-08-14T21:55:02.3200651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.3204794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_native.h 2025-08-14T21:55:02.3208402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_ops.h 2025-08-14T21:55:02.3212192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss.h 2025-08-14T21:55:02.3215767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward.h 2025-08-14T21:55:02.3219458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h 2025-08-14T21:55:02.3223166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h 2025-08-14T21:55:02.3227472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_native.h 2025-08-14T21:55:02.3231370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_ops.h 2025-08-14T21:55:02.3235119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h 2025-08-14T21:55:02.3239046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h 2025-08-14T21:55:02.3242752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_native.h 2025-08-14T21:55:02.3246455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_ops.h 2025-08-14T21:55:02.3250428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.3254425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.3257982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cpu_dispatch.h 2025-08-14T21:55:02.3261789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cuda_dispatch.h 2025-08-14T21:55:02.3265336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta.h 2025-08-14T21:55:02.3268715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta_dispatch.h 2025-08-14T21:55:02.3272292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_native.h 2025-08-14T21:55:02.3275832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_ops.h 2025-08-14T21:55:02.3279189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv.h 2025-08-14T21:55:02.3282741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma.h 2025-08-14T21:55:02.3287385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4321360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h 2025-08-14T21:55:02.4325011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h 2025-08-14T21:55:02.4328814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_native.h 2025-08-14T21:55:02.4332569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_ops.h 2025-08-14T21:55:02.4336349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4339828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_native.h 2025-08-14T21:55:02.4343589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_ops.h 2025-08-14T21:55:02.4346968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean.h 2025-08-14T21:55:02.4350470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4354123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_native.h 2025-08-14T21:55:02.4357957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_ops.h 2025-08-14T21:55:02.4361539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian.h 2025-08-14T21:55:02.4365227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4369393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4373338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cpu_dispatch.h 2025-08-14T21:55:02.4377028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cuda_dispatch.h 2025-08-14T21:55:02.4381107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_native.h 2025-08-14T21:55:02.4384828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_ops.h 2025-08-14T21:55:02.4388470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile.h 2025-08-14T21:55:02.4392607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4396358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_native.h 2025-08-14T21:55:02.4400098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_ops.h 2025-08-14T21:55:02.4403816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum.h 2025-08-14T21:55:02.4407344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cpu_dispatch.h 2025-08-14T21:55:02.4411042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cuda_dispatch.h 2025-08-14T21:55:02.4414660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_native.h 2025-08-14T21:55:02.4418310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_ops.h 2025-08-14T21:55:02.4422111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num.h 2025-08-14T21:55:02.4426393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4430443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h 2025-08-14T21:55:02.4434300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h 2025-08-14T21:55:02.4437987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_native.h 2025-08-14T21:55:02.4441688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_ops.h 2025-08-14T21:55:02.4445394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow.h 2025-08-14T21:55:02.4450443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4453870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy.h 2025-08-14T21:55:02.4458293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.4462064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h 2025-08-14T21:55:02.4465917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_native.h 2025-08-14T21:55:02.4469753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_ops.h 2025-08-14T21:55:02.4473492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_native.h 2025-08-14T21:55:02.4477072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_ops.h 2025-08-14T21:55:02.4481320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm.h 2025-08-14T21:55:02.4485310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward.h 2025-08-14T21:55:02.4489101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4492890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h 2025-08-14T21:55:02.4496819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:55:02.4500712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_native.h 2025-08-14T21:55:02.4505303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_ops.h 2025-08-14T21:55:02.4509378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h 2025-08-14T21:55:02.4513330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h 2025-08-14T21:55:02.4517110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_native.h 2025-08-14T21:55:02.4521068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_ops.h 2025-08-14T21:55:02.4524860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle.h 2025-08-14T21:55:02.4530542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4534608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h 2025-08-14T21:55:02.4538425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_native.h 2025-08-14T21:55:02.4542276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_ops.h 2025-08-14T21:55:02.4545938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout.h 2025-08-14T21:55:02.4550154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward.h 2025-08-14T21:55:02.4554641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4559260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h 2025-08-14T21:55:02.4563932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h 2025-08-14T21:55:02.4568178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_native.h 2025-08-14T21:55:02.4572498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_ops.h 2025-08-14T21:55:02.4576992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4581895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cpu_dispatch.h 2025-08-14T21:55:02.4586243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cuda_dispatch.h 2025-08-14T21:55:02.4589882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_native.h 2025-08-14T21:55:02.4593772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_ops.h 2025-08-14T21:55:02.4597642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm.h 2025-08-14T21:55:02.4601414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward.h 2025-08-14T21:55:02.4605423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4609459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h 2025-08-14T21:55:02.4613240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h 2025-08-14T21:55:02.4617138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_native.h 2025-08-14T21:55:02.4620913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_ops.h 2025-08-14T21:55:02.4624785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4629214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h 2025-08-14T21:55:02.4633699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h 2025-08-14T21:55:02.4637523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_native.h 2025-08-14T21:55:02.4641286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_ops.h 2025-08-14T21:55:02.4645371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm.h 2025-08-14T21:55:02.4649038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward.h 2025-08-14T21:55:02.4653063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4657090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h 2025-08-14T21:55:02.4660947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h 2025-08-14T21:55:02.4664799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_native.h 2025-08-14T21:55:02.4668600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_ops.h 2025-08-14T21:55:02.4672520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4676209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h 2025-08-14T21:55:02.4680424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h 2025-08-14T21:55:02.4684156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_native.h 2025-08-14T21:55:02.4687862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_ops.h 2025-08-14T21:55:02.4691528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm.h 2025-08-14T21:55:02.4695422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4699147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_native.h 2025-08-14T21:55:02.4702991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_ops.h 2025-08-14T21:55:02.4707472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne.h 2025-08-14T21:55:02.4710927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg.h 2025-08-14T21:55:02.4714229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative.h 2025-08-14T21:55:02.4717712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4721285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_native.h 2025-08-14T21:55:02.4724903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_ops.h 2025-08-14T21:55:02.4729221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.4732739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cpu_dispatch.h 2025-08-14T21:55:02.4736493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cuda_dispatch.h 2025-08-14T21:55:02.4759248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta.h 2025-08-14T21:55:02.4762676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta_dispatch.h 2025-08-14T21:55:02.4766229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_native.h 2025-08-14T21:55:02.4769761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_ops.h 2025-08-14T21:55:02.4773150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor.h 2025-08-14T21:55:02.4777008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4780888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_native.h 2025-08-14T21:55:02.4784552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_ops.h 2025-08-14T21:55:02.4788123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty.h 2025-08-14T21:55:02.4791841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4795469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_native.h 2025-08-14T21:55:02.4799732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_ops.h 2025-08-14T21:55:02.4803354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided.h 2025-08-14T21:55:02.4807502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.4811263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4814882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_native.h 2025-08-14T21:55:02.4818721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_ops.h 2025-08-14T21:55:02.4822995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full.h 2025-08-14T21:55:02.4826418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4830074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_native.h 2025-08-14T21:55:02.4833686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_ops.h 2025-08-14T21:55:02.4837183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones.h 2025-08-14T21:55:02.4840758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4844377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_native.h 2025-08-14T21:55:02.4848945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_ops.h 2025-08-14T21:55:02.4852914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros.h 2025-08-14T21:55:02.4856724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.4860697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_native.h 2025-08-14T21:55:02.4864440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_ops.h 2025-08-14T21:55:02.4868009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter.h 2025-08-14T21:55:02.4871885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.4875539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cpu_dispatch.h 2025-08-14T21:55:02.4879359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cuda_dispatch.h 2025-08-14T21:55:02.4883680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta.h 2025-08-14T21:55:02.4887762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta_dispatch.h 2025-08-14T21:55:02.4891504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_native.h 2025-08-14T21:55:02.4895367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_ops.h 2025-08-14T21:55:02.4899497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.4903009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cpu_dispatch.h 2025-08-14T21:55:02.4906698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cuda_dispatch.h 2025-08-14T21:55:02.4910330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta.h 2025-08-14T21:55:02.4913786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta_dispatch.h 2025-08-14T21:55:02.4917944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_native.h 2025-08-14T21:55:02.4921302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_ops.h 2025-08-14T21:55:02.4924758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss.h 2025-08-14T21:55:02.4928085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d.h 2025-08-14T21:55:02.4931686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward.h 2025-08-14T21:55:02.4936052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h 2025-08-14T21:55:02.4939859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h 2025-08-14T21:55:02.4943523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_native.h 2025-08-14T21:55:02.4947791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_ops.h 2025-08-14T21:55:02.4951747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.4955839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward.h 2025-08-14T21:55:02.4959815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h 2025-08-14T21:55:02.4964147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h 2025-08-14T21:55:02.4968514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_native.h 2025-08-14T21:55:02.4972276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_ops.h 2025-08-14T21:55:02.4976031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_native.h 2025-08-14T21:55:02.4979742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_ops.h 2025-08-14T21:55:02.4983331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward.h 2025-08-14T21:55:02.4987252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.4991066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h 2025-08-14T21:55:02.4994679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h 2025-08-14T21:55:02.4999357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta.h 2025-08-14T21:55:02.5002991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h 2025-08-14T21:55:02.5006649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_native.h 2025-08-14T21:55:02.5010411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_ops.h 2025-08-14T21:55:02.5014411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5018107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward.h 2025-08-14T21:55:02.5022742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5026718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h 2025-08-14T21:55:02.5030450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h 2025-08-14T21:55:02.5034638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta.h 2025-08-14T21:55:02.5039234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h 2025-08-14T21:55:02.5043178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_native.h 2025-08-14T21:55:02.5047126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_ops.h 2025-08-14T21:55:02.5051379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_native.h 2025-08-14T21:55:02.5055104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd.h 2025-08-14T21:55:02.5059977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5064073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_native.h 2025-08-14T21:55:02.5068480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_ops.h 2025-08-14T21:55:02.5072584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_ops.h 2025-08-14T21:55:02.5077002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero.h 2025-08-14T21:55:02.5080513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cpu_dispatch.h 2025-08-14T21:55:02.5084538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cuda_dispatch.h 2025-08-14T21:55:02.5088294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_native.h 2025-08-14T21:55:02.5091805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy.h 2025-08-14T21:55:02.5095780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5099479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_native.h 2025-08-14T21:55:02.5103296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_ops.h 2025-08-14T21:55:02.5106920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_ops.h 2025-08-14T21:55:02.5110922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static.h 2025-08-14T21:55:02.5114665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h 2025-08-14T21:55:02.5118565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h 2025-08-14T21:55:02.5122153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_native.h 2025-08-14T21:55:02.5125993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_ops.h 2025-08-14T21:55:02.5129626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm.h 2025-08-14T21:55:02.5132888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal.h 2025-08-14T21:55:02.5136293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5140019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cpu_dispatch.h 2025-08-14T21:55:02.5143657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cuda_dispatch.h 2025-08-14T21:55:02.5147254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_meta_dispatch.h 2025-08-14T21:55:02.5150862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_native.h 2025-08-14T21:55:02.5154462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_ops.h 2025-08-14T21:55:02.5158496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5162288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5166413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5169982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cpu_dispatch.h 2025-08-14T21:55:02.5173595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cuda_dispatch.h 2025-08-14T21:55:02.5177207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim.h 2025-08-14T21:55:02.5180878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5201491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_native.h 2025-08-14T21:55:02.5202248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_ops.h 2025-08-14T21:55:02.5202813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta.h 2025-08-14T21:55:02.5203483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta_dispatch.h 2025-08-14T21:55:02.5204041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_native.h 2025-08-14T21:55:02.5204568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_ops.h 2025-08-14T21:55:02.5207136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal.h 2025-08-14T21:55:02.5211121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5214891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_native.h 2025-08-14T21:55:02.5218525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_ops.h 2025-08-14T21:55:02.5222846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm.h 2025-08-14T21:55:02.5226825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5230524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_native.h 2025-08-14T21:55:02.5234239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_ops.h 2025-08-14T21:55:02.5237995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T.h 2025-08-14T21:55:02.5241451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5245041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_native.h 2025-08-14T21:55:02.5249552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_ops.h 2025-08-14T21:55:02.5253124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones.h 2025-08-14T21:55:02.5256792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5260414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like.h 2025-08-14T21:55:02.5264148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5268082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_native.h 2025-08-14T21:55:02.5272170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_ops.h 2025-08-14T21:55:02.5275816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_native.h 2025-08-14T21:55:02.5279790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_ops.h 2025-08-14T21:55:02.5283196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot.h 2025-08-14T21:55:02.5286739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5290342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_native.h 2025-08-14T21:55:02.5293911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_ops.h 2025-08-14T21:55:02.5297871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or.h 2025-08-14T21:55:02.5301287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr.h 2025-08-14T21:55:02.5304846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5308723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_native.h 2025-08-14T21:55:02.5312357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_ops.h 2025-08-14T21:55:02.5315918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr.h 2025-08-14T21:55:02.5319515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cpu_dispatch.h 2025-08-14T21:55:02.5323204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cuda_dispatch.h 2025-08-14T21:55:02.5326994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_native.h 2025-08-14T21:55:02.5330679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_ops.h 2025-08-14T21:55:02.5334664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5338149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_native.h 2025-08-14T21:55:02.5342061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_ops.h 2025-08-14T21:55:02.5345721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer.h 2025-08-14T21:55:02.5349220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5352744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_native.h 2025-08-14T21:55:02.5356258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_ops.h 2025-08-14T21:55:02.5360367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr.h 2025-08-14T21:55:02.5364130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5367735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_native.h 2025-08-14T21:55:02.5371542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_ops.h 2025-08-14T21:55:02.5375251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad.h 2025-08-14T21:55:02.5378750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5382836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_native.h 2025-08-14T21:55:02.5386437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_ops.h 2025-08-14T21:55:02.5389882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence.h 2025-08-14T21:55:02.5393655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5397471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_native.h 2025-08-14T21:55:02.5401288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_ops.h 2025-08-14T21:55:02.5405188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance.h 2025-08-14T21:55:02.5409637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5413318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_native.h 2025-08-14T21:55:02.5417198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_ops.h 2025-08-14T21:55:02.5420935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist.h 2025-08-14T21:55:02.5424510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5428403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_native.h 2025-08-14T21:55:02.5432016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_ops.h 2025-08-14T21:55:02.5435639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute.h 2025-08-14T21:55:02.5439297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5443118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy.h 2025-08-14T21:55:02.5446748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5450687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5454803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_native.h 2025-08-14T21:55:02.5458567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_ops.h 2025-08-14T21:55:02.5462300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_native.h 2025-08-14T21:55:02.5466019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_ops.h 2025-08-14T21:55:02.5469843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse.h 2025-08-14T21:55:02.5473509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5477092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_native.h 2025-08-14T21:55:02.5481070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_ops.h 2025-08-14T21:55:02.5485264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory.h 2025-08-14T21:55:02.5489920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5493555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_native.h 2025-08-14T21:55:02.5497284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_ops.h 2025-08-14T21:55:02.5501357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle.h 2025-08-14T21:55:02.5504945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5508992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5512887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h 2025-08-14T21:55:02.5517285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_native.h 2025-08-14T21:55:02.5522198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_ops.h 2025-08-14T21:55:02.5525993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle.h 2025-08-14T21:55:02.5530022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5534054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5537941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h 2025-08-14T21:55:02.5541534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_native.h 2025-08-14T21:55:02.5545038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_ops.h 2025-08-14T21:55:02.5548888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson.h 2025-08-14T21:55:02.5552460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5556009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cpu_dispatch.h 2025-08-14T21:55:02.5559966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cuda_dispatch.h 2025-08-14T21:55:02.5563829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_native.h 2025-08-14T21:55:02.5567667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss.h 2025-08-14T21:55:02.5571492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5575126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_native.h 2025-08-14T21:55:02.5578998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_ops.h 2025-08-14T21:55:02.5582690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_ops.h 2025-08-14T21:55:02.5586524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar.h 2025-08-14T21:55:02.5590300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5594064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cpu_dispatch.h 2025-08-14T21:55:02.5597855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cuda_dispatch.h 2025-08-14T21:55:02.5601746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_native.h 2025-08-14T21:55:02.5605238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_ops.h 2025-08-14T21:55:02.5608834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma.h 2025-08-14T21:55:02.5612602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5616563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5620518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cpu_dispatch.h 2025-08-14T21:55:02.5624189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cuda_dispatch.h 2025-08-14T21:55:02.5627905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta.h 2025-08-14T21:55:02.5631568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta_dispatch.h 2025-08-14T21:55:02.5635740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_native.h 2025-08-14T21:55:02.5639878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_ops.h 2025-08-14T21:55:02.5643674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive.h 2025-08-14T21:55:02.5647155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5651078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_native.h 2025-08-14T21:55:02.5654565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_ops.h 2025-08-14T21:55:02.5658270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow.h 2025-08-14T21:55:02.5661869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5665340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cpu_dispatch.h 2025-08-14T21:55:02.5669091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cuda_dispatch.h 2025-08-14T21:55:02.5672566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta.h 2025-08-14T21:55:02.5675937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta_dispatch.h 2025-08-14T21:55:02.5680000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_native.h 2025-08-14T21:55:02.5683660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_ops.h 2025-08-14T21:55:02.5686918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu.h 2025-08-14T21:55:02.5690370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5694249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_native.h 2025-08-14T21:55:02.5698004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_ops.h 2025-08-14T21:55:02.5701608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod.h 2025-08-14T21:55:02.5705275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:02.5708870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:02.5712809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:02.5716982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cpu_dispatch.h 2025-08-14T21:55:02.5720883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cuda_dispatch.h 2025-08-14T21:55:02.5725153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta.h 2025-08-14T21:55:02.5728802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta_dispatch.h 2025-08-14T21:55:03.0920672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_native.h 2025-08-14T21:55:03.0923989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_ops.h 2025-08-14T21:55:03.0927473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types.h 2025-08-14T21:55:03.0931229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.0934883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_native.h 2025-08-14T21:55:03.0938669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_ops.h 2025-08-14T21:55:03.0942633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put.h 2025-08-14T21:55:03.0946588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.0950234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cpu_dispatch.h 2025-08-14T21:55:03.0953706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cuda_dispatch.h 2025-08-14T21:55:03.0957596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_meta_dispatch.h 2025-08-14T21:55:03.0961186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_native.h 2025-08-14T21:55:03.0964738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_ops.h 2025-08-14T21:55:03.0968095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr.h 2025-08-14T21:55:03.0972126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.0975460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_native.h 2025-08-14T21:55:03.0978984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_ops.h 2025-08-14T21:55:03.0982439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme.h 2025-08-14T21:55:03.0985778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_native.h 2025-08-14T21:55:03.0989254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_ops.h 2025-08-14T21:55:03.0993622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile.h 2025-08-14T21:55:03.0997461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1001377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_native.h 2025-08-14T21:55:03.1004950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_ops.h 2025-08-14T21:55:03.1008577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm.h 2025-08-14T21:55:03.1012577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1016184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_native.h 2025-08-14T21:55:03.1019949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_ops.h 2025-08-14T21:55:03.1023593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell.h 2025-08-14T21:55:03.1027710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1031465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_native.h 2025-08-14T21:55:03.1035171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_ops.h 2025-08-14T21:55:03.1039029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell.h 2025-08-14T21:55:03.1042917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1047081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_native.h 2025-08-14T21:55:03.1051170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_ops.h 2025-08-14T21:55:03.1054946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d.h 2025-08-14T21:55:03.1058891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1062498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_native.h 2025-08-14T21:55:03.1066208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_ops.h 2025-08-14T21:55:03.1069986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d.h 2025-08-14T21:55:03.1073912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1077873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_native.h 2025-08-14T21:55:03.1081957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_ops.h 2025-08-14T21:55:03.1085676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d.h 2025-08-14T21:55:03.1090137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1093908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_native.h 2025-08-14T21:55:03.1097571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_ops.h 2025-08-14T21:55:03.1102165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell.h 2025-08-14T21:55:03.1106130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1110079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h 2025-08-14T21:55:03.1114687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h 2025-08-14T21:55:03.1119289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell.h 2025-08-14T21:55:03.1123845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1128305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h 2025-08-14T21:55:03.1132718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h 2025-08-14T21:55:03.1137134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel.h 2025-08-14T21:55:03.1141976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1146389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h 2025-08-14T21:55:03.1150423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h 2025-08-14T21:55:03.1154488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_native.h 2025-08-14T21:55:03.1158567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_ops.h 2025-08-14T21:55:03.1162463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor.h 2025-08-14T21:55:03.1166489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1170305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h 2025-08-14T21:55:03.1174348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h 2025-08-14T21:55:03.1178326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic.h 2025-08-14T21:55:03.1182411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1186563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h 2025-08-14T21:55:03.1192107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h 2025-08-14T21:55:03.1196150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h 2025-08-14T21:55:03.1200431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h 2025-08-14T21:55:03.1204301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_native.h 2025-08-14T21:55:03.1208434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_ops.h 2025-08-14T21:55:03.1212067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis.h 2025-08-14T21:55:03.1215600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_native.h 2025-08-14T21:55:03.1219205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_ops.h 2025-08-14T21:55:03.1222909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales.h 2025-08-14T21:55:03.1227630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1231639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_native.h 2025-08-14T21:55:03.1235265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_ops.h 2025-08-14T21:55:03.1239143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points.h 2025-08-14T21:55:03.1243264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1246921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_native.h 2025-08-14T21:55:03.1250916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_ops.h 2025-08-14T21:55:03.1254701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale.h 2025-08-14T21:55:03.1258187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_native.h 2025-08-14T21:55:03.1261696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_ops.h 2025-08-14T21:55:03.1265315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point.h 2025-08-14T21:55:03.1268910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_native.h 2025-08-14T21:55:03.1272533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_ops.h 2025-08-14T21:55:03.1276205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg.h 2025-08-14T21:55:03.1280578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1284318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_native.h 2025-08-14T21:55:03.1287857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_ops.h 2025-08-14T21:55:03.1291360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand.h 2025-08-14T21:55:03.1295218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint.h 2025-08-14T21:55:03.1298830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1302282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like.h 2025-08-14T21:55:03.1306371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1310187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_native.h 2025-08-14T21:55:03.1313909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_ops.h 2025-08-14T21:55:03.1317638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_native.h 2025-08-14T21:55:03.1321242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_ops.h 2025-08-14T21:55:03.1325073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn.h 2025-08-14T21:55:03.1328636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1332273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1335872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like.h 2025-08-14T21:55:03.1339700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1343451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:55:03.1347055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_native.h 2025-08-14T21:55:03.1350708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_ops.h 2025-08-14T21:55:03.1354924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_native.h 2025-08-14T21:55:03.1358947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_ops.h 2025-08-14T21:55:03.1363231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random.h 2025-08-14T21:55:03.1366688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1370235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cpu_dispatch.h 2025-08-14T21:55:03.1373871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cuda_dispatch.h 2025-08-14T21:55:03.1377545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_meta_dispatch.h 2025-08-14T21:55:03.1381240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_native.h 2025-08-14T21:55:03.1384811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_ops.h 2025-08-14T21:55:03.1388432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm.h 2025-08-14T21:55:03.1392083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1395613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cpu_dispatch.h 2025-08-14T21:55:03.1399988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cuda_dispatch.h 2025-08-14T21:55:03.1404012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_native.h 2025-08-14T21:55:03.1407596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_ops.h 2025-08-14T21:55:03.1411506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1415092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1418836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like.h 2025-08-14T21:55:03.1422636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1426186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_native.h 2025-08-14T21:55:03.1429984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_ops.h 2025-08-14T21:55:03.1433827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_native.h 2025-08-14T21:55:03.1437415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_ops.h 2025-08-14T21:55:03.1440771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range.h 2025-08-14T21:55:03.1444325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1448027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cpu_dispatch.h 2025-08-14T21:55:03.1451681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cuda_dispatch.h 2025-08-14T21:55:03.1455598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_meta_dispatch.h 2025-08-14T21:55:03.1459363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_native.h 2025-08-14T21:55:03.1463100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_ops.h 2025-08-14T21:55:03.1466682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel.h 2025-08-14T21:55:03.1470305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1473928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_native.h 2025-08-14T21:55:03.1477858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_ops.h 2025-08-14T21:55:03.1481867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real.h 2025-08-14T21:55:03.1485489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1489126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_native.h 2025-08-14T21:55:03.1492820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_ops.h 2025-08-14T21:55:03.1496453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal.h 2025-08-14T21:55:03.1500545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.1504578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cpu_dispatch.h 2025-08-14T21:55:03.1509075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cuda_dispatch.h 2025-08-14T21:55:03.1513409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta.h 2025-08-14T21:55:03.1517219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta_dispatch.h 2025-08-14T21:55:03.1520997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_native.h 2025-08-14T21:55:03.1524703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_ops.h 2025-08-14T21:55:03.1528364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream.h 2025-08-14T21:55:03.1532175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_cuda_dispatch.h 2025-08-14T21:55:03.1535988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_native.h 2025-08-14T21:55:03.1539751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_ops.h 2025-08-14T21:55:03.1543505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names.h 2025-08-14T21:55:03.1547344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1551075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_native.h 2025-08-14T21:55:03.1555126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_ops.h 2025-08-14T21:55:03.1558931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d.h 2025-08-14T21:55:03.1562647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward.h 2025-08-14T21:55:03.1566786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.1570420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h 2025-08-14T21:55:03.1574239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h 2025-08-14T21:55:03.1578289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta.h 2025-08-14T21:55:03.1582213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h 2025-08-14T21:55:03.1586113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_native.h 2025-08-14T21:55:03.1590151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_ops.h 2025-08-14T21:55:03.1594598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.1598808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h 2025-08-14T21:55:03.1603153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h 2025-08-14T21:55:03.1607822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta.h 2025-08-14T21:55:03.1612330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h 2025-08-14T21:55:03.1616208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_native.h 2025-08-14T21:55:03.1620204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_ops.h 2025-08-14T21:55:03.1624062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d.h 2025-08-14T21:55:03.1628660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward.h 2025-08-14T21:55:03.1632103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h 2025-08-14T21:55:03.1635904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h 2025-08-14T21:55:03.1640440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_native.h 2025-08-14T21:55:03.1644294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_ops.h 2025-08-14T21:55:03.1648058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h 2025-08-14T21:55:03.1651771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h 2025-08-14T21:55:03.1655808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_native.h 2025-08-14T21:55:03.1659797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_ops.h 2025-08-14T21:55:03.1663683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d.h 2025-08-14T21:55:03.1667574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward.h 2025-08-14T21:55:03.1671570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.1675202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h 2025-08-14T21:55:03.1679580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h 2025-08-14T21:55:03.1683430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta.h 2025-08-14T21:55:03.1687630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h 2025-08-14T21:55:03.1691447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_native.h 2025-08-14T21:55:03.1695217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_ops.h 2025-08-14T21:55:03.1699256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.1702963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h 2025-08-14T21:55:03.1707294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h 2025-08-14T21:55:03.1711127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta.h 2025-08-14T21:55:03.1714897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h 2025-08-14T21:55:03.1718910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_native.h 2025-08-14T21:55:03.1722761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_ops.h 2025-08-14T21:55:03.1726545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu.h 2025-08-14T21:55:03.1730218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6.h 2025-08-14T21:55:03.1733808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.1737498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_native.h 2025-08-14T21:55:03.1741181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_ops.h 2025-08-14T21:55:03.1745256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.1749252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cpu_dispatch.h 2025-08-14T21:55:03.1753177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cuda_dispatch.h 2025-08-14T21:55:03.1757177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_meta_dispatch.h 2025-08-14T21:55:03.1760669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_native.h 2025-08-14T21:55:03.1764334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_ops.h 2025-08-14T21:55:03.1767998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder.h 2025-08-14T21:55:03.1771837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.1775625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.3076724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cpu_dispatch.h 2025-08-14T21:55:03.3080531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cuda_dispatch.h 2025-08-14T21:55:03.3084284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta.h 2025-08-14T21:55:03.3089091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta_dispatch.h 2025-08-14T21:55:03.3093045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_native.h 2025-08-14T21:55:03.3097234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_ops.h 2025-08-14T21:55:03.3101402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename.h 2025-08-14T21:55:03.3105400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.3109540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_native.h 2025-08-14T21:55:03.3114140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_ops.h 2025-08-14T21:55:03.3118359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm.h 2025-08-14T21:55:03.3122274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.3126509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cpu_dispatch.h 2025-08-14T21:55:03.3130134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cuda_dispatch.h 2025-08-14T21:55:03.3133876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta.h 2025-08-14T21:55:03.3137851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta_dispatch.h 2025-08-14T21:55:03.3141626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_native.h 2025-08-14T21:55:03.3145413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_ops.h 2025-08-14T21:55:03.3149088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat.h 2025-08-14T21:55:03.3152732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.3156435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave.h 2025-08-14T21:55:03.3160358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.3164152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.3167632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h 2025-08-14T21:55:03.3171247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h 2025-08-14T21:55:03.3175001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_native.h 2025-08-14T21:55:03.3178519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_ops.h 2025-08-14T21:55:03.3182014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_native.h 2025-08-14T21:55:03.3185642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_ops.h 2025-08-14T21:55:03.3189063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d.h 2025-08-14T21:55:03.3192480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward.h 2025-08-14T21:55:03.3196161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.3200117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h 2025-08-14T21:55:03.3203832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h 2025-08-14T21:55:03.3773899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta.h 2025-08-14T21:55:03.3778073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h 2025-08-14T21:55:03.3781922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_native.h 2025-08-14T21:55:03.3785889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_ops.h 2025-08-14T21:55:03.3789880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.3793970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h 2025-08-14T21:55:03.3797607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h 2025-08-14T21:55:03.3801324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta.h 2025-08-14T21:55:03.3805281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h 2025-08-14T21:55:03.3809283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_native.h 2025-08-14T21:55:03.3813085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_ops.h 2025-08-14T21:55:03.3816850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d.h 2025-08-14T21:55:03.3820731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward.h 2025-08-14T21:55:03.3824492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h 2025-08-14T21:55:03.3828262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h 2025-08-14T21:55:03.3832001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_native.h 2025-08-14T21:55:03.3835922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_ops.h 2025-08-14T21:55:03.3840023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.3843675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h 2025-08-14T21:55:03.3847477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h 2025-08-14T21:55:03.3851234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta.h 2025-08-14T21:55:03.3854994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h 2025-08-14T21:55:03.3858971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_native.h 2025-08-14T21:55:03.3862726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_ops.h 2025-08-14T21:55:03.3867660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d.h 2025-08-14T21:55:03.3871688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward.h 2025-08-14T21:55:03.3876048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h 2025-08-14T21:55:03.3879878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h 2025-08-14T21:55:03.3883933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_native.h 2025-08-14T21:55:03.3887841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_ops.h 2025-08-14T21:55:03.3891797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.3895827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h 2025-08-14T21:55:03.3899746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h 2025-08-14T21:55:03.3903484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta.h 2025-08-14T21:55:03.3907639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h 2025-08-14T21:55:03.3911612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_native.h 2025-08-14T21:55:03.3915431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_ops.h 2025-08-14T21:55:03.3919358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad.h 2025-08-14T21:55:03.3923300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.3927105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_native.h 2025-08-14T21:55:03.3930815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_ops.h 2025-08-14T21:55:03.3934705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape.h 2025-08-14T21:55:03.3938041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as.h 2025-08-14T21:55:03.3941986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:55:03.3945802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.3949378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_native.h 2025-08-14T21:55:03.3953152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_ops.h 2025-08-14T21:55:03.3957285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:55:03.3961434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.3965193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_native.h 2025-08-14T21:55:03.3968980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_ops.h 2025-08-14T21:55:03.3973293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize.h 2025-08-14T21:55:03.3976734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as.h 2025-08-14T21:55:03.3980614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.3984383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_native.h 2025-08-14T21:55:03.3988131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_ops.h 2025-08-14T21:55:03.3991887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse.h 2025-08-14T21:55:03.3995778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.3999675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h 2025-08-14T21:55:03.4003623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_native.h 2025-08-14T21:55:03.4007305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_ops.h 2025-08-14T21:55:03.4011422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4015238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cpu_dispatch.h 2025-08-14T21:55:03.4019029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cuda_dispatch.h 2025-08-14T21:55:03.4022869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_meta_dispatch.h 2025-08-14T21:55:03.4026655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_native.h 2025-08-14T21:55:03.4030634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_ops.h 2025-08-14T21:55:03.4034452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj.h 2025-08-14T21:55:03.4038434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4042293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_native.h 2025-08-14T21:55:03.4046093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_ops.h 2025-08-14T21:55:03.4049960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg.h 2025-08-14T21:55:03.4054109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4057856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_native.h 2025-08-14T21:55:03.4061712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_ops.h 2025-08-14T21:55:03.4065442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type.h 2025-08-14T21:55:03.4069367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4073050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_native.h 2025-08-14T21:55:03.4076661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_ops.h 2025-08-14T21:55:03.4080753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad.h 2025-08-14T21:55:03.4084711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4088415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_native.h 2025-08-14T21:55:03.4092517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_ops.h 2025-08-14T21:55:03.4096612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad.h 2025-08-14T21:55:03.4100323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4104433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_native.h 2025-08-14T21:55:03.4108007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_ops.h 2025-08-14T21:55:03.4112308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm.h 2025-08-14T21:55:03.4116299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4120489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_native.h 2025-08-14T21:55:03.4124734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_ops.h 2025-08-14T21:55:03.4128506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu.h 2025-08-14T21:55:03.4132079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell.h 2025-08-14T21:55:03.4135879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4139840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_native.h 2025-08-14T21:55:03.4143467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_ops.h 2025-08-14T21:55:03.4147285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4151053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_native.h 2025-08-14T21:55:03.4154900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_ops.h 2025-08-14T21:55:03.4158712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh.h 2025-08-14T21:55:03.4162321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell.h 2025-08-14T21:55:03.4166072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4169692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_native.h 2025-08-14T21:55:03.4173480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_ops.h 2025-08-14T21:55:03.4177405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4181185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_native.h 2025-08-14T21:55:03.4184941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_ops.h 2025-08-14T21:55:03.4189291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll.h 2025-08-14T21:55:03.4192887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4196412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cpu_dispatch.h 2025-08-14T21:55:03.4200119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cuda_dispatch.h 2025-08-14T21:55:03.4203731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_native.h 2025-08-14T21:55:03.4207342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_ops.h 2025-08-14T21:55:03.4210877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90.h 2025-08-14T21:55:03.4214402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4218354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_native.h 2025-08-14T21:55:03.4222374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_ops.h 2025-08-14T21:55:03.4225955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round.h 2025-08-14T21:55:03.4229538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4233012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cpu_dispatch.h 2025-08-14T21:55:03.4236587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cuda_dispatch.h 2025-08-14T21:55:03.4240448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta.h 2025-08-14T21:55:03.4244042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta_dispatch.h 2025-08-14T21:55:03.4247710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_native.h 2025-08-14T21:55:03.4251505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_ops.h 2025-08-14T21:55:03.4255131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices.h 2025-08-14T21:55:03.4259094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4262565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy.h 2025-08-14T21:55:03.4266534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4270558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4274127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_native.h 2025-08-14T21:55:03.4277942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_ops.h 2025-08-14T21:55:03.4281675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_native.h 2025-08-14T21:55:03.4285295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_ops.h 2025-08-14T21:55:03.4288917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack.h 2025-08-14T21:55:03.4293226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4296939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_native.h 2025-08-14T21:55:03.4300501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_ops.h 2025-08-14T21:55:03.4304089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu.h 2025-08-14T21:55:03.4307547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4311144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_native.h 2025-08-14T21:55:03.4314678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_ops.h 2025-08-14T21:55:03.4318523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise.h 2025-08-14T21:55:03.4322360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward.h 2025-08-14T21:55:03.4326335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4330643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_native.h 2025-08-14T21:55:03.4334366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h 2025-08-14T21:55:03.4338394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4342142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h 2025-08-14T21:55:03.4346319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h 2025-08-14T21:55:03.4350101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h 2025-08-14T21:55:03.4353832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_native.h 2025-08-14T21:55:03.4357775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_ops.h 2025-08-14T21:55:03.4361414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift.h 2025-08-14T21:55:03.4365052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4368756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cpu_dispatch.h 2025-08-14T21:55:03.4372558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cuda_dispatch.h 2025-08-14T21:55:03.4376228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_meta_dispatch.h 2025-08-14T21:55:03.4379937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_native.h 2025-08-14T21:55:03.4383635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_ops.h 2025-08-14T21:55:03.4387296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt.h 2025-08-14T21:55:03.4390969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4395006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cpu_dispatch.h 2025-08-14T21:55:03.4399385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cuda_dispatch.h 2025-08-14T21:55:03.4402875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta.h 2025-08-14T21:55:03.4406552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta_dispatch.h 2025-08-14T21:55:03.4410324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_native.h 2025-08-14T21:55:03.4413995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_ops.h 2025-08-14T21:55:03.4417729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub.h 2025-08-14T21:55:03.4421230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4424808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cpu_dispatch.h 2025-08-14T21:55:03.4429160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cuda_dispatch.h 2025-08-14T21:55:03.4432776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_native.h 2025-08-14T21:55:03.4436476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_ops.h 2025-08-14T21:55:03.4440041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor.h 2025-08-14T21:55:03.4443721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4447361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_native.h 2025-08-14T21:55:03.4451120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_ops.h 2025-08-14T21:55:03.4454966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention.h 2025-08-14T21:55:03.4459127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4462852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_native.h 2025-08-14T21:55:03.4466535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_ops.h 2025-08-14T21:55:03.4470427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter.h 2025-08-14T21:55:03.4473800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add.h 2025-08-14T21:55:03.4477722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4481687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4485404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cpu_dispatch.h 2025-08-14T21:55:03.4489158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cuda_dispatch.h 2025-08-14T21:55:03.4492975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta.h 2025-08-14T21:55:03.4497377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta_dispatch.h 2025-08-14T21:55:03.4501161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_native.h 2025-08-14T21:55:03.4505691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_ops.h 2025-08-14T21:55:03.4509764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4513574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4517434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cpu_dispatch.h 2025-08-14T21:55:03.4521304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cuda_dispatch.h 2025-08-14T21:55:03.4525014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta.h 2025-08-14T21:55:03.4528902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta_dispatch.h 2025-08-14T21:55:03.4532757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_native.h 2025-08-14T21:55:03.4536412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_ops.h 2025-08-14T21:55:03.4540201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce.h 2025-08-14T21:55:03.4544320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4549061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h 2025-08-14T21:55:03.4552622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h 2025-08-14T21:55:03.4556437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta.h 2025-08-14T21:55:03.4560565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h 2025-08-14T21:55:03.4564294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_native.h 2025-08-14T21:55:03.4568118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_ops.h 2025-08-14T21:55:03.4571871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted.h 2025-08-14T21:55:03.4575544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cpu_dispatch.h 2025-08-14T21:55:03.4579338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cuda_dispatch.h 2025-08-14T21:55:03.4583187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_native.h 2025-08-14T21:55:03.4587122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_ops.h 2025-08-14T21:55:03.4590992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce.h 2025-08-14T21:55:03.4594810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4598476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h 2025-08-14T21:55:03.4602758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h 2025-08-14T21:55:03.4606663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_native.h 2025-08-14T21:55:03.4610409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_ops.h 2025-08-14T21:55:03.4614575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select.h 2025-08-14T21:55:03.4618715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward.h 2025-08-14T21:55:03.4622672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4626538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4630099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_native.h 2025-08-14T21:55:03.4633943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_ops.h 2025-08-14T21:55:03.4638043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4641981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4645785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy.h 2025-08-14T21:55:03.4649753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4653646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4657446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_native.h 2025-08-14T21:55:03.4661265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_ops.h 2025-08-14T21:55:03.4665349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_native.h 2025-08-14T21:55:03.4669104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_ops.h 2025-08-14T21:55:03.4672893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter.h 2025-08-14T21:55:03.4676735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4680511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4684151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_native.h 2025-08-14T21:55:03.4687825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_ops.h 2025-08-14T21:55:03.4691617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu.h 2025-08-14T21:55:03.4695142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4698717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_native.h 2025-08-14T21:55:03.4702749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_ops.h 2025-08-14T21:55:03.4706259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set.h 2025-08-14T21:55:03.4709793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.4713387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4717079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cpu_dispatch.h 2025-08-14T21:55:03.4720663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cuda_dispatch.h 2025-08-14T21:55:03.4724165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data.h 2025-08-14T21:55:03.4727797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4731309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_native.h 2025-08-14T21:55:03.4734821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_ops.h 2025-08-14T21:55:03.4738534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_meta_dispatch.h 2025-08-14T21:55:03.4742139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_native.h 2025-08-14T21:55:03.4745718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_ops.h 2025-08-14T21:55:03.4748959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn.h 2025-08-14T21:55:03.4768253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4771808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cpu_dispatch.h 2025-08-14T21:55:03.4775306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cuda_dispatch.h 2025-08-14T21:55:03.4778860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta.h 2025-08-14T21:55:03.4782239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta_dispatch.h 2025-08-14T21:55:03.4785768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_native.h 2025-08-14T21:55:03.4789288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_ops.h 2025-08-14T21:55:03.4792776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid.h 2025-08-14T21:55:03.4796206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward.h 2025-08-14T21:55:03.4800515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4804105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h 2025-08-14T21:55:03.4807769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h 2025-08-14T21:55:03.4811385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta.h 2025-08-14T21:55:03.4815091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h 2025-08-14T21:55:03.4819287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_native.h 2025-08-14T21:55:03.4823280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_ops.h 2025-08-14T21:55:03.4827210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4830875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cpu_dispatch.h 2025-08-14T21:55:03.4834826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cuda_dispatch.h 2025-08-14T21:55:03.4838620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta.h 2025-08-14T21:55:03.4842374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta_dispatch.h 2025-08-14T21:55:03.4846083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_native.h 2025-08-14T21:55:03.4849712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_ops.h 2025-08-14T21:55:03.4853286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign.h 2025-08-14T21:55:03.4856622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit.h 2025-08-14T21:55:03.4860201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4863708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cpu_dispatch.h 2025-08-14T21:55:03.4867398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cuda_dispatch.h 2025-08-14T21:55:03.4871157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta.h 2025-08-14T21:55:03.4874845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta_dispatch.h 2025-08-14T21:55:03.4878624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_native.h 2025-08-14T21:55:03.4882232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_ops.h 2025-08-14T21:55:03.4886046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4889557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cpu_dispatch.h 2025-08-14T21:55:03.4893104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cuda_dispatch.h 2025-08-14T21:55:03.4896709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta.h 2025-08-14T21:55:03.4900491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta_dispatch.h 2025-08-14T21:55:03.4904220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_native.h 2025-08-14T21:55:03.4907708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_ops.h 2025-08-14T21:55:03.4910967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu.h 2025-08-14T21:55:03.4914301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward.h 2025-08-14T21:55:03.4918222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4921904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.4926136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cpu_dispatch.h 2025-08-14T21:55:03.4929889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cuda_dispatch.h 2025-08-14T21:55:03.4933804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta.h 2025-08-14T21:55:03.4937647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta_dispatch.h 2025-08-14T21:55:03.4941358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_native.h 2025-08-14T21:55:03.4945360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_ops.h 2025-08-14T21:55:03.4949467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4953277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cpu_dispatch.h 2025-08-14T21:55:03.4957081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cuda_dispatch.h 2025-08-14T21:55:03.4960756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta.h 2025-08-14T21:55:03.4964347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta_dispatch.h 2025-08-14T21:55:03.4968138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_native.h 2025-08-14T21:55:03.4971705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_ops.h 2025-08-14T21:55:03.4975051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin.h 2025-08-14T21:55:03.4978497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc.h 2025-08-14T21:55:03.4982047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.4986415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cpu_dispatch.h 2025-08-14T21:55:03.4990397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cuda_dispatch.h 2025-08-14T21:55:03.4993929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta.h 2025-08-14T21:55:03.4997685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta_dispatch.h 2025-08-14T21:55:03.5001314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_native.h 2025-08-14T21:55:03.5004800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_ops.h 2025-08-14T21:55:03.5008171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh.h 2025-08-14T21:55:03.5011852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5015682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cpu_dispatch.h 2025-08-14T21:55:03.5019427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cuda_dispatch.h 2025-08-14T21:55:03.5023228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta.h 2025-08-14T21:55:03.5026782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta_dispatch.h 2025-08-14T21:55:03.5030488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_native.h 2025-08-14T21:55:03.5034510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_ops.h 2025-08-14T21:55:03.5038190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5042031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cpu_dispatch.h 2025-08-14T21:55:03.5045570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cuda_dispatch.h 2025-08-14T21:55:03.5049134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta.h 2025-08-14T21:55:03.5053022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta_dispatch.h 2025-08-14T21:55:03.5056701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_native.h 2025-08-14T21:55:03.5060428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_ops.h 2025-08-14T21:55:03.5063837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size.h 2025-08-14T21:55:03.5067428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5071104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_native.h 2025-08-14T21:55:03.5074639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_ops.h 2025-08-14T21:55:03.5078098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice.h 2025-08-14T21:55:03.5081539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward.h 2025-08-14T21:55:03.5085300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5089010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_native.h 2025-08-14T21:55:03.5092727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_ops.h 2025-08-14T21:55:03.5096496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5100499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy.h 2025-08-14T21:55:03.5104436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5108117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5112121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_native.h 2025-08-14T21:55:03.5116915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_ops.h 2025-08-14T21:55:03.5121150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse.h 2025-08-14T21:55:03.5125707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5129511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_native.h 2025-08-14T21:55:03.5133459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_ops.h 2025-08-14T21:55:03.5137159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_native.h 2025-08-14T21:55:03.5141427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_ops.h 2025-08-14T21:55:03.5145242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter.h 2025-08-14T21:55:03.5149542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5153746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5157533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_native.h 2025-08-14T21:55:03.5161266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_ops.h 2025-08-14T21:55:03.5164973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet.h 2025-08-14T21:55:03.5168477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5171988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_native.h 2025-08-14T21:55:03.5175531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_ops.h 2025-08-14T21:55:03.5179494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d.h 2025-08-14T21:55:03.5183342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5187010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward.h 2025-08-14T21:55:03.5190740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h 2025-08-14T21:55:03.5194521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_native.h 2025-08-14T21:55:03.5198517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_ops.h 2025-08-14T21:55:03.5202308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_native.h 2025-08-14T21:55:03.5206213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_ops.h 2025-08-14T21:55:03.5210024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d.h 2025-08-14T21:55:03.5214054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5217887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h 2025-08-14T21:55:03.5221739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h 2025-08-14T21:55:03.5225602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_native.h 2025-08-14T21:55:03.5229798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_ops.h 2025-08-14T21:55:03.5233376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d.h 2025-08-14T21:55:03.5237445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5242376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h 2025-08-14T21:55:03.5246515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h 2025-08-14T21:55:03.5250222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_native.h 2025-08-14T21:55:03.5253977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_ops.h 2025-08-14T21:55:03.5258230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d.h 2025-08-14T21:55:03.5262081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5265958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h 2025-08-14T21:55:03.5269736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h 2025-08-14T21:55:03.5273587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta.h 2025-08-14T21:55:03.5277722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h 2025-08-14T21:55:03.5281668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_native.h 2025-08-14T21:55:03.5285488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_ops.h 2025-08-14T21:55:03.5289209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d.h 2025-08-14T21:55:03.5293264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h 2025-08-14T21:55:03.5297139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h 2025-08-14T21:55:03.5300880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_native.h 2025-08-14T21:55:03.5304859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_ops.h 2025-08-14T21:55:03.5308841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm.h 2025-08-14T21:55:03.5312424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5316003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_native.h 2025-08-14T21:55:03.5319642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_ops.h 2025-08-14T21:55:03.5323182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss.h 2025-08-14T21:55:03.5326954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward.h 2025-08-14T21:55:03.5330836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5334734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h 2025-08-14T21:55:03.5339028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h 2025-08-14T21:55:03.5343136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_native.h 2025-08-14T21:55:03.5346893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h 2025-08-14T21:55:03.5350836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5355043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h 2025-08-14T21:55:03.5358983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h 2025-08-14T21:55:03.5362812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta.h 2025-08-14T21:55:03.5366739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h 2025-08-14T21:55:03.5370387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_native.h 2025-08-14T21:55:03.5374298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_ops.h 2025-08-14T21:55:03.5377972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax.h 2025-08-14T21:55:03.5381652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5385721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5389535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_native.h 2025-08-14T21:55:03.5393205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_ops.h 2025-08-14T21:55:03.5397384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus.h 2025-08-14T21:55:03.5418729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward.h 2025-08-14T21:55:03.5419663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5420525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h 2025-08-14T21:55:03.5421233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h 2025-08-14T21:55:03.5421909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta.h 2025-08-14T21:55:03.5422585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta_dispatch.h 2025-08-14T21:55:03.5423876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_native.h 2025-08-14T21:55:03.5427776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_ops.h 2025-08-14T21:55:03.5432103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5435821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cpu_dispatch.h 2025-08-14T21:55:03.5440394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cuda_dispatch.h 2025-08-14T21:55:03.5444215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta.h 2025-08-14T21:55:03.5448056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta_dispatch.h 2025-08-14T21:55:03.5451803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_native.h 2025-08-14T21:55:03.5455703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_ops.h 2025-08-14T21:55:03.5459620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink.h 2025-08-14T21:55:03.5463318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward.h 2025-08-14T21:55:03.5467407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5471179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h 2025-08-14T21:55:03.5474983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h 2025-08-14T21:55:03.5478945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta.h 2025-08-14T21:55:03.5483776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h 2025-08-14T21:55:03.5487740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_native.h 2025-08-14T21:55:03.5491384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_ops.h 2025-08-14T21:55:03.5495392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5499163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cpu_dispatch.h 2025-08-14T21:55:03.5502988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cuda_dispatch.h 2025-08-14T21:55:03.5506801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta.h 2025-08-14T21:55:03.5510889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta_dispatch.h 2025-08-14T21:55:03.5514626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_native.h 2025-08-14T21:55:03.5518532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_ops.h 2025-08-14T21:55:03.5522343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss.h 2025-08-14T21:55:03.5525965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward.h 2025-08-14T21:55:03.5529982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5533856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_native.h 2025-08-14T21:55:03.5537817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_ops.h 2025-08-14T21:55:03.5542489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5546370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_native.h 2025-08-14T21:55:03.5550382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_ops.h 2025-08-14T21:55:03.5554047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort.h 2025-08-14T21:55:03.5557928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5561934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5565704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5569449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cpu_dispatch.h 2025-08-14T21:55:03.5573350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cuda_dispatch.h 2025-08-14T21:55:03.5577292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta.h 2025-08-14T21:55:03.5581054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta_dispatch.h 2025-08-14T21:55:03.5587492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_native.h 2025-08-14T21:55:03.5592445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_ops.h 2025-08-14T21:55:03.5595945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor.h 2025-08-14T21:55:03.5601159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5606212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_native.h 2025-08-14T21:55:03.5611376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_ops.h 2025-08-14T21:55:03.5629316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor.h 2025-08-14T21:55:03.5634981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5640861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_native.h 2025-08-14T21:55:03.5644759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_ops.h 2025-08-14T21:55:03.5650216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor.h 2025-08-14T21:55:03.5656252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5660100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_native.h 2025-08-14T21:55:03.5665779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_ops.h 2025-08-14T21:55:03.5669801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor.h 2025-08-14T21:55:03.5674064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5678145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5683594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_native.h 2025-08-14T21:55:03.5687344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_ops.h 2025-08-14T21:55:03.5691055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor.h 2025-08-14T21:55:03.5695154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5698929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_native.h 2025-08-14T21:55:03.5702694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_ops.h 2025-08-14T21:55:03.5706470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor.h 2025-08-14T21:55:03.5711675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.5715554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_native.h 2025-08-14T21:55:03.5719673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_ops.h 2025-08-14T21:55:03.5723657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim.h 2025-08-14T21:55:03.5727627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5731359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_native.h 2025-08-14T21:55:03.5735038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_ops.h 2025-08-14T21:55:03.5738675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask.h 2025-08-14T21:55:03.5742485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5746249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_native.h 2025-08-14T21:55:03.5750077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_ops.h 2025-08-14T21:55:03.5753786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize.h 2025-08-14T21:55:03.5757590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear.h 2025-08-14T21:55:03.5761559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5765282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h 2025-08-14T21:55:03.5770602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_native.h 2025-08-14T21:55:03.5775531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_ops.h 2025-08-14T21:55:03.5802123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.5805795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_meta_dispatch.h 2025-08-14T21:55:03.5809563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_native.h 2025-08-14T21:55:03.5813306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_ops.h 2025-08-14T21:55:03.5817166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm.h 2025-08-14T21:55:03.5821164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_native.h 2025-08-14T21:55:03.5825105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_ops.h 2025-08-14T21:55:03.5828885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai.h 2025-08-14T21:55:03.5832731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5836426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h 2025-08-14T21:55:03.5840286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h 2025-08-14T21:55:03.5844024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta.h 2025-08-14T21:55:03.5848121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h 2025-08-14T21:55:03.5852066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_native.h 2025-08-14T21:55:03.5855779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_ops.h 2025-08-14T21:55:03.5859511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0.h 2025-08-14T21:55:03.5863519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5867314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h 2025-08-14T21:55:03.5871221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h 2025-08-14T21:55:03.5875230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta.h 2025-08-14T21:55:03.5879192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h 2025-08-14T21:55:03.5883017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_native.h 2025-08-14T21:55:03.5886721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_ops.h 2025-08-14T21:55:03.5890464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1.h 2025-08-14T21:55:03.5894891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5898903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h 2025-08-14T21:55:03.5902751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h 2025-08-14T21:55:03.5906485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta.h 2025-08-14T21:55:03.5910351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h 2025-08-14T21:55:03.5914164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_native.h 2025-08-14T21:55:03.5918050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_ops.h 2025-08-14T21:55:03.5953662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0.h 2025-08-14T21:55:03.5958173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5961874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h 2025-08-14T21:55:03.5965627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h 2025-08-14T21:55:03.5969523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta.h 2025-08-14T21:55:03.5973367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h 2025-08-14T21:55:03.5977121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_native.h 2025-08-14T21:55:03.5981084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_ops.h 2025-08-14T21:55:03.5984798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1.h 2025-08-14T21:55:03.5988773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.5992424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h 2025-08-14T21:55:03.5996181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h 2025-08-14T21:55:03.6000130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta.h 2025-08-14T21:55:03.6004037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h 2025-08-14T21:55:03.6007701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_native.h 2025-08-14T21:55:03.6011375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_ops.h 2025-08-14T21:55:03.6015110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t.h 2025-08-14T21:55:03.6019484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.6023356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.6027356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-14T21:55:03.6031102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-14T21:55:03.6034913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h 2025-08-14T21:55:03.6038888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h 2025-08-14T21:55:03.6043016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h 2025-08-14T21:55:03.6047244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h 2025-08-14T21:55:03.6051068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u.h 2025-08-14T21:55:03.6055013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.6058921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.6062882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-14T21:55:03.6066698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-14T21:55:03.6070563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h 2025-08-14T21:55:03.6074439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h 2025-08-14T21:55:03.6078563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h 2025-08-14T21:55:03.6082361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h 2025-08-14T21:55:03.6086362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v.h 2025-08-14T21:55:03.6090774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.6095116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.6099974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-14T21:55:03.6104274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-14T21:55:03.6108877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h 2025-08-14T21:55:03.6113330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h 2025-08-14T21:55:03.6117886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h 2025-08-14T21:55:03.6122290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h 2025-08-14T21:55:03.6126653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w.h 2025-08-14T21:55:03.6131013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.6135256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.6139510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-14T21:55:03.6143233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-14T21:55:03.6147055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h 2025-08-14T21:55:03.6151556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h 2025-08-14T21:55:03.6155422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h 2025-08-14T21:55:03.6159237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h 2025-08-14T21:55:03.6163070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma.h 2025-08-14T21:55:03.6167142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6170897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_native.h 2025-08-14T21:55:03.6174950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_ops.h 2025-08-14T21:55:03.6178721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr.h 2025-08-14T21:55:03.6182743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.6186684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cpu_dispatch.h 2025-08-14T21:55:03.6190428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cuda_dispatch.h 2025-08-14T21:55:03.6194516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta.h 2025-08-14T21:55:03.6198639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta_dispatch.h 2025-08-14T21:55:03.6202478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_native.h 2025-08-14T21:55:03.6206290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_ops.h 2025-08-14T21:55:03.6209886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf.h 2025-08-14T21:55:03.6213774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc.h 2025-08-14T21:55:03.6217377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx.h 2025-08-14T21:55:03.6221246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.6224862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h 2025-08-14T21:55:03.6228910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h 2025-08-14T21:55:03.6232581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta.h 2025-08-14T21:55:03.6236384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta_dispatch.h 2025-08-14T21:55:03.6240176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_native.h 2025-08-14T21:55:03.6244111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_ops.h 2025-08-14T21:55:03.6247930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6251894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_native.h 2025-08-14T21:55:03.6255617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_ops.h 2025-08-14T21:55:03.6259276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv.h 2025-08-14T21:55:03.6263350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6267091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_native.h 2025-08-14T21:55:03.6270877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_ops.h 2025-08-14T21:55:03.6274888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6278897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_native.h 2025-08-14T21:55:03.6282638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_ops.h 2025-08-14T21:55:03.6286304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2.h 2025-08-14T21:55:03.6290216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6293896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_native.h 2025-08-14T21:55:03.6298108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_ops.h 2025-08-14T21:55:03.6301774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit.h 2025-08-14T21:55:03.6305648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6309361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_native.h 2025-08-14T21:55:03.6313168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_ops.h 2025-08-14T21:55:03.6316966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1.h 2025-08-14T21:55:03.6320877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6324581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_native.h 2025-08-14T21:55:03.6328425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_ops.h 2025-08-14T21:55:03.6332360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc.h 2025-08-14T21:55:03.6336110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc.h 2025-08-14T21:55:03.6339959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6343679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_native.h 2025-08-14T21:55:03.6347424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_ops.h 2025-08-14T21:55:03.6351363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6355142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_native.h 2025-08-14T21:55:03.6360486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_ops.h 2025-08-14T21:55:03.6366056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln.h 2025-08-14T21:55:03.6371365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.6376718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_native.h 2025-08-14T21:55:03.8146305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_ops.h 2025-08-14T21:55:03.8150536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h.h 2025-08-14T21:55:03.8154770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he.h 2025-08-14T21:55:03.8159526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8164737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8169497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h 2025-08-14T21:55:03.8173457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h 2025-08-14T21:55:03.8177840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h 2025-08-14T21:55:03.8181684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h 2025-08-14T21:55:03.8185549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_native.h 2025-08-14T21:55:03.8189473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h 2025-08-14T21:55:03.8193443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8197352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8201837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h 2025-08-14T21:55:03.8205583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h 2025-08-14T21:55:03.8209429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h 2025-08-14T21:55:03.8213332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h 2025-08-14T21:55:03.8217912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_native.h 2025-08-14T21:55:03.8222007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h 2025-08-14T21:55:03.8225977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0.h 2025-08-14T21:55:03.8229594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e.h 2025-08-14T21:55:03.8233494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8237480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cpu_dispatch.h 2025-08-14T21:55:03.8241250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cuda_dispatch.h 2025-08-14T21:55:03.8245188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta.h 2025-08-14T21:55:03.8249111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta_dispatch.h 2025-08-14T21:55:03.8252896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_native.h 2025-08-14T21:55:03.8256622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_ops.h 2025-08-14T21:55:03.8261037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8264734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_native.h 2025-08-14T21:55:03.8268430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_ops.h 2025-08-14T21:55:03.8272040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1.h 2025-08-14T21:55:03.8275897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e.h 2025-08-14T21:55:03.8280019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8283939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cpu_dispatch.h 2025-08-14T21:55:03.8287696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cuda_dispatch.h 2025-08-14T21:55:03.8291516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta.h 2025-08-14T21:55:03.8295256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta_dispatch.h 2025-08-14T21:55:03.8299037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_native.h 2025-08-14T21:55:03.8303132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_ops.h 2025-08-14T21:55:03.8307421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8311315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cpu_dispatch.h 2025-08-14T21:55:03.8315802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cuda_dispatch.h 2025-08-14T21:55:03.8320044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta.h 2025-08-14T21:55:03.8324185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta_dispatch.h 2025-08-14T21:55:03.8328301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_native.h 2025-08-14T21:55:03.8332781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_ops.h 2025-08-14T21:55:03.8337101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l.h 2025-08-14T21:55:03.8341466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8345709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8349962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h 2025-08-14T21:55:03.8354366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h 2025-08-14T21:55:03.8358402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h 2025-08-14T21:55:03.8362865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h 2025-08-14T21:55:03.8371206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h 2025-08-14T21:55:03.8375188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h 2025-08-14T21:55:03.8379201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p.h 2025-08-14T21:55:03.8383548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8387766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8391533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h 2025-08-14T21:55:03.8395371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h 2025-08-14T21:55:03.8399388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h 2025-08-14T21:55:03.8403439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h 2025-08-14T21:55:03.8407292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_native.h 2025-08-14T21:55:03.8411067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h 2025-08-14T21:55:03.8414673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p.h 2025-08-14T21:55:03.8418611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8422528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_native.h 2025-08-14T21:55:03.8426374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_ops.h 2025-08-14T21:55:03.8430137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit.h 2025-08-14T21:55:03.8434456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8438513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_native.h 2025-08-14T21:55:03.8442290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_ops.h 2025-08-14T21:55:03.8445957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp.h 2025-08-14T21:55:03.8449850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8454164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_native.h 2025-08-14T21:55:03.8458013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_ops.h 2025-08-14T21:55:03.8462475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr.h 2025-08-14T21:55:03.8466328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8469874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h 2025-08-14T21:55:03.8473527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h 2025-08-14T21:55:03.8477397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta.h 2025-08-14T21:55:03.8481746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h 2025-08-14T21:55:03.8485774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_native.h 2025-08-14T21:55:03.8489654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_ops.h 2025-08-14T21:55:03.8493626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax.h 2025-08-14T21:55:03.8497813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8501593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_native.h 2025-08-14T21:55:03.8505345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_ops.h 2025-08-14T21:55:03.8509440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0.h 2025-08-14T21:55:03.8513507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8517301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h 2025-08-14T21:55:03.8521099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h 2025-08-14T21:55:03.8525187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta.h 2025-08-14T21:55:03.8528996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h 2025-08-14T21:55:03.8532854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_native.h 2025-08-14T21:55:03.8536612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_ops.h 2025-08-14T21:55:03.8540454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1.h 2025-08-14T21:55:03.8544522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8548498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h 2025-08-14T21:55:03.8552712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h 2025-08-14T21:55:03.8556604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta.h 2025-08-14T21:55:03.8560554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h 2025-08-14T21:55:03.8564427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_native.h 2025-08-14T21:55:03.8568386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_ops.h 2025-08-14T21:55:03.8572186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0.h 2025-08-14T21:55:03.8576285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8579953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h 2025-08-14T21:55:03.8584071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h 2025-08-14T21:55:03.8588106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta.h 2025-08-14T21:55:03.8592489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h 2025-08-14T21:55:03.8596492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_native.h 2025-08-14T21:55:03.8600306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_ops.h 2025-08-14T21:55:03.8604205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1.h 2025-08-14T21:55:03.8608501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8612447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h 2025-08-14T21:55:03.8616369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h 2025-08-14T21:55:03.8620312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta.h 2025-08-14T21:55:03.8651630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h 2025-08-14T21:55:03.8655928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_native.h 2025-08-14T21:55:03.8660234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_ops.h 2025-08-14T21:55:03.8664696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln.h 2025-08-14T21:55:03.8669134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8674991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_native.h 2025-08-14T21:55:03.8679307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_ops.h 2025-08-14T21:55:03.8683767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr.h 2025-08-14T21:55:03.8688453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri.h 2025-08-14T21:55:03.8692566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8696671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h 2025-08-14T21:55:03.8700628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h 2025-08-14T21:55:03.8704499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta.h 2025-08-14T21:55:03.8708508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta_dispatch.h 2025-08-14T21:55:03.8712305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_native.h 2025-08-14T21:55:03.8716069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_ops.h 2025-08-14T21:55:03.8720486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8724417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_native.h 2025-08-14T21:55:03.8728301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_ops.h 2025-08-14T21:55:03.8732133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma.h 2025-08-14T21:55:03.8736201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8739990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_native.h 2025-08-14T21:55:03.8743721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_ops.h 2025-08-14T21:55:03.8747741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi.h 2025-08-14T21:55:03.8751549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8755201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_native.h 2025-08-14T21:55:03.8759798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_ops.h 2025-08-14T21:55:03.8763485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round.h 2025-08-14T21:55:03.8767700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8771445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_native.h 2025-08-14T21:55:03.8775392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_ops.h 2025-08-14T21:55:03.8779750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h 2025-08-14T21:55:03.8783988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8787759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h 2025-08-14T21:55:03.8791865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h 2025-08-14T21:55:03.8795816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h 2025-08-14T21:55:03.8799803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h 2025-08-14T21:55:03.8803987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h 2025-08-14T21:55:03.8807835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h 2025-08-14T21:55:03.8811585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h 2025-08-14T21:55:03.8815799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8819491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h 2025-08-14T21:55:03.8823335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h 2025-08-14T21:55:03.8827091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h 2025-08-14T21:55:03.8830929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h 2025-08-14T21:55:03.8835012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h 2025-08-14T21:55:03.8839006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h 2025-08-14T21:55:03.8842821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h 2025-08-14T21:55:03.8846905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8851025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8855067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-14T21:55:03.8859323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-14T21:55:03.8863379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h 2025-08-14T21:55:03.8867425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h 2025-08-14T21:55:03.8871574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h 2025-08-14T21:55:03.8875498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h 2025-08-14T21:55:03.8879412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h 2025-08-14T21:55:03.8883609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8887653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8891690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-14T21:55:03.8895613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-14T21:55:03.8899688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h 2025-08-14T21:55:03.8903651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h 2025-08-14T21:55:03.8907557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h 2025-08-14T21:55:03.8911584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h 2025-08-14T21:55:03.8915380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h 2025-08-14T21:55:03.8919620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8923727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8927795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-14T21:55:03.8931647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-14T21:55:03.8936131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h 2025-08-14T21:55:03.8940617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h 2025-08-14T21:55:03.8944512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h 2025-08-14T21:55:03.8948631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h 2025-08-14T21:55:03.8952729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h 2025-08-14T21:55:03.8957126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.8961265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.8965552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-14T21:55:03.8969744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-14T21:55:03.8974148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h 2025-08-14T21:55:03.8977963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h 2025-08-14T21:55:03.8981876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h 2025-08-14T21:55:03.8986267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h 2025-08-14T21:55:03.8990035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc.h 2025-08-14T21:55:03.8994256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.8998096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_native.h 2025-08-14T21:55:03.9001920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_ops.h 2025-08-14T21:55:03.9005825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax.h 2025-08-14T21:55:03.9009925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9013976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_native.h 2025-08-14T21:55:03.9017842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_ops.h 2025-08-14T21:55:03.9022191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0.h 2025-08-14T21:55:03.9026868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9030549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h 2025-08-14T21:55:03.9034887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h 2025-08-14T21:55:03.9038927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h 2025-08-14T21:55:03.9042743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h 2025-08-14T21:55:03.9046613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_native.h 2025-08-14T21:55:03.9050545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h 2025-08-14T21:55:03.9054704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py.h 2025-08-14T21:55:03.9058747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9062793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9066719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h 2025-08-14T21:55:03.9070578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h 2025-08-14T21:55:03.9074623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta.h 2025-08-14T21:55:03.9078655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h 2025-08-14T21:55:03.9082995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_native.h 2025-08-14T21:55:03.9086841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_ops.h 2025-08-14T21:55:03.9090632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy.h 2025-08-14T21:55:03.9094713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9098515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_native.h 2025-08-14T21:55:03.9102431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_ops.h 2025-08-14T21:55:03.9106240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta.h 2025-08-14T21:55:03.9110181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9114337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9119230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cpu_dispatch.h 2025-08-14T21:55:03.9124062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cuda_dispatch.h 2025-08-14T21:55:03.9128221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta.h 2025-08-14T21:55:03.9132774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta_dispatch.h 2025-08-14T21:55:03.9137311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_native.h 2025-08-14T21:55:03.9142098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_ops.h 2025-08-14T21:55:03.9146189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split.h 2025-08-14T21:55:03.9149771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9153719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9157612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy.h 2025-08-14T21:55:03.9161465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9165490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9169347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_native.h 2025-08-14T21:55:03.9173183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_ops.h 2025-08-14T21:55:03.9177011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_native.h 2025-08-14T21:55:03.9180871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_ops.h 2025-08-14T21:55:03.9184645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes.h 2025-08-14T21:55:03.9188732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9192903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy.h 2025-08-14T21:55:03.9197257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9201590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9206301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h 2025-08-14T21:55:03.9210140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_native.h 2025-08-14T21:55:03.9214249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_ops.h 2025-08-14T21:55:03.9218392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_native.h 2025-08-14T21:55:03.9222838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_ops.h 2025-08-14T21:55:03.9226594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt.h 2025-08-14T21:55:03.9230634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9234200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cpu_dispatch.h 2025-08-14T21:55:03.9238194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cuda_dispatch.h 2025-08-14T21:55:03.9241793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta.h 2025-08-14T21:55:03.9245585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta_dispatch.h 2025-08-14T21:55:03.9249140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_native.h 2025-08-14T21:55:03.9252735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_ops.h 2025-08-14T21:55:03.9256084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square.h 2025-08-14T21:55:03.9259526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9262976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_native.h 2025-08-14T21:55:03.9266590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_ops.h 2025-08-14T21:55:03.9270170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze.h 2025-08-14T21:55:03.9273634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9277560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9281312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy.h 2025-08-14T21:55:03.9285353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9289047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9292730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_native.h 2025-08-14T21:55:03.9296722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_ops.h 2025-08-14T21:55:03.9300355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_native.h 2025-08-14T21:55:03.9304408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_ops.h 2025-08-14T21:55:03.9307937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm.h 2025-08-14T21:55:03.9311611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9315373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h 2025-08-14T21:55:03.9319289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h 2025-08-14T21:55:03.9323200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_native.h 2025-08-14T21:55:03.9327164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_ops.h 2025-08-14T21:55:03.9330840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack.h 2025-08-14T21:55:03.9334570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9338075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_native.h 2025-08-14T21:55:03.9341642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_ops.h 2025-08-14T21:55:03.9345329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std.h 2025-08-14T21:55:03.9348855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9352620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cpu_dispatch.h 2025-08-14T21:55:03.9356889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cuda_dispatch.h 2025-08-14T21:55:03.9360465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean.h 2025-08-14T21:55:03.9364118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9367967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9371383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cpu_dispatch.h 2025-08-14T21:55:03.9375300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cuda_dispatch.h 2025-08-14T21:55:03.9378977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_native.h 2025-08-14T21:55:03.9382922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_ops.h 2025-08-14T21:55:03.9386635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_native.h 2025-08-14T21:55:03.9390152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_ops.h 2025-08-14T21:55:03.9393434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft.h 2025-08-14T21:55:03.9397092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9400769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_native.h 2025-08-14T21:55:03.9404336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_ops.h 2025-08-14T21:55:03.9407558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride.h 2025-08-14T21:55:03.9411121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9414941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_native.h 2025-08-14T21:55:03.9418402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_ops.h 2025-08-14T21:55:03.9422004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub.h 2025-08-14T21:55:03.9425334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract.h 2025-08-14T21:55:03.9429038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9432620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_native.h 2025-08-14T21:55:03.9436183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_ops.h 2025-08-14T21:55:03.9440455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9444240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9447829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cpu_dispatch.h 2025-08-14T21:55:03.9451429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cuda_dispatch.h 2025-08-14T21:55:03.9454871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta.h 2025-08-14T21:55:03.9458294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta_dispatch.h 2025-08-14T21:55:03.9461806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_native.h 2025-08-14T21:55:03.9465391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_ops.h 2025-08-14T21:55:03.9468905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum.h 2025-08-14T21:55:03.9472505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9476276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9479984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9483627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cpu_dispatch.h 2025-08-14T21:55:03.9487404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cuda_dispatch.h 2025-08-14T21:55:03.9491298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta.h 2025-08-14T21:55:03.9495010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta_dispatch.h 2025-08-14T21:55:03.9499364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_native.h 2025-08-14T21:55:03.9502401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_ops.h 2025-08-14T21:55:03.9506031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size.h 2025-08-14T21:55:03.9509795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9513518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_native.h 2025-08-14T21:55:03.9517319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_ops.h 2025-08-14T21:55:03.9520848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd.h 2025-08-14T21:55:03.9524460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9528376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_native.h 2025-08-14T21:55:03.9531878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_ops.h 2025-08-14T21:55:03.9535196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes.h 2025-08-14T21:55:03.9538640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9542264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_native.h 2025-08-14T21:55:03.9546306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_ops.h 2025-08-14T21:55:03.9550111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims.h 2025-08-14T21:55:03.9553682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9557424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_native.h 2025-08-14T21:55:03.9561002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_ops.h 2025-08-14T21:55:03.9564629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range.h 2025-08-14T21:55:03.9568366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9572033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size.h 2025-08-14T21:55:03.9576034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:03.9580119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_native.h 2025-08-14T21:55:03.9583881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h 2025-08-14T21:55:03.9587527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_native.h 2025-08-14T21:55:03.9591368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_ops.h 2025-08-14T21:55:03.9595113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel.h 2025-08-14T21:55:03.9598919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9602710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_native.h 2025-08-14T21:55:03.9606451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_ops.h 2025-08-14T21:55:03.9610208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size.h 2025-08-14T21:55:03.9615096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9618714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_native.h 2025-08-14T21:55:03.9622689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_ops.h 2025-08-14T21:55:03.9626412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset.h 2025-08-14T21:55:03.9630278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9633903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_native.h 2025-08-14T21:55:03.9638008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_ops.h 2025-08-14T21:55:03.9641684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride.h 2025-08-14T21:55:03.9645893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9649634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_native.h 2025-08-14T21:55:03.9677203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_ops.h 2025-08-14T21:55:03.9681254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t.h 2025-08-14T21:55:03.9684950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take.h 2025-08-14T21:55:03.9689225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim.h 2025-08-14T21:55:03.9693505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9697454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_native.h 2025-08-14T21:55:03.9701294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_ops.h 2025-08-14T21:55:03.9705284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cpu_dispatch.h 2025-08-14T21:55:03.9709209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cuda_dispatch.h 2025-08-14T21:55:03.9713240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_native.h 2025-08-14T21:55:03.9717227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_ops.h 2025-08-14T21:55:03.9720717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan.h 2025-08-14T21:55:03.9724077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh.h 2025-08-14T21:55:03.9727498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward.h 2025-08-14T21:55:03.9731275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9734903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h 2025-08-14T21:55:03.9738624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h 2025-08-14T21:55:03.9742529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta.h 2025-08-14T21:55:03.9746368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta_dispatch.h 2025-08-14T21:55:03.9750054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_native.h 2025-08-14T21:55:03.9754189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_ops.h 2025-08-14T21:55:03.9758081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9761568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cpu_dispatch.h 2025-08-14T21:55:03.9765260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cuda_dispatch.h 2025-08-14T21:55:03.9769054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta.h 2025-08-14T21:55:03.9772580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta_dispatch.h 2025-08-14T21:55:03.9776127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_native.h 2025-08-14T21:55:03.9780065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_ops.h 2025-08-14T21:55:03.9783721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9787754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cpu_dispatch.h 2025-08-14T21:55:03.9791421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cuda_dispatch.h 2025-08-14T21:55:03.9794888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta.h 2025-08-14T21:55:03.9798497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta_dispatch.h 2025-08-14T21:55:03.9801954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_native.h 2025-08-14T21:55:03.9805706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_ops.h 2025-08-14T21:55:03.9808888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor.h 2025-08-14T21:55:03.9812220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot.h 2025-08-14T21:55:03.9815860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9819364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_native.h 2025-08-14T21:55:03.9823103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_ops.h 2025-08-14T21:55:03.9826809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split.h 2025-08-14T21:55:03.9830671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9834268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_native.h 2025-08-14T21:55:03.9838078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_ops.h 2025-08-14T21:55:03.9841727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d.h 2025-08-14T21:55:03.9846520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9850083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_native.h 2025-08-14T21:55:03.9853930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_ops.h 2025-08-14T21:55:03.9857543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold.h 2025-08-14T21:55:03.9861201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward.h 2025-08-14T21:55:03.9864988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9868582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h 2025-08-14T21:55:03.9872401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h 2025-08-14T21:55:03.9876120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta.h 2025-08-14T21:55:03.9880195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta_dispatch.h 2025-08-14T21:55:03.9884550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_native.h 2025-08-14T21:55:03.9888354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_ops.h 2025-08-14T21:55:03.9923740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9927652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cpu_dispatch.h 2025-08-14T21:55:03.9931466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cuda_dispatch.h 2025-08-14T21:55:03.9935599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta.h 2025-08-14T21:55:03.9939024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta_dispatch.h 2025-08-14T21:55:03.9942593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_native.h 2025-08-14T21:55:03.9946564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_ops.h 2025-08-14T21:55:03.9950487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile.h 2025-08-14T21:55:03.9954303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:03.9957899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_native.h 2025-08-14T21:55:03.9961511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_ops.h 2025-08-14T21:55:03.9965031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to.h 2025-08-14T21:55:03.9968672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk.h 2025-08-14T21:55:03.9972493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:03.9976105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cpu_dispatch.h 2025-08-14T21:55:03.9979786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cuda_dispatch.h 2025-08-14T21:55:03.9983299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta.h 2025-08-14T21:55:03.9986950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta_dispatch.h 2025-08-14T21:55:03.9990688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_native.h 2025-08-14T21:55:03.9994288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_ops.h 2025-08-14T21:55:03.9998108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0001699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense.h 2025-08-14T21:55:04.0005207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward.h 2025-08-14T21:55:04.0009063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0012764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_native.h 2025-08-14T21:55:04.0016440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_ops.h 2025-08-14T21:55:04.0020889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0025065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_native.h 2025-08-14T21:55:04.0028721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_ops.h 2025-08-14T21:55:04.0032439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn.h 2025-08-14T21:55:04.0036455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward.h 2025-08-14T21:55:04.0040452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0044292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_native.h 2025-08-14T21:55:04.0047988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_ops.h 2025-08-14T21:55:04.0052224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0055937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h 2025-08-14T21:55:04.0059369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_native.h 2025-08-14T21:55:04.0062811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_ops.h 2025-08-14T21:55:04.0066347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_native.h 2025-08-14T21:55:04.0069755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_ops.h 2025-08-14T21:55:04.0073216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor.h 2025-08-14T21:55:04.0077173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0080910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_native.h 2025-08-14T21:55:04.0084738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_ops.h 2025-08-14T21:55:04.0088828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse.h 2025-08-14T21:55:04.0092694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc.h 2025-08-14T21:55:04.0096566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0100369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_native.h 2025-08-14T21:55:04.0103952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_ops.h 2025-08-14T21:55:04.0107578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr.h 2025-08-14T21:55:04.0111253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0114783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_native.h 2025-08-14T21:55:04.0118512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_ops.h 2025-08-14T21:55:04.0122913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0126575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc.h 2025-08-14T21:55:04.0130673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0134412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_native.h 2025-08-14T21:55:04.0138338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_ops.h 2025-08-14T21:55:04.0142446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr.h 2025-08-14T21:55:04.0146815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0151115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_native.h 2025-08-14T21:55:04.0155639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_ops.h 2025-08-14T21:55:04.0159787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_native.h 2025-08-14T21:55:04.0163460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_ops.h 2025-08-14T21:55:04.0167098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace.h 2025-08-14T21:55:04.0170689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward.h 2025-08-14T21:55:04.0174800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0178269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_native.h 2025-08-14T21:55:04.0182019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_ops.h 2025-08-14T21:55:04.0185880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0189936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cpu_dispatch.h 2025-08-14T21:55:04.0193792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cuda_dispatch.h 2025-08-14T21:55:04.0198200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_native.h 2025-08-14T21:55:04.0201950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_ops.h 2025-08-14T21:55:04.0205625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose.h 2025-08-14T21:55:04.0209687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0213803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0217522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy.h 2025-08-14T21:55:04.0221408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0226016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0229670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_native.h 2025-08-14T21:55:04.0233339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_ops.h 2025-08-14T21:55:04.0237081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_native.h 2025-08-14T21:55:04.0240986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_ops.h 2025-08-14T21:55:04.0244560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid.h 2025-08-14T21:55:04.0248238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0251746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_native.h 2025-08-14T21:55:04.0255298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_ops.h 2025-08-14T21:55:04.0258888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz.h 2025-08-14T21:55:04.0262587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0266176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_native.h 2025-08-14T21:55:04.0269800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_ops.h 2025-08-14T21:55:04.0273397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve.h 2025-08-14T21:55:04.0277303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0280825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h 2025-08-14T21:55:04.0284542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h 2025-08-14T21:55:04.0288415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta.h 2025-08-14T21:55:04.0293646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta_dispatch.h 2025-08-14T21:55:04.0298683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_native.h 2025-08-14T21:55:04.0303001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_ops.h 2025-08-14T21:55:04.0307011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril.h 2025-08-14T21:55:04.0311368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0315199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cpu_dispatch.h 2025-08-14T21:55:04.0319474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cuda_dispatch.h 2025-08-14T21:55:04.0323680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices.h 2025-08-14T21:55:04.0327923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0332296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cpu_dispatch.h 2025-08-14T21:55:04.0336556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cuda_dispatch.h 2025-08-14T21:55:04.0340858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_native.h 2025-08-14T21:55:04.0344898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_ops.h 2025-08-14T21:55:04.0349213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta.h 2025-08-14T21:55:04.0353069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta_dispatch.h 2025-08-14T21:55:04.0356690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_native.h 2025-08-14T21:55:04.0359819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_ops.h 2025-08-14T21:55:04.0362941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss.h 2025-08-14T21:55:04.0366875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0370423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_native.h 2025-08-14T21:55:04.0374372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_ops.h 2025-08-14T21:55:04.0377885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu.h 2025-08-14T21:55:04.0381507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0385611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cpu_dispatch.h 2025-08-14T21:55:04.0389079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cuda_dispatch.h 2025-08-14T21:55:04.0392641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices.h 2025-08-14T21:55:04.0396583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0400416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cpu_dispatch.h 2025-08-14T21:55:04.0403856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cuda_dispatch.h 2025-08-14T21:55:04.0407879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_native.h 2025-08-14T21:55:04.0411687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_ops.h 2025-08-14T21:55:04.0415447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta.h 2025-08-14T21:55:04.0419032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta_dispatch.h 2025-08-14T21:55:04.0422572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_native.h 2025-08-14T21:55:04.0426298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_ops.h 2025-08-14T21:55:04.0429514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide.h 2025-08-14T21:55:04.0433006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0437280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_native.h 2025-08-14T21:55:04.0441222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_ops.h 2025-08-14T21:55:04.0444799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc.h 2025-08-14T21:55:04.0448238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0452021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cpu_dispatch.h 2025-08-14T21:55:04.0455754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cuda_dispatch.h 2025-08-14T21:55:04.0459050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta.h 2025-08-14T21:55:04.0462757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta_dispatch.h 2025-08-14T21:55:04.0466490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_native.h 2025-08-14T21:55:04.0470024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_ops.h 2025-08-14T21:55:04.0473636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as.h 2025-08-14T21:55:04.0477319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0480722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_native.h 2025-08-14T21:55:04.0484196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_ops.h 2025-08-14T21:55:04.0487895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0491623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy.h 2025-08-14T21:55:04.0495214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0499332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0502905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_native.h 2025-08-14T21:55:04.0506427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_ops.h 2025-08-14T21:55:04.0510161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_native.h 2025-08-14T21:55:04.0513988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_ops.h 2025-08-14T21:55:04.0517250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind.h 2025-08-14T21:55:04.0520954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0524548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0528364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy.h 2025-08-14T21:55:04.0532186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0535887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0540114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_native.h 2025-08-14T21:55:04.0543981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_ops.h 2025-08-14T21:55:04.0547614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_native.h 2025-08-14T21:55:04.0551281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_ops.h 2025-08-14T21:55:04.0554856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten.h 2025-08-14T21:55:04.0558783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0562512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors.h 2025-08-14T21:55:04.0566270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0570061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_native.h 2025-08-14T21:55:04.0573753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_ops.h 2025-08-14T21:55:04.0577412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_native.h 2025-08-14T21:55:04.0581025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_ops.h 2025-08-14T21:55:04.0584592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold.h 2025-08-14T21:55:04.0588036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward.h 2025-08-14T21:55:04.0591769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0595760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h 2025-08-14T21:55:04.0599759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h 2025-08-14T21:55:04.0603482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_native.h 2025-08-14T21:55:04.0607129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_ops.h 2025-08-14T21:55:04.0610840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy.h 2025-08-14T21:55:04.0614682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0618665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0622301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_native.h 2025-08-14T21:55:04.0625977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_ops.h 2025-08-14T21:55:04.0629713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cpu_dispatch.h 2025-08-14T21:55:04.0634041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cuda_dispatch.h 2025-08-14T21:55:04.0652552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_meta_dispatch.h 2025-08-14T21:55:04.0652959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_native.h 2025-08-14T21:55:04.0653193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_ops.h 2025-08-14T21:55:04.0653437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform.h 2025-08-14T21:55:04.0655028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0658837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cpu_dispatch.h 2025-08-14T21:55:04.0662635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cuda_dispatch.h 2025-08-14T21:55:04.0666556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_meta_dispatch.h 2025-08-14T21:55:04.0670392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_native.h 2025-08-14T21:55:04.0674129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_ops.h 2025-08-14T21:55:04.0678023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive.h 2025-08-14T21:55:04.0708620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0712220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h 2025-08-14T21:55:04.0715962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h 2025-08-14T21:55:04.0719787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_native.h 2025-08-14T21:55:04.0723523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_ops.h 2025-08-14T21:55:04.0727216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim.h 2025-08-14T21:55:04.0731212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0734842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive.h 2025-08-14T21:55:04.0738752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0742360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h 2025-08-14T21:55:04.0746277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h 2025-08-14T21:55:04.0750176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_native.h 2025-08-14T21:55:04.0754021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_ops.h 2025-08-14T21:55:04.0757814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cpu_dispatch.h 2025-08-14T21:55:04.0761646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cuda_dispatch.h 2025-08-14T21:55:04.0765229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_native.h 2025-08-14T21:55:04.0769006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_ops.h 2025-08-14T21:55:04.0773760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk.h 2025-08-14T21:55:04.0777612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0781331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_native.h 2025-08-14T21:55:04.0784952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_ops.h 2025-08-14T21:55:04.0788571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split.h 2025-08-14T21:55:04.0792452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0796590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_native.h 2025-08-14T21:55:04.0800421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_ops.h 2025-08-14T21:55:04.0804097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes.h 2025-08-14T21:55:04.0808168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0811878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_native.h 2025-08-14T21:55:04.0815626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h 2025-08-14T21:55:04.0819146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze.h 2025-08-14T21:55:04.0822811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0826275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy.h 2025-08-14T21:55:04.0830235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0833930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0837645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_native.h 2025-08-14T21:55:04.0841369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_ops.h 2025-08-14T21:55:04.0845153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_native.h 2025-08-14T21:55:04.0848695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_ops.h 2025-08-14T21:55:04.0852359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d.h 2025-08-14T21:55:04.0856239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward.h 2025-08-14T21:55:04.0860354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0863936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h 2025-08-14T21:55:04.0868145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h 2025-08-14T21:55:04.0871908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h 2025-08-14T21:55:04.0875886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h 2025-08-14T21:55:04.0879768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h 2025-08-14T21:55:04.0883563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h 2025-08-14T21:55:04.0887464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0891169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0894955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h 2025-08-14T21:55:04.0898763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h 2025-08-14T21:55:04.0902459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta.h 2025-08-14T21:55:04.0906269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h 2025-08-14T21:55:04.0909981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_native.h 2025-08-14T21:55:04.0913678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_ops.h 2025-08-14T21:55:04.0917750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d.h 2025-08-14T21:55:04.0931939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward.h 2025-08-14T21:55:04.0935920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0940119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h 2025-08-14T21:55:04.0943985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h 2025-08-14T21:55:04.0947770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h 2025-08-14T21:55:04.0952625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h 2025-08-14T21:55:04.0956625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h 2025-08-14T21:55:04.0960480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h 2025-08-14T21:55:04.0964456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.0968777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.0972704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.0976678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h 2025-08-14T21:55:04.0980542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h 2025-08-14T21:55:04.0984289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta.h 2025-08-14T21:55:04.0988064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h 2025-08-14T21:55:04.0991754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_native.h 2025-08-14T21:55:04.0995461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_ops.h 2025-08-14T21:55:04.0999749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d.h 2025-08-14T21:55:04.1003442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward.h 2025-08-14T21:55:04.1007395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1011159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h 2025-08-14T21:55:04.1015179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h 2025-08-14T21:55:04.1019013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta.h 2025-08-14T21:55:04.1022909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h 2025-08-14T21:55:04.1026748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_native.h 2025-08-14T21:55:04.1030594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_ops.h 2025-08-14T21:55:04.1034817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1038668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1042574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h 2025-08-14T21:55:04.1046326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h 2025-08-14T21:55:04.1050156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta.h 2025-08-14T21:55:04.1054023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h 2025-08-14T21:55:04.1058205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_native.h 2025-08-14T21:55:04.1062005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_ops.h 2025-08-14T21:55:04.1065913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d.h 2025-08-14T21:55:04.1069645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward.h 2025-08-14T21:55:04.1073690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1077828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h 2025-08-14T21:55:04.1081980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h 2025-08-14T21:55:04.1085693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h 2025-08-14T21:55:04.1089670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h 2025-08-14T21:55:04.1093448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_native.h 2025-08-14T21:55:04.1097166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h 2025-08-14T21:55:04.1101078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1104938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1108855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h 2025-08-14T21:55:04.1112608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h 2025-08-14T21:55:04.1116378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta.h 2025-08-14T21:55:04.1120260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h 2025-08-14T21:55:04.1124269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_native.h 2025-08-14T21:55:04.1128051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_ops.h 2025-08-14T21:55:04.1132519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d.h 2025-08-14T21:55:04.1136403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward.h 2025-08-14T21:55:04.1140289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1143896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h 2025-08-14T21:55:04.1148102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h 2025-08-14T21:55:04.1151852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h 2025-08-14T21:55:04.1155785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h 2025-08-14T21:55:04.1159618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_native.h 2025-08-14T21:55:04.1163381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h 2025-08-14T21:55:04.1167357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1171179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1175119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1178887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h 2025-08-14T21:55:04.1182613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h 2025-08-14T21:55:04.1186271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta.h 2025-08-14T21:55:04.1189982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h 2025-08-14T21:55:04.1193729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_native.h 2025-08-14T21:55:04.1198048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_ops.h 2025-08-14T21:55:04.1202741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d.h 2025-08-14T21:55:04.1206670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward.h 2025-08-14T21:55:04.1211199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1215010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h 2025-08-14T21:55:04.1218854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h 2025-08-14T21:55:04.1222821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h 2025-08-14T21:55:04.1226687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h 2025-08-14T21:55:04.1230624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_native.h 2025-08-14T21:55:04.1234372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h 2025-08-14T21:55:04.1239011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1242964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1246702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h 2025-08-14T21:55:04.1250463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h 2025-08-14T21:55:04.1254193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta.h 2025-08-14T21:55:04.1258030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h 2025-08-14T21:55:04.1261661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_native.h 2025-08-14T21:55:04.1265583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_ops.h 2025-08-14T21:55:04.1269334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d.h 2025-08-14T21:55:04.1273613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward.h 2025-08-14T21:55:04.1277816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1281688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h 2025-08-14T21:55:04.1285447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h 2025-08-14T21:55:04.1289365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h 2025-08-14T21:55:04.1293330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h 2025-08-14T21:55:04.1297072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h 2025-08-14T21:55:04.1300818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h 2025-08-14T21:55:04.1304759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1308717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1312445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h 2025-08-14T21:55:04.1316195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h 2025-08-14T21:55:04.1320061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta.h 2025-08-14T21:55:04.1324183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h 2025-08-14T21:55:04.1327947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_native.h 2025-08-14T21:55:04.1331992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_ops.h 2025-08-14T21:55:04.1335725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values.h 2025-08-14T21:55:04.1339281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1342813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy.h 2025-08-14T21:55:04.1347022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1350674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1354597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_native.h 2025-08-14T21:55:04.1358497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_ops.h 2025-08-14T21:55:04.1362660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_native.h 2025-08-14T21:55:04.1366390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_ops.h 2025-08-14T21:55:04.1370164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward.h 2025-08-14T21:55:04.1374064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1377731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_native.h 2025-08-14T21:55:04.1381475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h 2025-08-14T21:55:04.1385070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander.h 2025-08-14T21:55:04.1388556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1392592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_native.h 2025-08-14T21:55:04.1396119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_ops.h 2025-08-14T21:55:04.1399942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var.h 2025-08-14T21:55:04.1403319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1406896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cpu_dispatch.h 2025-08-14T21:55:04.1410466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cuda_dispatch.h 2025-08-14T21:55:04.1413990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean.h 2025-08-14T21:55:04.1417483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1422499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1426136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cpu_dispatch.h 2025-08-14T21:55:04.1429851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cuda_dispatch.h 2025-08-14T21:55:04.1433727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_native.h 2025-08-14T21:55:04.1437440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_ops.h 2025-08-14T21:55:04.1440975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_native.h 2025-08-14T21:55:04.1444431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_ops.h 2025-08-14T21:55:04.1447683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot.h 2025-08-14T21:55:04.1451269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1454769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cpu_dispatch.h 2025-08-14T21:55:04.1458470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cuda_dispatch.h 2025-08-14T21:55:04.1462416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_native.h 2025-08-14T21:55:04.1465934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_ops.h 2025-08-14T21:55:04.1469404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view.h 2025-08-14T21:55:04.1472846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as.h 2025-08-14T21:55:04.1476185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex.h 2025-08-14T21:55:04.1480497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy.h 2025-08-14T21:55:04.1484429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1488176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1492122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_native.h 2025-08-14T21:55:04.1495958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_ops.h 2025-08-14T21:55:04.1499753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h 2025-08-14T21:55:04.1503647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h 2025-08-14T21:55:04.1507659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_meta_dispatch.h 2025-08-14T21:55:04.1511363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_native.h 2025-08-14T21:55:04.1515325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_ops.h 2025-08-14T21:55:04.1519847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1523455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_native.h 2025-08-14T21:55:04.1527684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_ops.h 2025-08-14T21:55:04.1531471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real.h 2025-08-14T21:55:04.1535405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy.h 2025-08-14T21:55:04.1539392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1543457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1547236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_native.h 2025-08-14T21:55:04.1551016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_ops.h 2025-08-14T21:55:04.1554886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cpu_dispatch.h 2025-08-14T21:55:04.1558849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cuda_dispatch.h 2025-08-14T21:55:04.1562597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_meta_dispatch.h 2025-08-14T21:55:04.1566711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_native.h 2025-08-14T21:55:04.1570544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_ops.h 2025-08-14T21:55:04.1574225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1577781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy.h 2025-08-14T21:55:04.1581697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1585434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1589159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_native.h 2025-08-14T21:55:04.1593055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_ops.h 2025-08-14T21:55:04.1597014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cpu_dispatch.h 2025-08-14T21:55:04.1600865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cuda_dispatch.h 2025-08-14T21:55:04.1604893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_meta_dispatch.h 2025-08-14T21:55:04.1608468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_native.h 2025-08-14T21:55:04.1611962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_ops.h 2025-08-14T21:55:04.1615242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit.h 2025-08-14T21:55:04.1619198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1623060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_native.h 2025-08-14T21:55:04.1627405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_ops.h 2025-08-14T21:55:04.1631400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack.h 2025-08-14T21:55:04.1635062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1639413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_native.h 2025-08-14T21:55:04.1643082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_ops.h 2025-08-14T21:55:04.1647476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where.h 2025-08-14T21:55:04.1651427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1655408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cpu_dispatch.h 2025-08-14T21:55:04.1659156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cuda_dispatch.h 2025-08-14T21:55:04.1662763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_native.h 2025-08-14T21:55:04.1666458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_ops.h 2025-08-14T21:55:04.1670038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy.h 2025-08-14T21:55:04.1673784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1677514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1681742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cpu_dispatch.h 2025-08-14T21:55:04.1685490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cuda_dispatch.h 2025-08-14T21:55:04.1689261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta.h 2025-08-14T21:55:04.1692866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta_dispatch.h 2025-08-14T21:55:04.1696432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_native.h 2025-08-14T21:55:04.1699964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_ops.h 2025-08-14T21:55:04.1728247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor.h 2025-08-14T21:55:04.1731773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1735591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_native.h 2025-08-14T21:55:04.1739183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_ops.h 2025-08-14T21:55:04.1742522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero.h 2025-08-14T21:55:04.1745856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros.h 2025-08-14T21:55:04.1749439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1752875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like.h 2025-08-14T21:55:04.1756659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1760363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:55:04.1764511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_native.h 2025-08-14T21:55:04.1768212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_ops.h 2025-08-14T21:55:04.1771884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_native.h 2025-08-14T21:55:04.1775462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_ops.h 2025-08-14T21:55:04.1779627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1783201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cpu_dispatch.h 2025-08-14T21:55:04.1786741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cuda_dispatch.h 2025-08-14T21:55:04.1790485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_meta_dispatch.h 2025-08-14T21:55:04.1794162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_native.h 2025-08-14T21:55:04.1797951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_ops.h 2025-08-14T21:55:04.1801302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d.h 2025-08-14T21:55:04.1804938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h 2025-08-14T21:55:04.1808865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1812553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h 2025-08-14T21:55:04.1816747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h 2025-08-14T21:55:04.1820723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h 2025-08-14T21:55:04.1824434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h 2025-08-14T21:55:04.1828369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1832218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h 2025-08-14T21:55:04.1836139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h 2025-08-14T21:55:04.1840072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h 2025-08-14T21:55:04.1844048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h 2025-08-14T21:55:04.1847700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d.h 2025-08-14T21:55:04.1851411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h 2025-08-14T21:55:04.1855395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1859700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:55:04.1864610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:55:04.1868611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h 2025-08-14T21:55:04.1872454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h 2025-08-14T21:55:04.1876355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1880431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h 2025-08-14T21:55:04.1884290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h 2025-08-14T21:55:04.1888009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h 2025-08-14T21:55:04.1891989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h 2025-08-14T21:55:04.1895769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation.h 2025-08-14T21:55:04.1899552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.1903336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h 2025-08-14T21:55:04.1907136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h 2025-08-14T21:55:04.1911157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta.h 2025-08-14T21:55:04.1915006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h 2025-08-14T21:55:04.1918995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_native.h 2025-08-14T21:55:04.1922660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_ops.h 2025-08-14T21:55:04.1926550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim.h 2025-08-14T21:55:04.1930734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.1934260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_native.h 2025-08-14T21:55:04.1938152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_ops.h 2025-08-14T21:55:04.1941756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu.h 2025-08-14T21:55:04.1945453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1949085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_cpu_dispatch.h 2025-08-14T21:55:04.1952845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_meta_dispatch.h 2025-08-14T21:55:04.1957121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_native.h 2025-08-14T21:55:04.1960944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_ops.h 2025-08-14T21:55:04.1964648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax.h 2025-08-14T21:55:04.1968165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1972213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cpu_dispatch.h 2025-08-14T21:55:04.1975642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cuda_dispatch.h 2025-08-14T21:55:04.1979213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_native.h 2025-08-14T21:55:04.1982962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_ops.h 2025-08-14T21:55:04.1987049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h 2025-08-14T21:55:04.1990868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.1994620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h 2025-08-14T21:55:04.1998553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h 2025-08-14T21:55:04.2002416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h 2025-08-14T21:55:04.2006522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h 2025-08-14T21:55:04.2010312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale.h 2025-08-14T21:55:04.2014064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2017745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h 2025-08-14T21:55:04.2021583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h 2025-08-14T21:55:04.2025912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h 2025-08-14T21:55:04.2029733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_native.h 2025-08-14T21:55:04.2033447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_ops.h 2025-08-14T21:55:04.2037261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async.h 2025-08-14T21:55:04.2041431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cpu_dispatch.h 2025-08-14T21:55:04.2045360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cuda_dispatch.h 2025-08-14T21:55:04.2049035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_native.h 2025-08-14T21:55:04.2053497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_ops.h 2025-08-14T21:55:04.2057288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar.h 2025-08-14T21:55:04.2061300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2064952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_native.h 2025-08-14T21:55:04.2068758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_ops.h 2025-08-14T21:55:04.2072602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata.h 2025-08-14T21:55:04.2076653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2080649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h 2025-08-14T21:55:04.2084661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_native.h 2025-08-14T21:55:04.2088507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_ops.h 2025-08-14T21:55:04.2092058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision.h 2025-08-14T21:55:04.2095857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2099876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_native.h 2025-08-14T21:55:04.2103815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_ops.h 2025-08-14T21:55:04.2107663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision.h 2025-08-14T21:55:04.2111599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2115514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h 2025-08-14T21:55:04.2119528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h 2025-08-14T21:55:04.2123371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward.h 2025-08-14T21:55:04.2127339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2131007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_native.h 2025-08-14T21:55:04.2134644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_ops.h 2025-08-14T21:55:04.2138483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index.h 2025-08-14T21:55:04.2142261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward.h 2025-08-14T21:55:04.2146660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2150764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h 2025-08-14T21:55:04.2154736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h 2025-08-14T21:55:04.2180982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2184616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_native.h 2025-08-14T21:55:04.2188580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_ops.h 2025-08-14T21:55:04.2192346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update.h 2025-08-14T21:55:04.2196692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2200362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_native.h 2025-08-14T21:55:04.2204067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_ops.h 2025-08-14T21:55:04.2207782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update.h 2025-08-14T21:55:04.2212129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2216004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h 2025-08-14T21:55:04.2220070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h 2025-08-14T21:55:04.2223712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_native.h 2025-08-14T21:55:04.2227978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_ops.h 2025-08-14T21:55:04.2231482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte.h 2025-08-14T21:55:04.2235120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2238825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_native.h 2025-08-14T21:55:04.2242530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_ops.h 2025-08-14T21:55:04.2246125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char.h 2025-08-14T21:55:04.2249928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2253524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_native.h 2025-08-14T21:55:04.2257259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_ops.h 2025-08-14T21:55:04.2260814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double.h 2025-08-14T21:55:04.2265151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2268994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_native.h 2025-08-14T21:55:04.2272598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_ops.h 2025-08-14T21:55:04.2277052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float.h 2025-08-14T21:55:04.2281483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2284913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_native.h 2025-08-14T21:55:04.2289065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_ops.h 2025-08-14T21:55:04.2293181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half.h 2025-08-14T21:55:04.2297080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2301391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_native.h 2025-08-14T21:55:04.2305144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_ops.h 2025-08-14T21:55:04.2308824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int.h 2025-08-14T21:55:04.2312718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2316459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_native.h 2025-08-14T21:55:04.2320379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_ops.h 2025-08-14T21:55:04.2324004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long.h 2025-08-14T21:55:04.2328171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2331818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_native.h 2025-08-14T21:55:04.2336037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_ops.h 2025-08-14T21:55:04.2339838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short.h 2025-08-14T21:55:04.2343723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2347327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_native.h 2025-08-14T21:55:04.2351060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_ops.h 2025-08-14T21:55:04.2354861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward.h 2025-08-14T21:55:04.2358710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2362385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h 2025-08-14T21:55:04.2366027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h 2025-08-14T21:55:04.2370134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_native.h 2025-08-14T21:55:04.2374373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_ops.h 2025-08-14T21:55:04.2378371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward.h 2025-08-14T21:55:04.2382403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2386102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h 2025-08-14T21:55:04.2389866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h 2025-08-14T21:55:04.2393543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_native.h 2025-08-14T21:55:04.2397382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_ops.h 2025-08-14T21:55:04.2401206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper.h 2025-08-14T21:55:04.2405143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2408891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h 2025-08-14T21:55:04.2412718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h 2025-08-14T21:55:04.2416494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_native.h 2025-08-14T21:55:04.2420311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_ops.h 2025-08-14T21:55:04.2424215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor.h 2025-08-14T21:55:04.2428205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2431939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h 2025-08-14T21:55:04.2435715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h 2025-08-14T21:55:04.2439449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat.h 2025-08-14T21:55:04.2443426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2447190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h 2025-08-14T21:55:04.2451011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_native.h 2025-08-14T21:55:04.2454755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_ops.h 2025-08-14T21:55:04.2458415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce.h 2025-08-14T21:55:04.2462057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced.h 2025-08-14T21:55:04.2465886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2470295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_meta_dispatch.h 2025-08-14T21:55:04.2474104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_native.h 2025-08-14T21:55:04.2477959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_ops.h 2025-08-14T21:55:04.2482113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2486571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_native.h 2025-08-14T21:55:04.2490386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_ops.h 2025-08-14T21:55:04.2494378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination.h 2025-08-14T21:55:04.2498186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h 2025-08-14T21:55:04.2501881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h 2025-08-14T21:55:04.2505872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_native.h 2025-08-14T21:55:04.2509600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_ops.h 2025-08-14T21:55:04.2513787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj.h 2025-08-14T21:55:04.2517560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2521486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy.h 2025-08-14T21:55:04.2525131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.2528901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2532860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_native.h 2025-08-14T21:55:04.2537054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_ops.h 2025-08-14T21:55:04.2540849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_native.h 2025-08-14T21:55:04.2544530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_ops.h 2025-08-14T21:55:04.2548299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical.h 2025-08-14T21:55:04.2552121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2555890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_native.h 2025-08-14T21:55:04.2559931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_ops.h 2025-08-14T21:55:04.2563675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h 2025-08-14T21:55:04.2567601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.2571864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h 2025-08-14T21:55:04.2575929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h 2025-08-14T21:55:04.2579680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h 2025-08-14T21:55:04.2583518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h 2025-08-14T21:55:04.2587300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h 2025-08-14T21:55:04.2591039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h 2025-08-14T21:55:04.2594758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h 2025-08-14T21:55:04.2598914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.2603168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h 2025-08-14T21:55:04.2607343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h 2025-08-14T21:55:04.2611153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h 2025-08-14T21:55:04.2615041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h 2025-08-14T21:55:04.2619116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h 2025-08-14T21:55:04.2622896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h 2025-08-14T21:55:04.2626673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack.h 2025-08-14T21:55:04.2630548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h 2025-08-14T21:55:04.2634294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h 2025-08-14T21:55:04.2638212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h 2025-08-14T21:55:04.2642155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h 2025-08-14T21:55:04.2646003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h 2025-08-14T21:55:04.2649828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h 2025-08-14T21:55:04.2653633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h 2025-08-14T21:55:04.2657931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution.h 2025-08-14T21:55:04.2662258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2666372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2670373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward.h 2025-08-14T21:55:04.2674815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2679233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_native.h 2025-08-14T21:55:04.2683424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_ops.h 2025-08-14T21:55:04.2687711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode.h 2025-08-14T21:55:04.2692400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.2696707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_native.h 2025-08-14T21:55:04.2701137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_ops.h 2025-08-14T21:55:04.2705977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_native.h 2025-08-14T21:55:04.2709880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_ops.h 2025-08-14T21:55:04.2713750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d.h 2025-08-14T21:55:04.2717595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h 2025-08-14T21:55:04.2721602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_native.h 2025-08-14T21:55:04.2725469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_ops.h 2025-08-14T21:55:04.2729779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from.h 2025-08-14T21:55:04.2733571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize.h 2025-08-14T21:55:04.2737405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2741069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_native.h 2025-08-14T21:55:04.2764346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_ops.h 2025-08-14T21:55:04.2768864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2772808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_native.h 2025-08-14T21:55:04.2776432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_ops.h 2025-08-14T21:55:04.2780689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress.h 2025-08-14T21:55:04.2784387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h 2025-08-14T21:55:04.2788033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_native.h 2025-08-14T21:55:04.2791862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_ops.h 2025-08-14T21:55:04.2795566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm.h 2025-08-14T21:55:04.2799678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h 2025-08-14T21:55:04.2803393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_native.h 2025-08-14T21:55:04.2807123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_ops.h 2025-08-14T21:55:04.2810933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search.h 2025-08-14T21:55:04.2814771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h 2025-08-14T21:55:04.2818786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h 2025-08-14T21:55:04.2822448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h 2025-08-14T21:55:04.2826140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss.h 2025-08-14T21:55:04.2829697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward.h 2025-08-14T21:55:04.2833485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2837250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h 2025-08-14T21:55:04.2840998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h 2025-08-14T21:55:04.2844906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_native.h 2025-08-14T21:55:04.2848620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_ops.h 2025-08-14T21:55:04.2852520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2856153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h 2025-08-14T21:55:04.2859984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h 2025-08-14T21:55:04.2864001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h 2025-08-14T21:55:04.2867755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_native.h 2025-08-14T21:55:04.2871378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_ops.h 2025-08-14T21:55:04.2875018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward.h 2025-08-14T21:55:04.2878756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h 2025-08-14T21:55:04.2882803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_native.h 2025-08-14T21:55:04.2886922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_ops.h 2025-08-14T21:55:04.2890652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward.h 2025-08-14T21:55:04.2894574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h 2025-08-14T21:55:04.2898695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_native.h 2025-08-14T21:55:04.2902484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_ops.h 2025-08-14T21:55:04.2906262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss.h 2025-08-14T21:55:04.2910158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2913831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h 2025-08-14T21:55:04.2917809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_native.h 2025-08-14T21:55:04.2921522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h 2025-08-14T21:55:04.2925273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state.h 2025-08-14T21:55:04.2929157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2932863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h 2025-08-14T21:55:04.2936572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h 2025-08-14T21:55:04.2940834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h 2025-08-14T21:55:04.2945966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn.h 2025-08-14T21:55:04.2949829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward.h 2025-08-14T21:55:04.2954081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2958295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h 2025-08-14T21:55:04.2961998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_native.h 2025-08-14T21:55:04.2965782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h 2025-08-14T21:55:04.2969725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2973470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h 2025-08-14T21:55:04.2977335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h 2025-08-14T21:55:04.2981473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.2985274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h 2025-08-14T21:55:04.2988953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h 2025-08-14T21:55:04.2992859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h 2025-08-14T21:55:04.2996682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_native.h 2025-08-14T21:55:04.3000381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_ops.h 2025-08-14T21:55:04.3004110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache.h 2025-08-14T21:55:04.3008026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.3011576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h 2025-08-14T21:55:04.3015329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h 2025-08-14T21:55:04.3019046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h 2025-08-14T21:55:04.3022998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.3026702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h 2025-08-14T21:55:04.3030450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h 2025-08-14T21:55:04.3034222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size.h 2025-08-14T21:55:04.3038938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.3042616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h 2025-08-14T21:55:04.3046468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h 2025-08-14T21:55:04.3050592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h 2025-08-14T21:55:04.3054519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.3059088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h 2025-08-14T21:55:04.3062901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h 2025-08-14T21:55:04.3066737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper.h 2025-08-14T21:55:04.3070895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h 2025-08-14T21:55:04.3074714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h 2025-08-14T21:55:04.3078518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_native.h 2025-08-14T21:55:04.3082362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_ops.h 2025-08-14T21:55:04.3086388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper.h 2025-08-14T21:55:04.3090214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h 2025-08-14T21:55:04.3093978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h 2025-08-14T21:55:04.3097711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_native.h 2025-08-14T21:55:04.3101486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_ops.h 2025-08-14T21:55:04.3105264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap.h 2025-08-14T21:55:04.3109168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.3112975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_native.h 2025-08-14T21:55:04.3116990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h 2025-08-14T21:55:04.3120777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI.h 2025-08-14T21:55:04.3124325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_native.h 2025-08-14T21:55:04.3127934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_ops.h 2025-08-14T21:55:04.3131690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV.h 2025-08-14T21:55:04.3135130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_native.h 2025-08-14T21:55:04.3138715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_ops.h 2025-08-14T21:55:04.3142579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange.h 2025-08-14T21:55:04.3146398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.3150412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_native.h 2025-08-14T21:55:04.3154517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_ops.h 2025-08-14T21:55:04.3159091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad.h 2025-08-14T21:55:04.3162785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3166790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h 2025-08-14T21:55:04.3171145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h 2025-08-14T21:55:04.3176753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_native.h 2025-08-14T21:55:04.3181080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_ops.h 2025-08-14T21:55:04.3185334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h 2025-08-14T21:55:04.3189547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h 2025-08-14T21:55:04.3193785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h 2025-08-14T21:55:04.3198259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h 2025-08-14T21:55:04.3202712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h 2025-08-14T21:55:04.3206571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h 2025-08-14T21:55:04.3210459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h 2025-08-14T21:55:04.3214365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h 2025-08-14T21:55:04.3218448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor.h 2025-08-14T21:55:04.3222368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3226289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h 2025-08-14T21:55:04.3230096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h 2025-08-14T21:55:04.3233794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h 2025-08-14T21:55:04.3238748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_native.h 2025-08-14T21:55:04.3242443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_ops.h 2025-08-14T21:55:04.3246201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward.h 2025-08-14T21:55:04.3250155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h 2025-08-14T21:55:04.3254073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_native.h 2025-08-14T21:55:04.3257838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_ops.h 2025-08-14T21:55:04.3261542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward.h 2025-08-14T21:55:04.3265301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h 2025-08-14T21:55:04.3269191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_native.h 2025-08-14T21:55:04.3273044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_ops.h 2025-08-14T21:55:04.3277209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag.h 2025-08-14T21:55:04.3280883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward.h 2025-08-14T21:55:04.3284661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h 2025-08-14T21:55:04.3288356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h 2025-08-14T21:55:04.3292109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_native.h 2025-08-14T21:55:04.3296530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_ops.h 2025-08-14T21:55:04.3300452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3304128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h 2025-08-14T21:55:04.3307867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h 2025-08-14T21:55:04.3312061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward.h 2025-08-14T21:55:04.3315927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3319910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h 2025-08-14T21:55:04.3323648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h 2025-08-14T21:55:04.3327343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h 2025-08-14T21:55:04.3330999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h 2025-08-14T21:55:04.3334681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only.h 2025-08-14T21:55:04.3338538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3342625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h 2025-08-14T21:55:04.3346419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h 2025-08-14T21:55:04.3359881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_native.h 2025-08-14T21:55:04.3363894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h 2025-08-14T21:55:04.3367656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_native.h 2025-08-14T21:55:04.3371689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_ops.h 2025-08-14T21:55:04.3375557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h 2025-08-14T21:55:04.3379874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3383644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h 2025-08-14T21:55:04.3387502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h 2025-08-14T21:55:04.3391840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h 2025-08-14T21:55:04.3395670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h 2025-08-14T21:55:04.3399535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward.h 2025-08-14T21:55:04.3403451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.3407200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h 2025-08-14T21:55:04.3411247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h 2025-08-14T21:55:04.3415148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized.h 2025-08-14T21:55:04.3420267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3424361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h 2025-08-14T21:55:04.3428118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_native.h 2025-08-14T21:55:04.3431872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_ops.h 2025-08-14T21:55:04.3435906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h 2025-08-14T21:55:04.3439997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3443784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h 2025-08-14T21:55:04.3447581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h 2025-08-14T21:55:04.3451407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h 2025-08-14T21:55:04.3455422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist.h 2025-08-14T21:55:04.3459975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3463592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_native.h 2025-08-14T21:55:04.3467973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_ops.h 2025-08-14T21:55:04.3471868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h 2025-08-14T21:55:04.3475660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h 2025-08-14T21:55:04.3479768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h 2025-08-14T21:55:04.3483784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h 2025-08-14T21:55:04.3487591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h 2025-08-14T21:55:04.3491441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h 2025-08-14T21:55:04.3495587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3499441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h 2025-08-14T21:55:04.3503310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h 2025-08-14T21:55:04.3507182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h 2025-08-14T21:55:04.3511189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h 2025-08-14T21:55:04.3515100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h 2025-08-14T21:55:04.3519095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h 2025-08-14T21:55:04.3522972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h 2025-08-14T21:55:04.3526911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h 2025-08-14T21:55:04.3530877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h 2025-08-14T21:55:04.3534736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h 2025-08-14T21:55:04.3538716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3543579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h 2025-08-14T21:55:04.3547468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h 2025-08-14T21:55:04.3551423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h 2025-08-14T21:55:04.3555246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h 2025-08-14T21:55:04.3559751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h 2025-08-14T21:55:04.3563965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3568082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h 2025-08-14T21:55:04.3572221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h 2025-08-14T21:55:04.3576322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h 2025-08-14T21:55:04.3580161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h 2025-08-14T21:55:04.3584113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c.h 2025-08-14T21:55:04.3587994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h 2025-08-14T21:55:04.3591708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h 2025-08-14T21:55:04.3595579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_native.h 2025-08-14T21:55:04.3599375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_ops.h 2025-08-14T21:55:04.3603046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r.h 2025-08-14T21:55:04.3606634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h 2025-08-14T21:55:04.3610716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h 2025-08-14T21:55:04.3614509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_native.h 2025-08-14T21:55:04.3618416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_ops.h 2025-08-14T21:55:04.3622358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c.h 2025-08-14T21:55:04.3625770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h 2025-08-14T21:55:04.3629486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h 2025-08-14T21:55:04.3633541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_native.h 2025-08-14T21:55:04.3637359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_ops.h 2025-08-14T21:55:04.3641211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h 2025-08-14T21:55:04.3645255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h 2025-08-14T21:55:04.3649041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h 2025-08-14T21:55:04.3653219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h 2025-08-14T21:55:04.3658018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h 2025-08-14T21:55:04.3662866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward.h 2025-08-14T21:55:04.3667082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h 2025-08-14T21:55:04.3671407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_native.h 2025-08-14T21:55:04.3675597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_ops.h 2025-08-14T21:55:04.3679825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward.h 2025-08-14T21:55:04.3683628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h 2025-08-14T21:55:04.3687503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_native.h 2025-08-14T21:55:04.3691390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_ops.h 2025-08-14T21:55:04.3695254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar.h 2025-08-14T21:55:04.3699138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3702725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_cpu_dispatch.h 2025-08-14T21:55:04.3706484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_native.h 2025-08-14T21:55:04.3710055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_ops.h 2025-08-14T21:55:04.3713737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs.h 2025-08-14T21:55:04.3717713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3721508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h 2025-08-14T21:55:04.3725875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_native.h 2025-08-14T21:55:04.3730497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_ops.h 2025-08-14T21:55:04.3733988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos.h 2025-08-14T21:55:04.3738137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3741764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h 2025-08-14T21:55:04.3745428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_native.h 2025-08-14T21:55:04.3749718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_ops.h 2025-08-14T21:55:04.3753390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add.h 2025-08-14T21:55:04.3757107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv.h 2025-08-14T21:55:04.3761036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3765029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h 2025-08-14T21:55:04.3768742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_native.h 2025-08-14T21:55:04.3772427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_ops.h 2025-08-14T21:55:04.3776234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul.h 2025-08-14T21:55:04.3801856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3805740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h 2025-08-14T21:55:04.3809553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_native.h 2025-08-14T21:55:04.3813210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_ops.h 2025-08-14T21:55:04.3817026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3820835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h 2025-08-14T21:55:04.3824547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_native.h 2025-08-14T21:55:04.3828223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_ops.h 2025-08-14T21:55:04.3831945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin.h 2025-08-14T21:55:04.3835744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3839564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h 2025-08-14T21:55:04.3843248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_native.h 2025-08-14T21:55:04.3847301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_ops.h 2025-08-14T21:55:04.3851033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan.h 2025-08-14T21:55:04.3854856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3859203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h 2025-08-14T21:55:04.3862947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_native.h 2025-08-14T21:55:04.3866727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_ops.h 2025-08-14T21:55:04.3870336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil.h 2025-08-14T21:55:04.3874165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3878150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h 2025-08-14T21:55:04.3881967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_native.h 2025-08-14T21:55:04.3885879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_ops.h 2025-08-14T21:55:04.3889572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max.h 2025-08-14T21:55:04.3893464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3897285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h 2025-08-14T21:55:04.3901157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_native.h 2025-08-14T21:55:04.3904931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_ops.h 2025-08-14T21:55:04.3909029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min.h 2025-08-14T21:55:04.3913074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3917634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h 2025-08-14T21:55:04.3921526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_native.h 2025-08-14T21:55:04.3925445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_ops.h 2025-08-14T21:55:04.3929115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy.h 2025-08-14T21:55:04.3933021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3936654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h 2025-08-14T21:55:04.3940373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_native.h 2025-08-14T21:55:04.3944129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_ops.h 2025-08-14T21:55:04.3947784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos.h 2025-08-14T21:55:04.3951436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh.h 2025-08-14T21:55:04.3955619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3960028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h 2025-08-14T21:55:04.3963848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_native.h 2025-08-14T21:55:04.3967667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_ops.h 2025-08-14T21:55:04.3971702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3975493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h 2025-08-14T21:55:04.3979811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_native.h 2025-08-14T21:55:04.3983763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_ops.h 2025-08-14T21:55:04.3987550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div.h 2025-08-14T21:55:04.3991325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.3995133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h 2025-08-14T21:55:04.3999033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_native.h 2025-08-14T21:55:04.4002925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_ops.h 2025-08-14T21:55:04.4006707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf.h 2025-08-14T21:55:04.4010809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc.h 2025-08-14T21:55:04.4014618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4018481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h 2025-08-14T21:55:04.4022321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_native.h 2025-08-14T21:55:04.4026499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_ops.h 2025-08-14T21:55:04.4030451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4034944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h 2025-08-14T21:55:04.4038834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_native.h 2025-08-14T21:55:04.4042708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_ops.h 2025-08-14T21:55:04.4046502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp.h 2025-08-14T21:55:04.4050251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1.h 2025-08-14T21:55:04.4054182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4057989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h 2025-08-14T21:55:04.4062022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_native.h 2025-08-14T21:55:04.4066258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_ops.h 2025-08-14T21:55:04.4070438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4074584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h 2025-08-14T21:55:04.4078448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_native.h 2025-08-14T21:55:04.4082213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_ops.h 2025-08-14T21:55:04.4086668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor.h 2025-08-14T21:55:04.4090596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4094606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h 2025-08-14T21:55:04.4098612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_native.h 2025-08-14T21:55:04.4102393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_ops.h 2025-08-14T21:55:04.4106131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac.h 2025-08-14T21:55:04.4110042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4114075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h 2025-08-14T21:55:04.4117910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_native.h 2025-08-14T21:55:04.4121664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_ops.h 2025-08-14T21:55:04.4125406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp.h 2025-08-14T21:55:04.4129340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4133181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h 2025-08-14T21:55:04.4136959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_native.h 2025-08-14T21:55:04.4140821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_ops.h 2025-08-14T21:55:04.4144871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma.h 2025-08-14T21:55:04.4148769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4153735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h 2025-08-14T21:55:04.4158131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_native.h 2025-08-14T21:55:04.4162770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_ops.h 2025-08-14T21:55:04.4167052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log.h 2025-08-14T21:55:04.4171123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10.h 2025-08-14T21:55:04.4175661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4179560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h 2025-08-14T21:55:04.4183487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_native.h 2025-08-14T21:55:04.4187306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_ops.h 2025-08-14T21:55:04.4191213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p.h 2025-08-14T21:55:04.4195310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4199298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h 2025-08-14T21:55:04.4203414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_native.h 2025-08-14T21:55:04.4207635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_ops.h 2025-08-14T21:55:04.4211545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2.h 2025-08-14T21:55:04.4215557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4219410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h 2025-08-14T21:55:04.4223269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_native.h 2025-08-14T21:55:04.4227070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_ops.h 2025-08-14T21:55:04.4231227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4235283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h 2025-08-14T21:55:04.4239047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_native.h 2025-08-14T21:55:04.4243074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_ops.h 2025-08-14T21:55:04.4246908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max.h 2025-08-14T21:55:04.4250536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum.h 2025-08-14T21:55:04.4254476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4258632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h 2025-08-14T21:55:04.4262448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_native.h 2025-08-14T21:55:04.4266191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_ops.h 2025-08-14T21:55:04.4269926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4274139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h 2025-08-14T21:55:04.4278561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_native.h 2025-08-14T21:55:04.4282497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_ops.h 2025-08-14T21:55:04.4286032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum.h 2025-08-14T21:55:04.4289960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4293914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h 2025-08-14T21:55:04.4297590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_native.h 2025-08-14T21:55:04.4301776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_ops.h 2025-08-14T21:55:04.4305596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul.h 2025-08-14T21:55:04.4309596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4313338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h 2025-08-14T21:55:04.4317128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_native.h 2025-08-14T21:55:04.4321186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_ops.h 2025-08-14T21:55:04.4324864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg.h 2025-08-14T21:55:04.4328707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4332383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h 2025-08-14T21:55:04.4336334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_native.h 2025-08-14T21:55:04.4340002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_ops.h 2025-08-14T21:55:04.4343617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm.h 2025-08-14T21:55:04.4347406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4351049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h 2025-08-14T21:55:04.4354764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_native.h 2025-08-14T21:55:04.4358518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_ops.h 2025-08-14T21:55:04.4362344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow.h 2025-08-14T21:55:04.4366161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4370000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h 2025-08-14T21:55:04.4373711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_native.h 2025-08-14T21:55:04.4377429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_ops.h 2025-08-14T21:55:04.4381604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal.h 2025-08-14T21:55:04.4385610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4390174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h 2025-08-14T21:55:04.4409823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_native.h 2025-08-14T21:55:04.4413647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_ops.h 2025-08-14T21:55:04.4417625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round.h 2025-08-14T21:55:04.4421866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4425836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h 2025-08-14T21:55:04.4429725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_native.h 2025-08-14T21:55:04.4433645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_ops.h 2025-08-14T21:55:04.4437547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt.h 2025-08-14T21:55:04.4441468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4445259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h 2025-08-14T21:55:04.4449444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_native.h 2025-08-14T21:55:04.4453215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_ops.h 2025-08-14T21:55:04.4457828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid.h 2025-08-14T21:55:04.4462117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4466146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h 2025-08-14T21:55:04.4470107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_native.h 2025-08-14T21:55:04.4473918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_ops.h 2025-08-14T21:55:04.4477686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign.h 2025-08-14T21:55:04.4481713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4485801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h 2025-08-14T21:55:04.4489549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_native.h 2025-08-14T21:55:04.4493394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_ops.h 2025-08-14T21:55:04.4497169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin.h 2025-08-14T21:55:04.4501366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh.h 2025-08-14T21:55:04.4505293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4509088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h 2025-08-14T21:55:04.4513470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_native.h 2025-08-14T21:55:04.4517131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_ops.h 2025-08-14T21:55:04.4521088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4525478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h 2025-08-14T21:55:04.4529341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_native.h 2025-08-14T21:55:04.4533112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_ops.h 2025-08-14T21:55:04.4536893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt.h 2025-08-14T21:55:04.4540930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4544773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h 2025-08-14T21:55:04.4548587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_native.h 2025-08-14T21:55:04.4552239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_ops.h 2025-08-14T21:55:04.4556529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub.h 2025-08-14T21:55:04.4560680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4564315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h 2025-08-14T21:55:04.4568406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_native.h 2025-08-14T21:55:04.4572241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_ops.h 2025-08-14T21:55:04.4575944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan.h 2025-08-14T21:55:04.4579797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh.h 2025-08-14T21:55:04.4583853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4588255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h 2025-08-14T21:55:04.4592630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_native.h 2025-08-14T21:55:04.4597049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_ops.h 2025-08-14T21:55:04.4601217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4605539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h 2025-08-14T21:55:04.4609270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_native.h 2025-08-14T21:55:04.4613059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_ops.h 2025-08-14T21:55:04.4616856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc.h 2025-08-14T21:55:04.4620840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4625004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h 2025-08-14T21:55:04.4628935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_native.h 2025-08-14T21:55:04.4632662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_ops.h 2025-08-14T21:55:04.4636681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero.h 2025-08-14T21:55:04.4640695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4644940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h 2025-08-14T21:55:04.4648879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_native.h 2025-08-14T21:55:04.4653412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_ops.h 2025-08-14T21:55:04.4657172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async.h 2025-08-14T21:55:04.4661233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h 2025-08-14T21:55:04.4665333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_native.h 2025-08-14T21:55:04.4669684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_ops.h 2025-08-14T21:55:04.4673817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar.h 2025-08-14T21:55:04.4678578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4682547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_native.h 2025-08-14T21:55:04.4686507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_ops.h 2025-08-14T21:55:04.4690264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range.h 2025-08-14T21:55:04.4694740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4698683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h 2025-08-14T21:55:04.4703334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4707355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h 2025-08-14T21:55:04.4711084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h 2025-08-14T21:55:04.4714939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_native.h 2025-08-14T21:55:04.4719020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h 2025-08-14T21:55:04.4722966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad.h 2025-08-14T21:55:04.4727068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4730858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h 2025-08-14T21:55:04.4734698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h 2025-08-14T21:55:04.4738543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_native.h 2025-08-14T21:55:04.4742489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_ops.h 2025-08-14T21:55:04.4746379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam.h 2025-08-14T21:55:04.4750050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw.h 2025-08-14T21:55:04.4753876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4758011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h 2025-08-14T21:55:04.4761937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h 2025-08-14T21:55:04.4766277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_native.h 2025-08-14T21:55:04.4770071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_ops.h 2025-08-14T21:55:04.4773952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4777907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h 2025-08-14T21:55:04.4781721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h 2025-08-14T21:55:04.4785461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_native.h 2025-08-14T21:55:04.4789279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_ops.h 2025-08-14T21:55:04.4793059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout.h 2025-08-14T21:55:04.4797141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4801501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h 2025-08-14T21:55:04.4805198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_native.h 2025-08-14T21:55:04.4809171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_ops.h 2025-08-14T21:55:04.4812973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h 2025-08-14T21:55:04.4816884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4820991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h 2025-08-14T21:55:04.4842476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h 2025-08-14T21:55:04.4846233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h 2025-08-14T21:55:04.4850028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h 2025-08-14T21:55:04.4853715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm.h 2025-08-14T21:55:04.4857506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward.h 2025-08-14T21:55:04.4861597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h 2025-08-14T21:55:04.4865840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_native.h 2025-08-14T21:55:04.4869718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h 2025-08-14T21:55:04.4873631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.4877716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h 2025-08-14T21:55:04.4881484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_native.h 2025-08-14T21:55:04.4885192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_ops.h 2025-08-14T21:55:04.4889270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice.h 2025-08-14T21:55:04.4893037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h 2025-08-14T21:55:04.4896806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h 2025-08-14T21:55:04.4901064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h 2025-08-14T21:55:04.4904799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_native.h 2025-08-14T21:55:04.4908633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_ops.h 2025-08-14T21:55:04.4912350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd.h 2025-08-14T21:55:04.4916838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4920796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h 2025-08-14T21:55:04.4924722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h 2025-08-14T21:55:04.4928436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_native.h 2025-08-14T21:55:04.4932108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_ops.h 2025-08-14T21:55:04.4935686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal.h 2025-08-14T21:55:04.4939686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4943399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy.h 2025-08-14T21:55:04.4947253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.4950981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.4954697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_native.h 2025-08-14T21:55:04.4958554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_ops.h 2025-08-14T21:55:04.4962291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_native.h 2025-08-14T21:55:04.4966262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_ops.h 2025-08-14T21:55:04.4970042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward.h 2025-08-14T21:55:04.4973831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.4977383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_native.h 2025-08-14T21:55:04.4981006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_ops.h 2025-08-14T21:55:04.4984861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h 2025-08-14T21:55:04.4988545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h 2025-08-14T21:55:04.4992621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.4996484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h 2025-08-14T21:55:04.5000270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h 2025-08-14T21:55:04.5004161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5008505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h 2025-08-14T21:55:04.5012754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h 2025-08-14T21:55:04.5017034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm.h 2025-08-14T21:55:04.5020892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h 2025-08-14T21:55:04.5024490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_native.h 2025-08-14T21:55:04.5028450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_ops.h 2025-08-14T21:55:04.5032336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h 2025-08-14T21:55:04.5036377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.5040784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h 2025-08-14T21:55:04.5044855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h 2025-08-14T21:55:04.5048700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel.h 2025-08-14T21:55:04.5052651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5056571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_native.h 2025-08-14T21:55:04.5060455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_ops.h 2025-08-14T21:55:04.5064168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges.h 2025-08-14T21:55:04.5068142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5071814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h 2025-08-14T21:55:04.5075550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_native.h 2025-08-14T21:55:04.5079969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h 2025-08-14T21:55:04.5083847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts.h 2025-08-14T21:55:04.5087880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5091694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h 2025-08-14T21:55:04.5095439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h 2025-08-14T21:55:04.5099221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h 2025-08-14T21:55:04.5104053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h 2025-08-14T21:55:04.5108469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5112365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h 2025-08-14T21:55:04.5116264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h 2025-08-14T21:55:04.5120148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h 2025-08-14T21:55:04.5123937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl.h 2025-08-14T21:55:04.5127984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5131757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h 2025-08-14T21:55:04.5135963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h 2025-08-14T21:55:04.5139779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h 2025-08-14T21:55:04.5143601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_native.h 2025-08-14T21:55:04.5147676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_ops.h 2025-08-14T21:55:04.5151606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices.h 2025-08-14T21:55:04.5155172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy.h 2025-08-14T21:55:04.5159454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5163665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5167475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_native.h 2025-08-14T21:55:04.5171473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_ops.h 2025-08-14T21:55:04.5175505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_native.h 2025-08-14T21:55:04.5179631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_ops.h 2025-08-14T21:55:04.5183450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm.h 2025-08-14T21:55:04.5186906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cpu_dispatch.h 2025-08-14T21:55:04.5190624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cuda_dispatch.h 2025-08-14T21:55:04.5194282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_native.h 2025-08-14T21:55:04.5198075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_ops.h 2025-08-14T21:55:04.5201889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true.h 2025-08-14T21:55:04.5206132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5210056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_native.h 2025-08-14T21:55:04.5213633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_ops.h 2025-08-14T21:55:04.5217365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true.h 2025-08-14T21:55:04.5221615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5225096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_native.h 2025-08-14T21:55:04.5228699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_ops.h 2025-08-14T21:55:04.5232440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor.h 2025-08-14T21:55:04.5246655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.5247047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_native.h 2025-08-14T21:55:04.5247316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_ops.h 2025-08-14T21:55:04.5247631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h 2025-08-14T21:55:04.5252098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h 2025-08-14T21:55:04.5255776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h 2025-08-14T21:55:04.5259563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h 2025-08-14T21:55:04.5263380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h 2025-08-14T21:55:04.5267688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone.h 2025-08-14T21:55:04.5271447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5275021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_native.h 2025-08-14T21:55:04.5278894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_ops.h 2025-08-14T21:55:04.5282909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors.h 2025-08-14T21:55:04.5286893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5290471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_native.h 2025-08-14T21:55:04.5294233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_ops.h 2025-08-14T21:55:04.5298000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det.h 2025-08-14T21:55:04.5302485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5306120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h 2025-08-14T21:55:04.5310132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h 2025-08-14T21:55:04.5314179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta.h 2025-08-14T21:55:04.5317838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta_dispatch.h 2025-08-14T21:55:04.5321878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_native.h 2025-08-14T21:55:04.5325753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_ops.h 2025-08-14T21:55:04.5329567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh.h 2025-08-14T21:55:04.5333700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5337799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h 2025-08-14T21:55:04.5341562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h 2025-08-14T21:55:04.5345241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta.h 2025-08-14T21:55:04.5349051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h 2025-08-14T21:55:04.5352433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_native.h 2025-08-14T21:55:04.5356165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_ops.h 2025-08-14T21:55:04.5359859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals.h 2025-08-14T21:55:04.5363547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h 2025-08-14T21:55:04.5367916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h 2025-08-14T21:55:04.5371632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_native.h 2025-08-14T21:55:04.5375372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_ops.h 2025-08-14T21:55:04.5379078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet.h 2025-08-14T21:55:04.5382979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5386756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h 2025-08-14T21:55:04.5390783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h 2025-08-14T21:55:04.5394404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta.h 2025-08-14T21:55:04.5398256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h 2025-08-14T21:55:04.5402351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_native.h 2025-08-14T21:55:04.5405990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_ops.h 2025-08-14T21:55:04.5409826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex.h 2025-08-14T21:55:04.5413718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5417692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h 2025-08-14T21:55:04.5421493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h 2025-08-14T21:55:04.5425272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta.h 2025-08-14T21:55:04.5429470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h 2025-08-14T21:55:04.5433306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_native.h 2025-08-14T21:55:04.5437225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_ops.h 2025-08-14T21:55:04.5441222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd.h 2025-08-14T21:55:04.5445288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5449071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h 2025-08-14T21:55:04.5452869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h 2025-08-14T21:55:04.5456654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta.h 2025-08-14T21:55:04.5460361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h 2025-08-14T21:55:04.5464218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_native.h 2025-08-14T21:55:04.5468205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_ops.h 2025-08-14T21:55:04.5471864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense.h 2025-08-14T21:55:04.5475766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h 2025-08-14T21:55:04.5479530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h 2025-08-14T21:55:04.5483980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_native.h 2025-08-14T21:55:04.5487666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_ops.h 2025-08-14T21:55:04.5491423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp.h 2025-08-14T21:55:04.5495427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h 2025-08-14T21:55:04.5499242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h 2025-08-14T21:55:04.5503005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_native.h 2025-08-14T21:55:04.5507122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_ops.h 2025-08-14T21:55:04.5510987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax.h 2025-08-14T21:55:04.5514750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data.h 2025-08-14T21:55:04.5518745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5522596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h 2025-08-14T21:55:04.5526674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h 2025-08-14T21:55:04.5530339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta.h 2025-08-14T21:55:04.5534225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h 2025-08-14T21:55:04.5538022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_native.h 2025-08-14T21:55:04.5542072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_ops.h 2025-08-14T21:55:04.5546071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5549874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h 2025-08-14T21:55:04.5553794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h 2025-08-14T21:55:04.5557622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta.h 2025-08-14T21:55:04.5561390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta_dispatch.h 2025-08-14T21:55:04.5565085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_native.h 2025-08-14T21:55:04.5569110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_ops.h 2025-08-14T21:55:04.5572932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps.h 2025-08-14T21:55:04.5576796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5580420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_native.h 2025-08-14T21:55:04.5584654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_ops.h 2025-08-14T21:55:04.5588305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info.h 2025-08-14T21:55:04.5592536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.5596373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_native.h 2025-08-14T21:55:04.5600518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_ops.h 2025-08-14T21:55:04.5604313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token.h 2025-08-14T21:55:04.5608550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h 2025-08-14T21:55:04.5612459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_native.h 2025-08-14T21:55:04.5616088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_ops.h 2025-08-14T21:55:04.5619755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual.h 2025-08-14T21:55:04.5623755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5627402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy.h 2025-08-14T21:55:04.5631393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5635223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5639098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_native.h 2025-08-14T21:55:04.5642993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_ops.h 2025-08-14T21:55:04.5646894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_native.h 2025-08-14T21:55:04.5650586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_ops.h 2025-08-14T21:55:04.5654318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h 2025-08-14T21:55:04.5658190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5661979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h 2025-08-14T21:55:04.5665992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h 2025-08-14T21:55:04.5670344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h 2025-08-14T21:55:04.5674330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h 2025-08-14T21:55:04.5678226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h 2025-08-14T21:55:04.5682422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5686365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h 2025-08-14T21:55:04.5690416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h 2025-08-14T21:55:04.5694534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h 2025-08-14T21:55:04.5698838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h 2025-08-14T21:55:04.5702540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale.h 2025-08-14T21:55:04.5706364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5710075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h 2025-08-14T21:55:04.5714182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_native.h 2025-08-14T21:55:04.5718843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_ops.h 2025-08-14T21:55:04.5722198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax.h 2025-08-14T21:55:04.5725959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward.h 2025-08-14T21:55:04.5730016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5733678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h 2025-08-14T21:55:04.5737455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h 2025-08-14T21:55:04.5741153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_native.h 2025-08-14T21:55:04.5744904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_ops.h 2025-08-14T21:55:04.5748800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5752434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h 2025-08-14T21:55:04.5756763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h 2025-08-14T21:55:04.5760892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_native.h 2025-08-14T21:55:04.5764546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_ops.h 2025-08-14T21:55:04.5768212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear.h 2025-08-14T21:55:04.5771814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h 2025-08-14T21:55:04.5775393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_native.h 2025-08-14T21:55:04.5779059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h 2025-08-14T21:55:04.5782685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape.h 2025-08-14T21:55:04.5786550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5790170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_native.h 2025-08-14T21:55:04.5794475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_ops.h 2025-08-14T21:55:04.5798264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose.h 2025-08-14T21:55:04.5802117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5805837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h 2025-08-14T21:55:04.5809696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_native.h 2025-08-14T21:55:04.5813697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_ops.h 2025-08-14T21:55:04.5818088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution.h 2025-08-14T21:55:04.5821991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5825984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_native.h 2025-08-14T21:55:04.5829721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_ops.h 2025-08-14T21:55:04.5834405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose.h 2025-08-14T21:55:04.5859876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5863679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_native.h 2025-08-14T21:55:04.5867460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_ops.h 2025-08-14T21:55:04.5871291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit.h 2025-08-14T21:55:04.5876285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5879263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h 2025-08-14T21:55:04.5883159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h 2025-08-14T21:55:04.5887065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_native.h 2025-08-14T21:55:04.5890920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h 2025-08-14T21:55:04.5895061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5898807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h 2025-08-14T21:55:04.5902934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h 2025-08-14T21:55:04.5906738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_ops.h 2025-08-14T21:55:04.5910916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention.h 2025-08-14T21:55:04.5925239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5931369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h 2025-08-14T21:55:04.5937769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h 2025-08-14T21:55:04.5944029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_native.h 2025-08-14T21:55:04.5950218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_ops.h 2025-08-14T21:55:04.5956263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view.h 2025-08-14T21:55:04.5962293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5968539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy.h 2025-08-14T21:55:04.5974718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.5981210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.5987465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_native.h 2025-08-14T21:55:04.5993338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_ops.h 2025-08-14T21:55:04.5999330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_native.h 2025-08-14T21:55:04.6005194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_ops.h 2025-08-14T21:55:04.6011203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h 2025-08-14T21:55:04.6018159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h 2025-08-14T21:55:04.6023994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h 2025-08-14T21:55:04.6030100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h 2025-08-14T21:55:04.6036406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h 2025-08-14T21:55:04.6042515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded.h 2025-08-14T21:55:04.6048858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h 2025-08-14T21:55:04.6055083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6061585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h 2025-08-14T21:55:04.6067797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h 2025-08-14T21:55:04.6073998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6080395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h 2025-08-14T21:55:04.6086522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h 2025-08-14T21:55:04.6092852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_native.h 2025-08-14T21:55:04.6099062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_ops.h 2025-08-14T21:55:04.6105343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor.h 2025-08-14T21:55:04.6111555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_native.h 2025-08-14T21:55:04.6118063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h 2025-08-14T21:55:04.6124100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy.h 2025-08-14T21:55:04.6130335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h 2025-08-14T21:55:04.6136373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h 2025-08-14T21:55:04.6142319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths.h 2025-08-14T21:55:04.6148454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_native.h 2025-08-14T21:55:04.6154632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_ops.h 2025-08-14T21:55:04.6161044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen.h 2025-08-14T21:55:04.6167197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_native.h 2025-08-14T21:55:04.6172962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h 2025-08-14T21:55:04.6178995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen.h 2025-08-14T21:55:04.6183066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_native.h 2025-08-14T21:55:04.6186902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h 2025-08-14T21:55:04.6190836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets.h 2025-08-14T21:55:04.6195534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_native.h 2025-08-14T21:55:04.6199327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_ops.h 2025-08-14T21:55:04.6203083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx.h 2025-08-14T21:55:04.6207370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_native.h 2025-08-14T21:55:04.6211769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h 2025-08-14T21:55:04.6215605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values.h 2025-08-14T21:55:04.6219358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy.h 2025-08-14T21:55:04.6223567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.6227591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6231215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_native.h 2025-08-14T21:55:04.6234986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_ops.h 2025-08-14T21:55:04.6238994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_native.h 2025-08-14T21:55:04.6242817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_ops.h 2025-08-14T21:55:04.6246546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward.h 2025-08-14T21:55:04.6250265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_native.h 2025-08-14T21:55:04.6254040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_ops.h 2025-08-14T21:55:04.6257810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward.h 2025-08-14T21:55:04.6261646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_native.h 2025-08-14T21:55:04.6265643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_ops.h 2025-08-14T21:55:04.6269707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask.h 2025-08-14T21:55:04.6274047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6278482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h 2025-08-14T21:55:04.6282260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h 2025-08-14T21:55:04.6286633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h 2025-08-14T21:55:04.6291100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h 2025-08-14T21:55:04.6295869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h 2025-08-14T21:55:04.6300334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h 2025-08-14T21:55:04.6305582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h 2025-08-14T21:55:04.6309567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_native.h 2025-08-14T21:55:04.6313341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h 2025-08-14T21:55:04.6317979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h 2025-08-14T21:55:04.6322166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6326157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h 2025-08-14T21:55:04.6330122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h 2025-08-14T21:55:04.6333978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size.h 2025-08-14T21:55:04.6338069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6342257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_native.h 2025-08-14T21:55:04.6346090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_ops.h 2025-08-14T21:55:04.6349870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h 2025-08-14T21:55:04.6353990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h 2025-08-14T21:55:04.6358147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h 2025-08-14T21:55:04.6361898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets.h 2025-08-14T21:55:04.6366263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6370152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h 2025-08-14T21:55:04.6374088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h 2025-08-14T21:55:04.6377927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides.h 2025-08-14T21:55:04.6382407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6386468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_native.h 2025-08-14T21:55:04.6390341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_ops.h 2025-08-14T21:55:04.6394190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer.h 2025-08-14T21:55:04.6398626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy.h 2025-08-14T21:55:04.6402641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.6406680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6410553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h 2025-08-14T21:55:04.6414470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h 2025-08-14T21:55:04.6418262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h 2025-08-14T21:55:04.6422075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h 2025-08-14T21:55:04.6425976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_native.h 2025-08-14T21:55:04.6430014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_ops.h 2025-08-14T21:55:04.6434266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged.h 2025-08-14T21:55:04.6438270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy.h 2025-08-14T21:55:04.6442642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.6446577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6450414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h 2025-08-14T21:55:04.6454290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h 2025-08-14T21:55:04.6458126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_native.h 2025-08-14T21:55:04.6461985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_ops.h 2025-08-14T21:55:04.6465812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h 2025-08-14T21:55:04.6469664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6473465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h 2025-08-14T21:55:04.6477393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h 2025-08-14T21:55:04.6481042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available.h 2025-08-14T21:55:04.6485332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.6488884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_native.h 2025-08-14T21:55:04.6492679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_ops.h 2025-08-14T21:55:04.6496399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution.h 2025-08-14T21:55:04.6500335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6504008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h 2025-08-14T21:55:04.6507870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h 2025-08-14T21:55:04.6511649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz.h 2025-08-14T21:55:04.6515021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_native.h 2025-08-14T21:55:04.6519011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_ops.h 2025-08-14T21:55:04.6522531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence.h 2025-08-14T21:55:04.6526158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward.h 2025-08-14T21:55:04.6530111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.6533880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h 2025-08-14T21:55:04.6537619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h 2025-08-14T21:55:04.6541804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6545976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_native.h 2025-08-14T21:55:04.6550374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_ops.h 2025-08-14T21:55:04.6554340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h 2025-08-14T21:55:04.6558343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h 2025-08-14T21:55:04.6562215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h 2025-08-14T21:55:04.6566106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h 2025-08-14T21:55:04.6569972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h 2025-08-14T21:55:04.6573783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular.h 2025-08-14T21:55:04.6578035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.6581867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_native.h 2025-08-14T21:55:04.6757797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_ops.h 2025-08-14T21:55:04.6761816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum.h 2025-08-14T21:55:04.6765841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.6769524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_native.h 2025-08-14T21:55:04.6773200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_ops.h 2025-08-14T21:55:04.6776792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence.h 2025-08-14T21:55:04.6780622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.6784284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_native.h 2025-08-14T21:55:04.6788359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_ops.h 2025-08-14T21:55:04.6791980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward.h 2025-08-14T21:55:04.6795728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6799421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h 2025-08-14T21:55:04.6803108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h 2025-08-14T21:55:04.6806765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_native.h 2025-08-14T21:55:04.6810501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_ops.h 2025-08-14T21:55:04.6814394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward.h 2025-08-14T21:55:04.6818242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6822105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h 2025-08-14T21:55:04.6826023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h 2025-08-14T21:55:04.6829697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_native.h 2025-08-14T21:55:04.6833318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_ops.h 2025-08-14T21:55:04.6837621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory.h 2025-08-14T21:55:04.6841666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6845324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_native.h 2025-08-14T21:55:04.6849485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_ops.h 2025-08-14T21:55:04.6853176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel.h 2025-08-14T21:55:04.6856832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward.h 2025-08-14T21:55:04.6860631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h 2025-08-14T21:55:04.6864412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h 2025-08-14T21:55:04.6868160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_native.h 2025-08-14T21:55:04.6871808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_ops.h 2025-08-14T21:55:04.6875447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h 2025-08-14T21:55:04.6879658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h 2025-08-14T21:55:04.6883378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_native.h 2025-08-14T21:55:04.6886985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_ops.h 2025-08-14T21:55:04.6890607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print.h 2025-08-14T21:55:04.6894569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6898099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_native.h 2025-08-14T21:55:04.6901994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_ops.h 2025-08-14T21:55:04.6905495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data.h 2025-08-14T21:55:04.6909239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.6912792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_native.h 2025-08-14T21:55:04.6916445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_ops.h 2025-08-14T21:55:04.6920402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim.h 2025-08-14T21:55:04.6924287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.6928021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_native.h 2025-08-14T21:55:04.6931856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_ops.h 2025-08-14T21:55:04.6935866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias.h 2025-08-14T21:55:04.6939446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy.h 2025-08-14T21:55:04.6943329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.6948180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6952312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_native.h 2025-08-14T21:55:04.6956293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_ops.h 2025-08-14T21:55:04.6960168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h 2025-08-14T21:55:04.6964341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h 2025-08-14T21:55:04.6968334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h 2025-08-14T21:55:04.6972112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_native.h 2025-08-14T21:55:04.6975875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_ops.h 2025-08-14T21:55:04.6979637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy.h 2025-08-14T21:55:04.6983549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.6987288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_native.h 2025-08-14T21:55:04.6991048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_ops.h 2025-08-14T21:55:04.6994966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor.h 2025-08-14T21:55:04.6999209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.7002995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_native.h 2025-08-14T21:55:04.7006769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_ops.h 2025-08-14T21:55:04.7010661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output.h 2025-08-14T21:55:04.7014738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.7018346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_meta_dispatch.h 2025-08-14T21:55:04.7022376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_native.h 2025-08-14T21:55:04.7026265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_ops.h 2025-08-14T21:55:04.7030109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune.h 2025-08-14T21:55:04.7033935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.7037747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_native.h 2025-08-14T21:55:04.7041889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_ops.h 2025-08-14T21:55:04.7047106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax.h 2025-08-14T21:55:04.7055865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.7059550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_native.h 2025-08-14T21:55:04.7065097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_ops.h 2025-08-14T21:55:04.7070188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet.h 2025-08-14T21:55:04.7075304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.7080693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h 2025-08-14T21:55:04.7086818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h 2025-08-14T21:55:04.7091947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_native.h 2025-08-14T21:55:04.7096726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_ops.h 2025-08-14T21:55:04.7101101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16.h 2025-08-14T21:55:04.7106229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.7111377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h 2025-08-14T21:55:04.7116810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h 2025-08-14T21:55:04.7122004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math.h 2025-08-14T21:55:04.7127246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.7131281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h 2025-08-14T21:55:04.7136925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h 2025-08-14T21:55:04.7142031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h 2025-08-14T21:55:04.7147357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h 2025-08-14T21:55:04.7152556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h 2025-08-14T21:55:04.7157979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h 2025-08-14T21:55:04.7163782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h 2025-08-14T21:55:04.7181467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h 2025-08-14T21:55:04.7667522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h 2025-08-14T21:55:04.7688832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h 2025-08-14T21:55:04.7710869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h 2025-08-14T21:55:04.7733224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h 2025-08-14T21:55:04.7753341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h 2025-08-14T21:55:04.7769687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h 2025-08-14T21:55:04.7773517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h 2025-08-14T21:55:04.7777268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h 2025-08-14T21:55:04.7781388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h 2025-08-14T21:55:04.7785279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h 2025-08-14T21:55:04.7789459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h 2025-08-14T21:55:04.7793429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h 2025-08-14T21:55:04.7797448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h 2025-08-14T21:55:04.7801301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h 2025-08-14T21:55:04.7805123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h 2025-08-14T21:55:04.7809119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h 2025-08-14T21:55:04.7813036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h 2025-08-14T21:55:04.7817448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h 2025-08-14T21:55:04.7821540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h 2025-08-14T21:55:04.7825352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h 2025-08-14T21:55:04.7830131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h 2025-08-14T21:55:04.7834476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h 2025-08-14T21:55:04.7838591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h 2025-08-14T21:55:04.7842481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h 2025-08-14T21:55:04.7846573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h 2025-08-14T21:55:04.7850391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h 2025-08-14T21:55:04.7854217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h 2025-08-14T21:55:04.7858093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h 2025-08-14T21:55:04.7862072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h 2025-08-14T21:55:04.7866232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h 2025-08-14T21:55:04.7870233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h 2025-08-14T21:55:04.7874939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.7879291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h 2025-08-14T21:55:04.7882891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h 2025-08-14T21:55:04.7887104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.7890941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h 2025-08-14T21:55:04.7894938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h 2025-08-14T21:55:04.7898809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm.h 2025-08-14T21:55:04.7902915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h 2025-08-14T21:55:04.7907182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_native.h 2025-08-14T21:55:04.7911120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_ops.h 2025-08-14T21:55:04.7915120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm.h 2025-08-14T21:55:04.7919163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h 2025-08-14T21:55:04.7922908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h 2025-08-14T21:55:04.7926685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_native.h 2025-08-14T21:55:04.7930507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_ops.h 2025-08-14T21:55:04.7934293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward.h 2025-08-14T21:55:04.7938172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.7941923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h 2025-08-14T21:55:04.7945715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h 2025-08-14T21:55:04.7949464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_native.h 2025-08-14T21:55:04.7953440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_ops.h 2025-08-14T21:55:04.7957517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor.h 2025-08-14T21:55:04.7961301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.7964943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_native.h 2025-08-14T21:55:04.7968602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_ops.h 2025-08-14T21:55:04.7972419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward.h 2025-08-14T21:55:04.7976218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.7980073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h 2025-08-14T21:55:04.7984182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h 2025-08-14T21:55:04.7988335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_native.h 2025-08-14T21:55:04.7992852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_ops.h 2025-08-14T21:55:04.7996790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward.h 2025-08-14T21:55:04.8000548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h 2025-08-14T21:55:04.8005100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h 2025-08-14T21:55:04.8008895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_native.h 2025-08-14T21:55:04.8012667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_ops.h 2025-08-14T21:55:04.8016392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw.h 2025-08-14T21:55:04.8020348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8024021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_native.h 2025-08-14T21:55:04.8028173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_ops.h 2025-08-14T21:55:04.8032091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff.h 2025-08-14T21:55:04.8036080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8039856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_native.h 2025-08-14T21:55:04.8043579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_ops.h 2025-08-14T21:55:04.8047332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state.h 2025-08-14T21:55:04.8051442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8055375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h 2025-08-14T21:55:04.8059117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h 2025-08-14T21:55:04.8063178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble.h 2025-08-14T21:55:04.8067317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8071190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_native.h 2025-08-14T21:55:04.8075149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_ops.h 2025-08-14T21:55:04.8079323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax.h 2025-08-14T21:55:04.8082784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data.h 2025-08-14T21:55:04.8086939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.8090664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h 2025-08-14T21:55:04.8094556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h 2025-08-14T21:55:04.8099166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta.h 2025-08-14T21:55:04.8103094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h 2025-08-14T21:55:04.8117678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_native.h 2025-08-14T21:55:04.8124250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_ops.h 2025-08-14T21:55:04.8129581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.8134543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cpu_dispatch.h 2025-08-14T21:55:04.8140061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cuda_dispatch.h 2025-08-14T21:55:04.8145770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta.h 2025-08-14T21:55:04.8151460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta_dispatch.h 2025-08-14T21:55:04.8157444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_native.h 2025-08-14T21:55:04.8163151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_ops.h 2025-08-14T21:55:04.8168919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm.h 2025-08-14T21:55:04.8175020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8181672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_native.h 2025-08-14T21:55:04.8188277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_ops.h 2025-08-14T21:55:04.8194687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to.h 2025-08-14T21:55:04.8201012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy.h 2025-08-14T21:55:04.8206937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.8211991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8216242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h 2025-08-14T21:55:04.8220390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h 2025-08-14T21:55:04.8224390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_native.h 2025-08-14T21:55:04.8228165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_ops.h 2025-08-14T21:55:04.8235465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h 2025-08-14T21:55:04.8239695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8243874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h 2025-08-14T21:55:04.8247999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h 2025-08-14T21:55:04.8252105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h 2025-08-14T21:55:04.8256137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8260037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h 2025-08-14T21:55:04.8263949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h 2025-08-14T21:55:04.8267986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h 2025-08-14T21:55:04.8272352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8276853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h 2025-08-14T21:55:04.8280746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h 2025-08-14T21:55:04.8284599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h 2025-08-14T21:55:04.8288707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8292716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h 2025-08-14T21:55:04.8297258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h 2025-08-14T21:55:04.8301050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h 2025-08-14T21:55:04.8305043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8308894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h 2025-08-14T21:55:04.8312698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h 2025-08-14T21:55:04.8317083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h 2025-08-14T21:55:04.8321240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h 2025-08-14T21:55:04.8325361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8329228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h 2025-08-14T21:55:04.8333672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h 2025-08-14T21:55:04.8337927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h 2025-08-14T21:55:04.8342075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8345839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h 2025-08-14T21:55:04.8349735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h 2025-08-14T21:55:04.8353561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h 2025-08-14T21:55:04.8357847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h 2025-08-14T21:55:04.8361924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8366079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h 2025-08-14T21:55:04.8370155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h 2025-08-14T21:55:04.8373951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod.h 2025-08-14T21:55:04.8377834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8382131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_native.h 2025-08-14T21:55:04.8386106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_ops.h 2025-08-14T21:55:04.8390042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum.h 2025-08-14T21:55:04.8394021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8398418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_native.h 2025-08-14T21:55:04.8402216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_ops.h 2025-08-14T21:55:04.8406166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h 2025-08-14T21:55:04.8410363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8414244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h 2025-08-14T21:55:04.8418280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h 2025-08-14T21:55:04.8422033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax.h 2025-08-14T21:55:04.8426621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h 2025-08-14T21:55:04.8431294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8435564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h 2025-08-14T21:55:04.8439517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h 2025-08-14T21:55:04.8443420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8447291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8451275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_native.h 2025-08-14T21:55:04.8455134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_ops.h 2025-08-14T21:55:04.8458965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection.h 2025-08-14T21:55:04.8462934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8466718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_native.h 2025-08-14T21:55:04.8470589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_ops.h 2025-08-14T21:55:04.8474493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm.h 2025-08-14T21:55:04.8478668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8482433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_native.h 2025-08-14T21:55:04.8486195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_ops.h 2025-08-14T21:55:04.8489974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl.h 2025-08-14T21:55:04.8493888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h 2025-08-14T21:55:04.8497785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h 2025-08-14T21:55:04.8501834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h 2025-08-14T21:55:04.8505723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h 2025-08-14T21:55:04.8509518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h 2025-08-14T21:55:04.8513490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm.h 2025-08-14T21:55:04.8518251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h 2025-08-14T21:55:04.8522223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h 2025-08-14T21:55:04.8526683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h 2025-08-14T21:55:04.8530582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply.h 2025-08-14T21:55:04.8534931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h 2025-08-14T21:55:04.8538767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h 2025-08-14T21:55:04.8542660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h 2025-08-14T21:55:04.8547024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h 2025-08-14T21:55:04.8551383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h 2025-08-14T21:55:04.8555068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h 2025-08-14T21:55:04.8559106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h 2025-08-14T21:55:04.8563177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear.h 2025-08-14T21:55:04.8567088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h 2025-08-14T21:55:04.8571170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h 2025-08-14T21:55:04.8575361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h 2025-08-14T21:55:04.8579385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm.h 2025-08-14T21:55:04.8583596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h 2025-08-14T21:55:04.8587659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h 2025-08-14T21:55:04.8591621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h 2025-08-14T21:55:04.8596202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile.h 2025-08-14T21:55:04.8600378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h 2025-08-14T21:55:04.8604241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h 2025-08-14T21:55:04.8608173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h 2025-08-14T21:55:04.8612129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax.h 2025-08-14T21:55:04.8616269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data.h 2025-08-14T21:55:04.8621466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8625824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h 2025-08-14T21:55:04.8629784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h 2025-08-14T21:55:04.8633979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8638317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8642705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_native.h 2025-08-14T21:55:04.8646722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_ops.h 2025-08-14T21:55:04.8650895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul.h 2025-08-14T21:55:04.8655090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8658762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_native.h 2025-08-14T21:55:04.8662711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h 2025-08-14T21:55:04.8666651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum.h 2025-08-14T21:55:04.8670456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward.h 2025-08-14T21:55:04.8674892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8679233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_native.h 2025-08-14T21:55:04.8683652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_ops.h 2025-08-14T21:55:04.8688258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8692688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8697443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_native.h 2025-08-14T21:55:04.8701556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_ops.h 2025-08-14T21:55:04.8705290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags.h 2025-08-14T21:55:04.8709187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8712961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_cpu_dispatch.h 2025-08-14T21:55:04.8716910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_native.h 2025-08-14T21:55:04.8720782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_ops.h 2025-08-14T21:55:04.8725242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve.h 2025-08-14T21:55:04.8728717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_native.h 2025-08-14T21:55:04.8732520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_ops.h 2025-08-14T21:55:04.8736410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack.h 2025-08-14T21:55:04.8740110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8743723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_cpu_dispatch.h 2025-08-14T21:55:04.8747405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_native.h 2025-08-14T21:55:04.8751209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_ops.h 2025-08-14T21:55:04.8754976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma.h 2025-08-14T21:55:04.8758929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8763252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h 2025-08-14T21:55:04.8766973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h 2025-08-14T21:55:04.8770737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad.h 2025-08-14T21:55:04.8774874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8778777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h 2025-08-14T21:55:04.8782981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h 2025-08-14T21:55:04.8786738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_native.h 2025-08-14T21:55:04.8790564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_ops.h 2025-08-14T21:55:04.8794407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_native.h 2025-08-14T21:55:04.8798211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_ops.h 2025-08-14T21:55:04.8802023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults.h 2025-08-14T21:55:04.8806736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8811712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_native.h 2025-08-14T21:55:04.8815166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h 2025-08-14T21:55:04.8819091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h 2025-08-14T21:55:04.8841773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8846087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8850091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h 2025-08-14T21:55:04.8854015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h 2025-08-14T21:55:04.8857951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h 2025-08-14T21:55:04.8862125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8866093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h 2025-08-14T21:55:04.8870151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.8873970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8877863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h 2025-08-14T21:55:04.8881635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h 2025-08-14T21:55:04.8885586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h 2025-08-14T21:55:04.8889446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h 2025-08-14T21:55:04.8893512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor.h 2025-08-14T21:55:04.8898105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.8901864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_native.h 2025-08-14T21:55:04.8905788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_ops.h 2025-08-14T21:55:04.8909861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback.h 2025-08-14T21:55:04.8913743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8917509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h 2025-08-14T21:55:04.8921366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_native.h 2025-08-14T21:55:04.8925080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_ops.h 2025-08-14T21:55:04.8929273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist.h 2025-08-14T21:55:04.8933351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8938015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h 2025-08-14T21:55:04.8941944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_native.h 2025-08-14T21:55:04.8946021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h 2025-08-14T21:55:04.8950018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist.h 2025-08-14T21:55:04.8954057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8958266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h 2025-08-14T21:55:04.8962067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_native.h 2025-08-14T21:55:04.8965805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_ops.h 2025-08-14T21:55:04.8969890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist.h 2025-08-14T21:55:04.8973922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8977863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h 2025-08-14T21:55:04.8981742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_native.h 2025-08-14T21:55:04.8985710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_ops.h 2025-08-14T21:55:04.8989500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize.h 2025-08-14T21:55:04.8993527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.8997511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_native.h 2025-08-14T21:55:04.9001665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_ops.h 2025-08-14T21:55:04.9005462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul.h 2025-08-14T21:55:04.9009632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9013324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_native.h 2025-08-14T21:55:04.9017078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_ops.h 2025-08-14T21:55:04.9021262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default.h 2025-08-14T21:55:04.9025408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9029416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_native.h 2025-08-14T21:55:04.9033234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_ops.h 2025-08-14T21:55:04.9037215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd.h 2025-08-14T21:55:04.9041080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9044943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_native.h 2025-08-14T21:55:04.9048899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_ops.h 2025-08-14T21:55:04.9053289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h 2025-08-14T21:55:04.9057574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9061206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h 2025-08-14T21:55:04.9064868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h 2025-08-14T21:55:04.9070203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h 2025-08-14T21:55:04.9074221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9078374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h 2025-08-14T21:55:04.9082342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h 2025-08-14T21:55:04.9086275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell.h 2025-08-14T21:55:04.9090349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h 2025-08-14T21:55:04.9094593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9098414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h 2025-08-14T21:55:04.9103118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h 2025-08-14T21:55:04.9107009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h 2025-08-14T21:55:04.9111589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9115708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h 2025-08-14T21:55:04.9119828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h 2025-08-14T21:55:04.9123727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h 2025-08-14T21:55:04.9127658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell.h 2025-08-14T21:55:04.9131609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h 2025-08-14T21:55:04.9135704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9140120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h 2025-08-14T21:55:04.9144308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9148158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h 2025-08-14T21:55:04.9152019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h 2025-08-14T21:55:04.9156786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h 2025-08-14T21:55:04.9160741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h 2025-08-14T21:55:04.9164686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h 2025-08-14T21:55:04.9168683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9172692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h 2025-08-14T21:55:04.9176571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h 2025-08-14T21:55:04.9180588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h 2025-08-14T21:55:04.9184857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy.h 2025-08-14T21:55:04.9188749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9192728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_native.h 2025-08-14T21:55:04.9196923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_ops.h 2025-08-14T21:55:04.9200478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu.h 2025-08-14T21:55:04.9204106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9208495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_native.h 2025-08-14T21:55:04.9212682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_ops.h 2025-08-14T21:55:04.9216938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense.h 2025-08-14T21:55:04.9220892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9224847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_native.h 2025-08-14T21:55:04.9229680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_ops.h 2025-08-14T21:55:04.9233901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse.h 2025-08-14T21:55:04.9238641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc.h 2025-08-14T21:55:04.9243298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9247570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h 2025-08-14T21:55:04.9251932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h 2025-08-14T21:55:04.9256264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_native.h 2025-08-14T21:55:04.9260543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_ops.h 2025-08-14T21:55:04.9264657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr.h 2025-08-14T21:55:04.9268946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9272782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h 2025-08-14T21:55:04.9277001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h 2025-08-14T21:55:04.9280875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_native.h 2025-08-14T21:55:04.9284651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_ops.h 2025-08-14T21:55:04.9288690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9292654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h 2025-08-14T21:55:04.9296537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc.h 2025-08-14T21:55:04.9300625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9304373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h 2025-08-14T21:55:04.9308200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h 2025-08-14T21:55:04.9312053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_native.h 2025-08-14T21:55:04.9316104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_ops.h 2025-08-14T21:55:04.9320605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr.h 2025-08-14T21:55:04.9324521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9328389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h 2025-08-14T21:55:04.9332355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h 2025-08-14T21:55:04.9336279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_native.h 2025-08-14T21:55:04.9340012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_ops.h 2025-08-14T21:55:04.9343676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h 2025-08-14T21:55:04.9347493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_native.h 2025-08-14T21:55:04.9351262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_ops.h 2025-08-14T21:55:04.9355039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured.h 2025-08-14T21:55:04.9358913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h 2025-08-14T21:55:04.9362628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_native.h 2025-08-14T21:55:04.9366293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h 2025-08-14T21:55:04.9370192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h 2025-08-14T21:55:04.9375037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9378700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h 2025-08-14T21:55:04.9382557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h 2025-08-14T21:55:04.9386246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h 2025-08-14T21:55:04.9389985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h 2025-08-14T21:55:04.9393893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv.h 2025-08-14T21:55:04.9398256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9402031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h 2025-08-14T21:55:04.9405857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h 2025-08-14T21:55:04.9409607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h 2025-08-14T21:55:04.9414313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h 2025-08-14T21:55:04.9418203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear.h 2025-08-14T21:55:04.9422294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9425931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9429549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_native.h 2025-08-14T21:55:04.9433613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_ops.h 2025-08-14T21:55:04.9437187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention.h 2025-08-14T21:55:04.9441119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9444847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h 2025-08-14T21:55:04.9448603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_native.h 2025-08-14T21:55:04.9452517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_ops.h 2025-08-14T21:55:04.9456578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention.h 2025-08-14T21:55:04.9460610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9464397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h 2025-08-14T21:55:04.9468111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h 2025-08-14T21:55:04.9471929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h 2025-08-14T21:55:04.9475888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique.h 2025-08-14T21:55:04.9479348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2.h 2025-08-14T21:55:04.9482869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9486845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cpu_dispatch.h 2025-08-14T21:55:04.9490596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cuda_dispatch.h 2025-08-14T21:55:04.9494362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_native.h 2025-08-14T21:55:04.9498271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_ops.h 2025-08-14T21:55:04.9502185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9505856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cpu_dispatch.h 2025-08-14T21:55:04.9510105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cuda_dispatch.h 2025-08-14T21:55:04.9514528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_native.h 2025-08-14T21:55:04.9519446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_ops.h 2025-08-14T21:55:04.9523024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual.h 2025-08-14T21:55:04.9526692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9530406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_native.h 2025-08-14T21:55:04.9554882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_ops.h 2025-08-14T21:55:04.9558825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index.h 2025-08-14T21:55:04.9562574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9566926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_native.h 2025-08-14T21:55:04.9570759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_ops.h 2025-08-14T21:55:04.9574552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put.h 2025-08-14T21:55:04.9579090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9582979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_native.h 2025-08-14T21:55:04.9586754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_ops.h 2025-08-14T21:55:04.9590458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index.h 2025-08-14T21:55:04.9594587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9598734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_native.h 2025-08-14T21:55:04.9603272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_ops.h 2025-08-14T21:55:04.9607287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h 2025-08-14T21:55:04.9611490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9615903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h 2025-08-14T21:55:04.9619752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h 2025-08-14T21:55:04.9623612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view.h 2025-08-14T21:55:04.9627518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:04.9631852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_native.h 2025-08-14T21:55:04.9636133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_ops.h 2025-08-14T21:55:04.9640512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa.h 2025-08-14T21:55:04.9644348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h 2025-08-14T21:55:04.9648925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9652958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h 2025-08-14T21:55:04.9656827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h 2025-08-14T21:55:04.9660694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h 2025-08-14T21:55:04.9664807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h 2025-08-14T21:55:04.9698009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h 2025-08-14T21:55:04.9701971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h 2025-08-14T21:55:04.9706233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9710066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9714438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h 2025-08-14T21:55:04.9718694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h 2025-08-14T21:55:04.9722420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h 2025-08-14T21:55:04.9726867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h 2025-08-14T21:55:04.9730755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h 2025-08-14T21:55:04.9734346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h 2025-08-14T21:55:04.9738555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa.h 2025-08-14T21:55:04.9742471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h 2025-08-14T21:55:04.9746754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9751115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h 2025-08-14T21:55:04.9756107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h 2025-08-14T21:55:04.9760472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h 2025-08-14T21:55:04.9764633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h 2025-08-14T21:55:04.9768689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h 2025-08-14T21:55:04.9772690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h 2025-08-14T21:55:04.9776761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9780942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9785503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h 2025-08-14T21:55:04.9789742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h 2025-08-14T21:55:04.9793745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h 2025-08-14T21:55:04.9797834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h 2025-08-14T21:55:04.9802338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h 2025-08-14T21:55:04.9806247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h 2025-08-14T21:55:04.9810269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d.h 2025-08-14T21:55:04.9814344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h 2025-08-14T21:55:04.9818477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9822747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h 2025-08-14T21:55:04.9826388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h 2025-08-14T21:55:04.9830902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h 2025-08-14T21:55:04.9834756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h 2025-08-14T21:55:04.9838821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h 2025-08-14T21:55:04.9843630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h 2025-08-14T21:55:04.9847883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9851905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9856120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h 2025-08-14T21:55:04.9859740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h 2025-08-14T21:55:04.9863776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h 2025-08-14T21:55:04.9867913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h 2025-08-14T21:55:04.9871827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h 2025-08-14T21:55:04.9876018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h 2025-08-14T21:55:04.9879976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d.h 2025-08-14T21:55:04.9884127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h 2025-08-14T21:55:04.9887964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9891648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h 2025-08-14T21:55:04.9895790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h 2025-08-14T21:55:04.9899655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h 2025-08-14T21:55:04.9903642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h 2025-08-14T21:55:04.9907542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h 2025-08-14T21:55:04.9928983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h 2025-08-14T21:55:04.9933479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9937448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:04.9941394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h 2025-08-14T21:55:04.9946050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h 2025-08-14T21:55:04.9951272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h 2025-08-14T21:55:04.9955421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h 2025-08-14T21:55:04.9959707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h 2025-08-14T21:55:04.9963629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h 2025-08-14T21:55:04.9967545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d.h 2025-08-14T21:55:04.9971831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h 2025-08-14T21:55:04.9976277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:04.9980380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h 2025-08-14T21:55:04.9984377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h 2025-08-14T21:55:04.9988190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h 2025-08-14T21:55:04.9992229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h 2025-08-14T21:55:04.9996488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h 2025-08-14T21:55:05.0000246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h 2025-08-14T21:55:05.0004392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:05.0008231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0012229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h 2025-08-14T21:55:05.0016146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h 2025-08-14T21:55:05.0020366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h 2025-08-14T21:55:05.0024145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h 2025-08-14T21:55:05.0028075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h 2025-08-14T21:55:05.0031870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h 2025-08-14T21:55:05.0036518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss.h 2025-08-14T21:55:05.0040559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h 2025-08-14T21:55:05.0044617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h 2025-08-14T21:55:05.0048804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h 2025-08-14T21:55:05.0052701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h 2025-08-14T21:55:05.0056722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0060531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h 2025-08-14T21:55:05.0064357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h 2025-08-14T21:55:05.0068438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices.h 2025-08-14T21:55:05.0072671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h 2025-08-14T21:55:05.0076275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h 2025-08-14T21:55:05.0080059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h 2025-08-14T21:55:05.0083745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h 2025-08-14T21:55:05.0087816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h 2025-08-14T21:55:05.0091927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0095725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h 2025-08-14T21:55:05.0099658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h 2025-08-14T21:55:05.0103461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h 2025-08-14T21:55:05.0107615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0111442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h 2025-08-14T21:55:05.0115266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h 2025-08-14T21:55:05.0119384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h 2025-08-14T21:55:05.0123863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0128013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h 2025-08-14T21:55:05.0132205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h 2025-08-14T21:55:05.0136478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h 2025-08-14T21:55:05.0140687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0144260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h 2025-08-14T21:55:05.0148528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h 2025-08-14T21:55:05.0152421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h 2025-08-14T21:55:05.0156578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0160305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h 2025-08-14T21:55:05.0164172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h 2025-08-14T21:55:05.0168118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h 2025-08-14T21:55:05.0172345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0176081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h 2025-08-14T21:55:05.0179880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h 2025-08-14T21:55:05.0183597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values.h 2025-08-14T21:55:05.0187009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy.h 2025-08-14T21:55:05.0190915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:55:05.0194840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:05.0198915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_native.h 2025-08-14T21:55:05.0203049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_ops.h 2025-08-14T21:55:05.0206686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_native.h 2025-08-14T21:55:05.0210304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_ops.h 2025-08-14T21:55:05.0214448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version.h 2025-08-14T21:55:05.0218020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0221734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_native.h 2025-08-14T21:55:05.0225236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_ops.h 2025-08-14T21:55:05.0228997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm.h 2025-08-14T21:55:05.0232783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h 2025-08-14T21:55:05.0236527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h 2025-08-14T21:55:05.0240281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h 2025-08-14T21:55:05.0244167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h 2025-08-14T21:55:05.0248347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h 2025-08-14T21:55:05.0252171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_native.h 2025-08-14T21:55:05.0255956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_ops.h 2025-08-14T21:55:05.0259876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h 2025-08-14T21:55:05.0263961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h 2025-08-14T21:55:05.0267801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h 2025-08-14T21:55:05.0271906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm.h 2025-08-14T21:55:05.0276094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h 2025-08-14T21:55:05.0279976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h 2025-08-14T21:55:05.0284219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_native.h 2025-08-14T21:55:05.0287985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_ops.h 2025-08-14T21:55:05.0291693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm.h 2025-08-14T21:55:05.0295860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0300068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward.h 2025-08-14T21:55:05.0304017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0307780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h 2025-08-14T21:55:05.0312106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h 2025-08-14T21:55:05.0316348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface.h 2025-08-14T21:55:05.0320209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward.h 2025-08-14T21:55:05.0324262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:05.0328316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h 2025-08-14T21:55:05.0333076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h 2025-08-14T21:55:05.0337168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_native.h 2025-08-14T21:55:05.0341232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h 2025-08-14T21:55:05.0345511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h 2025-08-14T21:55:05.0349561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h 2025-08-14T21:55:05.0353582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h 2025-08-14T21:55:05.0357480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_native.h 2025-08-14T21:55:05.0361516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_ops.h 2025-08-14T21:55:05.0365479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_native.h 2025-08-14T21:55:05.0369278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_ops.h 2025-08-14T21:55:05.0373043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack.h 2025-08-14T21:55:05.0377102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0380714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_native.h 2025-08-14T21:55:05.0384406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h 2025-08-14T21:55:05.0388510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h 2025-08-14T21:55:05.0392651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h 2025-08-14T21:55:05.0396378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h 2025-08-14T21:55:05.0400260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h 2025-08-14T21:55:05.0649893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\QTensorImpl.h 2025-08-14T21:55:05.0653352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\Quantizer.h 2025-08-14T21:55:05.0661364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\CachingHostAllocator.h 2025-08-14T21:55:05.0664911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\PinnedMemoryAllocator.h 2025-08-14T21:55:05.0668176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUContext.h 2025-08-14T21:55:05.0671470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUDevice.h 2025-08-14T21:55:05.0682009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUEvent.h 2025-08-14T21:55:05.0685330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUGeneratorImpl.h 2025-08-14T21:55:05.0692404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\detail\XPUHooks.h 2025-08-14T21:55:05.0705447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\alignment.h 2025-08-14T21:55:05.0709595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Allocator.h 2025-08-14T21:55:05.0713521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AllocatorConfig.h 2025-08-14T21:55:05.0717872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AutogradState.h 2025-08-14T21:55:05.0730540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Backend.h 2025-08-14T21:55:05.0734289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CachingDeviceAllocator.h 2025-08-14T21:55:05.0737884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CompileTimeFunctionPointer.h 2025-08-14T21:55:05.0741421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ConstantSymNodeImpl.h 2025-08-14T21:55:05.0744718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Contiguity.h 2025-08-14T21:55:05.0748141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CopyBytes.h 2025-08-14T21:55:05.0751610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CPUAllocator.h 2025-08-14T21:55:05.0755047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultDtype.h 2025-08-14T21:55:05.0758700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultTensorOptions.h 2025-08-14T21:55:05.0762036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Device.h 2025-08-14T21:55:05.0765237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceArray.h 2025-08-14T21:55:05.0768976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceGuard.h 2025-08-14T21:55:05.0772355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceType.h 2025-08-14T21:55:05.0775762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKey.h 2025-08-14T21:55:05.0779269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKeySet.h 2025-08-14T21:55:05.0782787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DynamicCast.h 2025-08-14T21:55:05.0791627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Event.h 2025-08-14T21:55:05.0794956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GeneratorImpl.h 2025-08-14T21:55:05.0798322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GradMode.h 2025-08-14T21:55:05.0801649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\InferenceMode.h 2025-08-14T21:55:05.0805237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Layout.h 2025-08-14T21:55:05.0808432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\MemoryFormat.h 2025-08-14T21:55:05.0812233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\OptionalRef.h 2025-08-14T21:55:05.0815712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\PyHandleCache.h 2025-08-14T21:55:05.0819159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QEngine.h 2025-08-14T21:55:05.0822568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QScheme.h 2025-08-14T21:55:05.0825944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\RefcountedDeleter.h 2025-08-14T21:55:05.0829401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SafePyObject.h 2025-08-14T21:55:05.0841386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Scalar.h 2025-08-14T21:55:05.0844840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarType.h 2025-08-14T21:55:05.0848518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarTypeToTypeMeta.h 2025-08-14T21:55:05.0852034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Storage.h 2025-08-14T21:55:05.0855260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StorageImpl.h 2025-08-14T21:55:05.0858558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Stream.h 2025-08-14T21:55:05.0861769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StreamGuard.h 2025-08-14T21:55:05.0865196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymbolicShapeMeta.h 2025-08-14T21:55:05.0868492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymBool.h 2025-08-14T21:55:05.0871857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymFloat.h 2025-08-14T21:55:05.0875271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymInt.h 2025-08-14T21:55:05.0878939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymIntArrayRef.h 2025-08-14T21:55:05.0888534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymNodeImpl.h 2025-08-14T21:55:05.0892046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorImpl.h 2025-08-14T21:55:05.0896475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorOptions.h 2025-08-14T21:55:05.0900026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\thread_pool.h 2025-08-14T21:55:05.0903475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\UndefinedTensorImpl.h 2025-08-14T21:55:05.0906904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\WrapDimMinimal.h 2025-08-14T21:55:05.0914271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\alloc_cpu.h 2025-08-14T21:55:05.0917895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COW.h 2025-08-14T21:55:05.0921103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COWDeleter.h 2025-08-14T21:55:05.0924484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\DeviceGuardImplInterface.h 2025-08-14T21:55:05.0935107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\FakeGuardImpl.h 2025-08-14T21:55:05.0938559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\GPUTrace.h 2025-08-14T21:55:05.0941906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\HermeticPyObjectTLS.h 2025-08-14T21:55:05.0945359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineDeviceGuard.h 2025-08-14T21:55:05.0948759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineEvent.h 2025-08-14T21:55:05.0952369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineStreamGuard.h 2025-08-14T21:55:05.0955943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\LocalDispatchKeySet.h 2025-08-14T21:55:05.0959432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreter.h 2025-08-14T21:55:05.0963082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreterHooks.h 2025-08-14T21:55:05.0966511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyObjectSlot.h 2025-08-14T21:55:05.0970101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PythonDispatcherTLS.h 2025-08-14T21:55:05.0973930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\SizesAndStrides.h 2025-08-14T21:55:05.0977351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\TorchDispatchModeTLS.h 2025-08-14T21:55:05.0980691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\VirtualGuardImpl.h 2025-08-14T21:55:05.0989599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAlgorithm.h 2025-08-14T21:55:05.0992924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAllocatorConfig.h 2025-08-14T21:55:05.0996295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDACachingAllocator.h 2025-08-14T21:55:05.0999636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertion.h 2025-08-14T21:55:05.1066723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertionHost.h 2025-08-14T21:55:05.1070266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAException.h 2025-08-14T21:55:05.1073483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAFunctions.h 2025-08-14T21:55:05.1077000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGraphsC10Utils.h 2025-08-14T21:55:05.1080351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGuard.h 2025-08-14T21:55:05.1083724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMacros.h 2025-08-14T21:55:05.1087118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMathCompat.h 2025-08-14T21:55:05.1090501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMiscFunctions.h 2025-08-14T21:55:05.1093775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAStream.h 2025-08-14T21:55:05.1097100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\driver_api.h 2025-08-14T21:55:05.1104145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDAGuardImpl.h 2025-08-14T21:55:05.1107522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDATest.h 2025-08-14T21:55:05.1115031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\cmake_macros.h 2025-08-14T21:55:05.1118657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Export.h 2025-08-14T21:55:05.1121624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Macros.h 2025-08-14T21:55:05.1128000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\atomic.h 2025-08-14T21:55:05.1131182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\common.h 2025-08-14T21:55:05.1144982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\expm1f.h 2025-08-14T21:55:05.1145325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\indexing.h 2025-08-14T21:55:05.1145547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\random.h 2025-08-14T21:55:05.1145777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\reduction_utils.h 2025-08-14T21:55:05.1202918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\special_math.h 2025-08-14T21:55:05.1206672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\utils.h 2025-08-14T21:55:05.1214478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUCachingAllocator.h 2025-08-14T21:55:05.1218220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUProfilingAllocator.h 2025-08-14T21:55:05.1229559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_math_test_common.h 2025-08-14T21:55:05.1233909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_test_common.h 2025-08-14T21:55:05.1237811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\Macros.h 2025-08-14T21:55:05.1246452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AbortHandler.h 2025-08-14T21:55:05.1249956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\accumulate.h 2025-08-14T21:55:05.1253444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AlignOf.h 2025-08-14T21:55:05.1257014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ApproximateClock.h 2025-08-14T21:55:05.1266357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Array.h 2025-08-14T21:55:05.1269720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ArrayRef.h 2025-08-14T21:55:05.1273170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Backtrace.h 2025-08-14T21:55:05.1276640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-inl.h 2025-08-14T21:55:05.1279984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-math.h 2025-08-14T21:55:05.1283359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16.h 2025-08-14T21:55:05.1286552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bits.h 2025-08-14T21:55:05.1289836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Bitset.h 2025-08-14T21:55:05.1293077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bit_cast.h 2025-08-14T21:55:05.1296147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\C++17.h 2025-08-14T21:55:05.1321334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\CallOnce.h 2025-08-14T21:55:05.1324771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex.h 2025-08-14T21:55:05.1328090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_math.h 2025-08-14T21:55:05.1331555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_utils.h 2025-08-14T21:55:05.1334906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ConstexprCrc.h 2025-08-14T21:55:05.1338124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\copysign.h 2025-08-14T21:55:05.1341455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DeadlockDetection.h 2025-08-14T21:55:05.1344686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Deprecated.h 2025-08-14T21:55:05.1348108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DimVector.h 2025-08-14T21:55:05.1351587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DynamicCounter.h 2025-08-14T21:55:05.1360891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Enumerate.h 2025-08-14T21:55:05.1364504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\env.h 2025-08-14T21:55:05.1367678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\error.h 2025-08-14T21:55:05.1370815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Exception.h 2025-08-14T21:55:05.1374429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwned.h 2025-08-14T21:55:05.1377900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h 2025-08-14T21:55:05.1381303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FbcodeMaps.h 2025-08-14T21:55:05.1384540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Flags.h 2025-08-14T21:55:05.1388237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\flat_hash_map.h 2025-08-14T21:55:05.1392289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float4_e2m1fn_x2.h 2025-08-14T21:55:05.1395661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn-inl.h 2025-08-14T21:55:05.1404609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn.h 2025-08-14T21:55:05.1407954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz-inl.h 2025-08-14T21:55:05.1412003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz.h 2025-08-14T21:55:05.1414829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2-inl.h 2025-08-14T21:55:05.1418251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2.h 2025-08-14T21:55:05.1421713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz-inl.h 2025-08-14T21:55:05.1425277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz.h 2025-08-14T21:55:05.1428695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu-inl.h 2025-08-14T21:55:05.1432105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu.h 2025-08-14T21:55:05.1441310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\floating_point_utils.h 2025-08-14T21:55:05.1444596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FunctionRef.h 2025-08-14T21:55:05.1447934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Gauge.h 2025-08-14T21:55:05.1451258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\generic_math.h 2025-08-14T21:55:05.1454613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half-inl.h 2025-08-14T21:55:05.1457824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half.h 2025-08-14T21:55:05.1461133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\hash.h 2025-08-14T21:55:05.1464497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IdWrapper.h 2025-08-14T21:55:05.1467953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\int128.h 2025-08-14T21:55:05.1471295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IntrusiveList.h 2025-08-14T21:55:05.1474632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\intrusive_ptr.h 2025-08-14T21:55:05.1478396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\irange.h 2025-08-14T21:55:05.1481650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Lazy.h 2025-08-14T21:55:05.1484937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\LeftRight.h 2025-08-14T21:55:05.1494015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\llvmMathExtras.h 2025-08-14T21:55:05.1497475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Load.h 2025-08-14T21:55:05.1500868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Logging.h 2025-08-14T21:55:05.1504176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_google_glog.h 2025-08-14T21:55:05.1507592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_not_google_glog.h 2025-08-14T21:55:05.1511126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MathConstants.h 2025-08-14T21:55:05.1514676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MaybeOwned.h 2025-08-14T21:55:05.1518665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Metaprogramming.h 2025-08-14T21:55:05.1522373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\NetworkFlow.h 2025-08-14T21:55:05.1526164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\numa.h 2025-08-14T21:55:05.1529524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Optional.h 2025-08-14T21:55:05.1544075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\OptionalArrayRef.h 2025-08-14T21:55:05.1547541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\order_preserving_flat_hash_map.h 2025-08-14T21:55:05.1551584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overflows.h 2025-08-14T21:55:05.1555015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overloaded.h 2025-08-14T21:55:05.1558655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ParallelGuard.h 2025-08-14T21:55:05.1562024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\python_stub.h 2025-08-14T21:55:05.1565522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint32.h 2025-08-14T21:55:05.1568881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint8.h 2025-08-14T21:55:05.1571960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint2x4.h 2025-08-14T21:55:05.1575284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint4x2.h 2025-08-14T21:55:05.1578482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint8.h 2025-08-14T21:55:05.1581719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Registry.h 2025-08-14T21:55:05.1584989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\safe_numerics.h 2025-08-14T21:55:05.1593834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ScopeExit.h 2025-08-14T21:55:05.1597459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Semaphore.h 2025-08-14T21:55:05.1600918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\signal_handler.h 2025-08-14T21:55:05.1604381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallBuffer.h 2025-08-14T21:55:05.1607772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallVector.h 2025-08-14T21:55:05.1611992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\sparse_bitset.h 2025-08-14T21:55:05.1615636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ssize.h 2025-08-14T21:55:05.1619126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint.h 2025-08-14T21:55:05.1622706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint_elfx86.h 2025-08-14T21:55:05.1626372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strides.h 2025-08-14T21:55:05.1629675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\StringUtil.h 2025-08-14T21:55:05.1761799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_utils.h 2025-08-14T21:55:05.1765112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_view.h 2025-08-14T21:55:05.1768643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strong_type.h 2025-08-14T21:55:05.1772716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Synchronized.h 2025-08-14T21:55:05.1776389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\tempfile.h 2025-08-14T21:55:05.1779698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocal.h 2025-08-14T21:55:05.1783000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocalDebugInfo.h 2025-08-14T21:55:05.1786634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\thread_name.h 2025-08-14T21:55:05.1790111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Type.h 2025-08-14T21:55:05.1793384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeCast.h 2025-08-14T21:55:05.1796644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\typeid.h 2025-08-14T21:55:05.1800255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeIndex.h 2025-08-14T21:55:05.1803873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeList.h 2025-08-14T21:55:05.1807149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeSafeSignMath.h 2025-08-14T21:55:05.1810389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeTraits.h 2025-08-14T21:55:05.1813720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unicode.h 2025-08-14T21:55:05.1817356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\UniqueVoidPtr.h 2025-08-14T21:55:05.1820598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unroll.h 2025-08-14T21:55:05.1823803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounter.h 2025-08-14T21:55:05.1827274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounterDynamicBackend.h 2025-08-14T21:55:05.1830785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\win32-headers.h 2025-08-14T21:55:05.1847924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUCachingAllocator.h 2025-08-14T21:55:05.1851297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUDeviceProp.h 2025-08-14T21:55:05.1854578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUException.h 2025-08-14T21:55:05.1857924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUFunctions.h 2025-08-14T21:55:05.1867764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUMacros.h 2025-08-14T21:55:05.1871344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUStream.h 2025-08-14T21:55:05.1878259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\impl\XPUGuardImpl.h 2025-08-14T21:55:05.1888886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\test\impl\XPUTest.h 2025-08-14T21:55:05.1901568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\common.h 2025-08-14T21:55:05.1905153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\macros.h 2025-08-14T21:55:05.1908586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\timer.h 2025-08-14T21:55:05.1915578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\batch_box_cox_vec.h 2025-08-14T21:55:05.1919264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\common.h 2025-08-14T21:55:05.1922686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\embedding_lookup_idx.h 2025-08-14T21:55:05.1929861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\crc_alt.h 2025-08-14T21:55:05.1933844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\file_adapter.h 2025-08-14T21:55:05.1937335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\inline_container.h 2025-08-14T21:55:05.1940972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\in_memory_adapter.h 2025-08-14T21:55:05.1950125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\istream_adapter.h 2025-08-14T21:55:05.1953484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\read_adapter_interface.h 2025-08-14T21:55:05.1957147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\versions.h 2025-08-14T21:55:05.1964584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\fixed_divisor.h 2025-08-14T21:55:05.1967997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\proto_wrap.h 2025-08-14T21:55:05.1971410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\string_utils.h 2025-08-14T21:55:05.1984313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h 2025-08-14T21:55:05.1987720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool.h 2025-08-14T21:55:05.1991160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPool.h 2025-08-14T21:55:05.1999537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h 2025-08-14T21:55:05.2002917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\thread_pool_guard.h 2025-08-14T21:55:05.2006397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\WorkersPool.h 2025-08-14T21:55:05.2014774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\args.h 2025-08-14T21:55:05.2017994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\base.h 2025-08-14T21:55:05.2022089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\chrono.h 2025-08-14T21:55:05.2026111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\color.h 2025-08-14T21:55:05.2030028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\compile.h 2025-08-14T21:55:05.2033101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\core.h 2025-08-14T21:55:05.2036515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format-inl.h 2025-08-14T21:55:05.2045325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format.h 2025-08-14T21:55:05.2049792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\os.h 2025-08-14T21:55:05.2053231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ostream.h 2025-08-14T21:55:05.2056433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\printf.h 2025-08-14T21:55:05.2059801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ranges.h 2025-08-14T21:55:05.2063236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\std.h 2025-08-14T21:55:05.2066430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\xchar.h 2025-08-14T21:55:05.2073418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\bitcasts.h 2025-08-14T21:55:05.2076860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\fp16.h 2025-08-14T21:55:05.2080355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\psimd.h 2025-08-14T21:55:05.2091429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.h 2025-08-14T21:55:05.2094761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.pb.h 2025-08-14T21:55:05.2098240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\api.pb.h 2025-08-14T21:55:05.2101872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena.h 2025-08-14T21:55:05.2105417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arenastring.h 2025-08-14T21:55:05.2114722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena_impl.h 2025-08-14T21:55:05.2118201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.h 2025-08-14T21:55:05.2122636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.pb.h 2025-08-14T21:55:05.2129933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor_database.h 2025-08-14T21:55:05.2133777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\duration.pb.h 2025-08-14T21:55:05.2137328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\dynamic_message.h 2025-08-14T21:55:05.2141030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\empty.pb.h 2025-08-14T21:55:05.2145541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set.h 2025-08-14T21:55:05.2149708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set_inl.h 2025-08-14T21:55:05.2153105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\field_mask.pb.h 2025-08-14T21:55:05.2156893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_reflection.h 2025-08-14T21:55:05.2160601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_util.h 2025-08-14T21:55:05.2164409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_reflection.h 2025-08-14T21:55:05.2168014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_table_driven.h 2025-08-14T21:55:05.2171410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_util.h 2025-08-14T21:55:05.2180089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\has_bits.h 2025-08-14T21:55:05.2183339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\implicit_weak_message.h 2025-08-14T21:55:05.2186621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\inlined_string_field.h 2025-08-14T21:55:05.2190085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map.h 2025-08-14T21:55:05.2193733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry.h 2025-08-14T21:55:05.2197248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry_lite.h 2025-08-14T21:55:05.2201101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field.h 2025-08-14T21:55:05.2204494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_inl.h 2025-08-14T21:55:05.2208337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_lite.h 2025-08-14T21:55:05.2211841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_type_handler.h 2025-08-14T21:55:05.2221098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message.h 2025-08-14T21:55:05.2224794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message_lite.h 2025-08-14T21:55:05.2228729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata.h 2025-08-14T21:55:05.2232399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata_lite.h 2025-08-14T21:55:05.2235867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\parse_context.h 2025-08-14T21:55:05.2239320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\port.h 2025-08-14T21:55:05.2242616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection.h 2025-08-14T21:55:05.2246040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection_ops.h 2025-08-14T21:55:05.2249441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\repeated_field.h 2025-08-14T21:55:05.2253654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\service.h 2025-08-14T21:55:05.2257161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\source_context.pb.h 2025-08-14T21:55:05.2260778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\struct.pb.h 2025-08-14T21:55:05.2269404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\text_format.h 2025-08-14T21:55:05.2272694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\timestamp.pb.h 2025-08-14T21:55:05.2276049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\type.pb.h 2025-08-14T21:55:05.2280174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\unknown_field_set.h 2025-08-14T21:55:05.2283797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format.h 2025-08-14T21:55:05.2287566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format_lite.h 2025-08-14T21:55:05.2292049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wrappers.pb.h 2025-08-14T21:55:05.2300677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\code_generator.h 2025-08-14T21:55:05.2304591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\command_line_interface.h 2025-08-14T21:55:05.2308587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\importer.h 2025-08-14T21:55:05.2312478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\parser.h 2025-08-14T21:55:05.2316457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.h 2025-08-14T21:55:05.2325683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.pb.h 2025-08-14T21:55:05.2334192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\cpp\cpp_generator.h 2025-08-14T21:55:05.2341737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_generator.h 2025-08-14T21:55:05.2345974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_names.h 2025-08-14T21:55:05.2353194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_generator.h 2025-08-14T21:55:05.2356658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_names.h 2025-08-14T21:55:05.2363647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\js_generator.h 2025-08-14T21:55:05.2366974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\well_known_types_embed.h 2025-08-14T21:55:05.2373990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h 2025-08-14T21:55:05.2377581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h 2025-08-14T21:55:05.2384510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\php\php_generator.h 2025-08-14T21:55:05.2391274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\python\python_generator.h 2025-08-14T21:55:05.2398103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\ruby\ruby_generator.h 2025-08-14T21:55:05.2405982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\coded_stream.h 2025-08-14T21:55:05.2409997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\gzip_stream.h 2025-08-14T21:55:05.2413304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\io_win32.h 2025-08-14T21:55:05.2416567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\printer.h 2025-08-14T21:55:05.2419822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\strtod.h 2025-08-14T21:55:05.3480514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\tokenizer.h 2025-08-14T21:55:05.3483780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream.h 2025-08-14T21:55:05.3487051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl.h 2025-08-14T21:55:05.3490301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h 2025-08-14T21:55:05.3498238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\bytestream.h 2025-08-14T21:55:05.3501351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\callback.h 2025-08-14T21:55:05.3504432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\casts.h 2025-08-14T21:55:05.3507760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\common.h 2025-08-14T21:55:05.3510949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\fastmem.h 2025-08-14T21:55:05.3514206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\hash.h 2025-08-14T21:55:05.3522548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\logging.h 2025-08-14T21:55:05.3525730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\macros.h 2025-08-14T21:55:05.3544340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\map_util.h 2025-08-14T21:55:05.3547829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\mutex.h 2025-08-14T21:55:05.3551254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\once.h 2025-08-14T21:55:05.3554602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\platform_macros.h 2025-08-14T21:55:05.3558093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\port.h 2025-08-14T21:55:05.3561342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\status.h 2025-08-14T21:55:05.3564658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stl_util.h 2025-08-14T21:55:05.3568347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stringpiece.h 2025-08-14T21:55:05.3571775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\strutil.h 2025-08-14T21:55:05.3575351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\template_util.h 2025-08-14T21:55:05.3582677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\delimited_message_util.h 2025-08-14T21:55:05.3586058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_comparator.h 2025-08-14T21:55:05.3589129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_mask_util.h 2025-08-14T21:55:05.3598417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\json_util.h 2025-08-14T21:55:05.3601788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\message_differencer.h 2025-08-14T21:55:05.3605581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\time_util.h 2025-08-14T21:55:05.3609463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver.h 2025-08-14T21:55:05.3612769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver_util.h 2025-08-14T21:55:05.3621250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\AbstractConfig.h 2025-08-14T21:55:05.3624828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityProfilerInterface.h 2025-08-14T21:55:05.3628281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityTraceInterface.h 2025-08-14T21:55:05.3636863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityType.h 2025-08-14T21:55:05.3640266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ClientInterface.h 2025-08-14T21:55:05.3644007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\Config.h 2025-08-14T21:55:05.3647174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\GenericTraceActivity.h 2025-08-14T21:55:05.3650538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\IActivityProfiler.h 2025-08-14T21:55:05.3653808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ILoggerObserver.h 2025-08-14T21:55:05.3657301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ITraceActivity.h 2025-08-14T21:55:05.3660486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\libkineto.h 2025-08-14T21:55:05.3663656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\LoggingAPI.h 2025-08-14T21:55:05.3666928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\output_base.h 2025-08-14T21:55:05.3670054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ThreadUtil.h 2025-08-14T21:55:05.3673338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\time_since_epoch.h 2025-08-14T21:55:05.3676577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\TraceSpan.h 2025-08-14T21:55:05.3683682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\legacy\ittnotify.h 2025-08-14T21:55:05.3691044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-new-delete.h 2025-08-14T21:55:05.3694514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-override.h 2025-08-14T21:55:05.3697920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-stats.h 2025-08-14T21:55:05.3707408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc.h 2025-08-14T21:55:05.3719887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.h 2025-08-14T21:55:05.3724835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.hpp 2025-08-14T21:55:05.3732367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.h 2025-08-14T21:55:05.3735697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.hpp 2025-08-14T21:55:05.3739130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common_types.h 2025-08-14T21:55:05.3747671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_config.h 2025-08-14T21:55:05.3750881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_debug.h 2025-08-14T21:55:05.3754020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.h 2025-08-14T21:55:05.3757548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.hpp 2025-08-14T21:55:05.3761113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.h 2025-08-14T21:55:05.3764349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp 2025-08-14T21:55:05.3767730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.h 2025-08-14T21:55:05.3771032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp 2025-08-14T21:55:05.3774405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_types.h 2025-08-14T21:55:05.3778029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.h 2025-08-14T21:55:05.3781241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.hpp 2025-08-14T21:55:05.3784351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl_types.h 2025-08-14T21:55:05.3787637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.h 2025-08-14T21:55:05.3790911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.hpp 2025-08-14T21:55:05.3794233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl_types.h 2025-08-14T21:55:05.3797749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.h 2025-08-14T21:55:05.3806110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.hpp 2025-08-14T21:55:05.3809305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp 2025-08-14T21:55:05.3812531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_types.h 2025-08-14T21:55:05.3816802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.h 2025-08-14T21:55:05.3820560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.hpp 2025-08-14T21:55:05.3824117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel_types.h 2025-08-14T21:55:05.3827634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version.h 2025-08-14T21:55:05.3831232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version_hash.h 2025-08-14T21:55:05.3840835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\attr.h 2025-08-14T21:55:05.3844239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\buffer_info.h 2025-08-14T21:55:05.3847359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\cast.h 2025-08-14T21:55:05.3850912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\chrono.h 2025-08-14T21:55:05.3854630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\common.h 2025-08-14T21:55:05.3857262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\complex.h 2025-08-14T21:55:05.3865700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen.h 2025-08-14T21:55:05.3868880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\embed.h 2025-08-14T21:55:05.3871988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eval.h 2025-08-14T21:55:05.3874959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\functional.h 2025-08-14T21:55:05.3878045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil.h 2025-08-14T21:55:05.3881086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_safe_call_once.h 2025-08-14T21:55:05.3884396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\iostream.h 2025-08-14T21:55:05.3887893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\numpy.h 2025-08-14T21:55:05.3891526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\operators.h 2025-08-14T21:55:05.3894680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\options.h 2025-08-14T21:55:05.3897845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pybind11.h 2025-08-14T21:55:05.3902278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pytypes.h 2025-08-14T21:55:05.3906104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl.h 2025-08-14T21:55:05.3909171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl_bind.h 2025-08-14T21:55:05.3912377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\type_caster_pyobject_ptr.h 2025-08-14T21:55:05.3915479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\typing.h 2025-08-14T21:55:05.3921752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\class.h 2025-08-14T21:55:05.3924890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\common.h 2025-08-14T21:55:05.3928277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\cpp_conduit.h 2025-08-14T21:55:05.3931508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\descr.h 2025-08-14T21:55:05.3934815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\exception_translation.h 2025-08-14T21:55:05.3943208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\init.h 2025-08-14T21:55:05.3946336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\internals.h 2025-08-14T21:55:05.3949585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\typeid.h 2025-08-14T21:55:05.3952646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\type_caster_base.h 2025-08-14T21:55:05.3956162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\value_and_holder.h 2025-08-14T21:55:05.3962911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\common.h 2025-08-14T21:55:05.3965934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\matrix.h 2025-08-14T21:55:05.3969278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\tensor.h 2025-08-14T21:55:05.3975699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl\filesystem.h 2025-08-14T21:55:05.3984370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class.h 2025-08-14T21:55:05.3987568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class_detail.h 2025-08-14T21:55:05.3991290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\extension.h 2025-08-14T21:55:05.3994694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\library.h 2025-08-14T21:55:05.4003386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\script.h 2025-08-14T21:55:05.4011563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\copy_utils.h 2025-08-14T21:55:05.4014961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\CudaIPCTypes.h 2025-08-14T21:55:05.4018766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DataLoader.h 2025-08-14T21:55:05.4021925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Device.h 2025-08-14T21:55:05.4031383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DeviceAccelerator.h 2025-08-14T21:55:05.4034927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Dtype.h 2025-08-14T21:55:05.4038368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DynamicTypes.h 2025-08-14T21:55:05.4041866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Event.h 2025-08-14T21:55:05.4045213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Exceptions.h 2025-08-14T21:55:05.4048764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Export.h 2025-08-14T21:55:05.4052526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Generator.h 2025-08-14T21:55:05.4055941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt.h 2025-08-14T21:55:05.4059302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt_wrapper.h 2025-08-14T21:55:05.4062844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Layout.h 2025-08-14T21:55:05.4065977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\MemoryFormat.h 2025-08-14T21:55:05.4069401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Module.h 2025-08-14T21:55:05.4072890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreter.h 2025-08-14T21:55:05.4076440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreterHooks.h 2025-08-14T21:55:05.4080027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_dimname.h 2025-08-14T21:55:05.4083371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_headers.h 2025-08-14T21:55:05.4086936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\QScheme.h 2025-08-14T21:55:05.4090234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\serialization.h 2025-08-14T21:55:05.4093677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Size.h 2025-08-14T21:55:05.4097067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Storage.h 2025-08-14T21:55:05.4110750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageMethods.h 2025-08-14T21:55:05.4114053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageSharing.h 2025-08-14T21:55:05.4117400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Stream.h 2025-08-14T21:55:05.4120790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THConcat.h 2025-08-14T21:55:05.4124045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THP.h 2025-08-14T21:55:05.4127331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\TypeInfo.h 2025-08-14T21:55:05.4130455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Types.h 2025-08-14T21:55:05.4133701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils.h 2025-08-14T21:55:05.4147271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\all.h 2025-08-14T21:55:05.4150454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\arg.h 2025-08-14T21:55:05.4153746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\autograd.h 2025-08-14T21:55:05.4157214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\cuda.h 2025-08-14T21:55:05.4160470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data.h 2025-08-14T21:55:05.4163527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\enum.h 2025-08-14T21:55:05.4166703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\expanding_array.h 2025-08-14T21:55:05.4297470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\fft.h 2025-08-14T21:55:05.4300828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\imethod.h 2025-08-14T21:55:05.4304018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\jit.h 2025-08-14T21:55:05.4307630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\mps.h 2025-08-14T21:55:05.4310753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nested.h 2025-08-14T21:55:05.4313890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn.h 2025-08-14T21:55:05.4317512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim.h 2025-08-14T21:55:05.4320921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\ordered_dict.h 2025-08-14T21:55:05.4324572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python.h 2025-08-14T21:55:05.4327905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize.h 2025-08-14T21:55:05.4331357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\sparse.h 2025-08-14T21:55:05.4334505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\special.h 2025-08-14T21:55:05.4338225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\torch.h 2025-08-14T21:55:05.4341479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\types.h 2025-08-14T21:55:05.4344722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\utils.h 2025-08-14T21:55:05.4348070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\version.h 2025-08-14T21:55:05.4351235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\xpu.h 2025-08-14T21:55:05.4358875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader.h 2025-08-14T21:55:05.4362385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h 2025-08-14T21:55:05.4365731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets.h 2025-08-14T21:55:05.4369089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\example.h 2025-08-14T21:55:05.4372304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\iterator.h 2025-08-14T21:55:05.4381369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers.h 2025-08-14T21:55:05.4384442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms.h 2025-08-14T21:55:05.4387700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\worker_exception.h 2025-08-14T21:55:05.4394618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h 2025-08-14T21:55:05.4397973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h 2025-08-14T21:55:05.4401241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h 2025-08-14T21:55:05.4408167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\base.h 2025-08-14T21:55:05.4411652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h 2025-08-14T21:55:05.4414864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\map.h 2025-08-14T21:55:05.4418243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h 2025-08-14T21:55:05.4421372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h 2025-08-14T21:55:05.4424741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h 2025-08-14T21:55:05.4427975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h 2025-08-14T21:55:05.4441017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h 2025-08-14T21:55:05.4444315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\queue.h 2025-08-14T21:55:05.4447587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h 2025-08-14T21:55:05.4454537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\base.h 2025-08-14T21:55:05.4457938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h 2025-08-14T21:55:05.4461476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h 2025-08-14T21:55:05.4465054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\random.h 2025-08-14T21:55:05.4468436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h 2025-08-14T21:55:05.4477844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h 2025-08-14T21:55:05.4480870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h 2025-08-14T21:55:05.4487537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\base.h 2025-08-14T21:55:05.4490746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h 2025-08-14T21:55:05.4493930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h 2025-08-14T21:55:05.4497049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h 2025-08-14T21:55:05.4500648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h 2025-08-14T21:55:05.4508649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\static.h 2025-08-14T21:55:05.4512007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h 2025-08-14T21:55:05.4518997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h 2025-08-14T21:55:05.4525677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\cloneable.h 2025-08-14T21:55:05.4528954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional.h 2025-08-14T21:55:05.4532136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\init.h 2025-08-14T21:55:05.4535116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\module.h 2025-08-14T21:55:05.4538451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules.h 2025-08-14T21:55:05.4548093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options.h 2025-08-14T21:55:05.4551547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h 2025-08-14T21:55:05.4554927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl.h 2025-08-14T21:55:05.4558403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils.h 2025-08-14T21:55:05.4564993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h 2025-08-14T21:55:05.4568420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h 2025-08-14T21:55:05.4571693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h 2025-08-14T21:55:05.4574904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h 2025-08-14T21:55:05.4583955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h 2025-08-14T21:55:05.4587256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h 2025-08-14T21:55:05.4590489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h 2025-08-14T21:55:05.4593768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h 2025-08-14T21:55:05.4597332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h 2025-08-14T21:55:05.4600681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h 2025-08-14T21:55:05.4604080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h 2025-08-14T21:55:05.4607419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h 2025-08-14T21:55:05.4610539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h 2025-08-14T21:55:05.4613717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h 2025-08-14T21:55:05.4617234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h 2025-08-14T21:55:05.4620681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h 2025-08-14T21:55:05.4628404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h 2025-08-14T21:55:05.4631966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h 2025-08-14T21:55:05.4635382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h 2025-08-14T21:55:05.4657496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\common.h 2025-08-14T21:55:05.4660925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h 2025-08-14T21:55:05.4670460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h 2025-08-14T21:55:05.4673854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h 2025-08-14T21:55:05.4677435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h 2025-08-14T21:55:05.4681910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h 2025-08-14T21:55:05.4685303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h 2025-08-14T21:55:05.4688553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h 2025-08-14T21:55:05.4691889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h 2025-08-14T21:55:05.4695402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h 2025-08-14T21:55:05.4698731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h 2025-08-14T21:55:05.4702195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h 2025-08-14T21:55:05.4705664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h 2025-08-14T21:55:05.4709182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h 2025-08-14T21:55:05.4712759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h 2025-08-14T21:55:05.4716232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h 2025-08-14T21:55:05.4720309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h 2025-08-14T21:55:05.4724221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h 2025-08-14T21:55:05.4728048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h 2025-08-14T21:55:05.4731859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h 2025-08-14T21:55:05.4739156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h 2025-08-14T21:55:05.4742901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h 2025-08-14T21:55:05.4746495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h 2025-08-14T21:55:05.4749932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h 2025-08-14T21:55:05.4759237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h 2025-08-14T21:55:05.4762799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h 2025-08-14T21:55:05.4766006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h 2025-08-14T21:55:05.4769651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h 2025-08-14T21:55:05.4773093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h 2025-08-14T21:55:05.4776432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h 2025-08-14T21:55:05.4785043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\activation.h 2025-08-14T21:55:05.4788347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h 2025-08-14T21:55:05.4791575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h 2025-08-14T21:55:05.4794859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\conv.h 2025-08-14T21:55:05.4798274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\distance.h 2025-08-14T21:55:05.4915748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h 2025-08-14T21:55:05.4919153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h 2025-08-14T21:55:05.4923028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\fold.h 2025-08-14T21:55:05.4926567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h 2025-08-14T21:55:05.4930087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\linear.h 2025-08-14T21:55:05.4933604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\loss.h 2025-08-14T21:55:05.4937209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h 2025-08-14T21:55:05.4940640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\padding.h 2025-08-14T21:55:05.4944311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h 2025-08-14T21:55:05.4948158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h 2025-08-14T21:55:05.4951455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h 2025-08-14T21:55:05.4954894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h 2025-08-14T21:55:05.4958544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h 2025-08-14T21:55:05.4962031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h 2025-08-14T21:55:05.4965609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h 2025-08-14T21:55:05.4969297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\vision.h 2025-08-14T21:55:05.4976626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h 2025-08-14T21:55:05.4983529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h 2025-08-14T21:55:05.4987042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h 2025-08-14T21:55:05.4990365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h 2025-08-14T21:55:05.4998089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adagrad.h 2025-08-14T21:55:05.5001585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adam.h 2025-08-14T21:55:05.5005148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adamw.h 2025-08-14T21:55:05.5008395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h 2025-08-14T21:55:05.5011867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\optimizer.h 2025-08-14T21:55:05.5015684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h 2025-08-14T21:55:05.5145329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\serialize.h 2025-08-14T21:55:05.5148478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\sgd.h 2025-08-14T21:55:05.5155210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h 2025-08-14T21:55:05.5158869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h 2025-08-14T21:55:05.5162438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h 2025-08-14T21:55:05.5175753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python\init.h 2025-08-14T21:55:05.5182854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\archive.h 2025-08-14T21:55:05.5186799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h 2025-08-14T21:55:05.5190216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h 2025-08-14T21:55:05.5193764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\tensor.h 2025-08-14T21:55:05.5210267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\anomaly_mode.h 2025-08-14T21:55:05.5213721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd.h 2025-08-14T21:55:05.5217042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h 2025-08-14T21:55:05.5220683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\cpp_hook.h 2025-08-14T21:55:05.5230663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\custom_function.h 2025-08-14T21:55:05.5233916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\edge.h 2025-08-14T21:55:05.5237246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\engine.h 2025-08-14T21:55:05.5240800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\forward_grad.h 2025-08-14T21:55:05.5244059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function.h 2025-08-14T21:55:05.5247372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\FunctionsManual.h 2025-08-14T21:55:05.5251135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function_hook.h 2025-08-14T21:55:05.5255294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\grad_mode.h 2025-08-14T21:55:05.5258789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\graph_task.h 2025-08-14T21:55:05.5262104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\InferenceMode.h 2025-08-14T21:55:05.5265398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_buffer.h 2025-08-14T21:55:05.5268779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_metadata.h 2025-08-14T21:55:05.5272282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\jit_decomp_interface.h 2025-08-14T21:55:05.5275741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler.h 2025-08-14T21:55:05.5278927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_kineto.h 2025-08-14T21:55:05.5282439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_legacy.h 2025-08-14T21:55:05.5285684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_python.h 2025-08-14T21:55:05.5289211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_anomaly_mode.h 2025-08-14T21:55:05.5298419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_autograd.h 2025-08-14T21:55:05.5301676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_cpp_function.h 2025-08-14T21:55:05.5305184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_engine.h 2025-08-14T21:55:05.5308597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_enum_tag.h 2025-08-14T21:55:05.5312210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_fft_functions.h 2025-08-14T21:55:05.5315874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_function.h 2025-08-14T21:55:05.5355495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_hook.h 2025-08-14T21:55:05.5356311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_legacy_variable.h 2025-08-14T21:55:05.5357014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_linalg_functions.h 2025-08-14T21:55:05.5357738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nested_functions.h 2025-08-14T21:55:05.5358493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nn_functions.h 2025-08-14T21:55:05.5359212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h 2025-08-14T21:55:05.5360076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_sparse_functions.h 2025-08-14T21:55:05.5360835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_special_functions.h 2025-08-14T21:55:05.5361597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_torch_functions.h 2025-08-14T21:55:05.5362266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable.h 2025-08-14T21:55:05.5364424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable_indexing.h 2025-08-14T21:55:05.5368074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\record_function_ops.h 2025-08-14T21:55:05.5371657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable.h 2025-08-14T21:55:05.5375244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable_hooks.h 2025-08-14T21:55:05.5384887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\symbolic.h 2025-08-14T21:55:05.5388190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable.h 2025-08-14T21:55:05.5392696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\VariableTypeUtils.h 2025-08-14T21:55:05.5395264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable_info.h 2025-08-14T21:55:05.5403440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\accumulate_grad.h 2025-08-14T21:55:05.5406998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\basic_ops.h 2025-08-14T21:55:05.5410303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\comm.h 2025-08-14T21:55:05.5413403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\pybind.h 2025-08-14T21:55:05.5422655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\tensor.h 2025-08-14T21:55:05.5426020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\utils.h 2025-08-14T21:55:05.5432983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\Functions.h 2025-08-14T21:55:05.5439900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_functions.h 2025-08-14T21:55:05.5443368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_return_types.h 2025-08-14T21:55:05.5453405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\VariableType.h 2025-08-14T21:55:05.5456888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\variable_factories.h 2025-08-14T21:55:05.5460805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\ViewFuncs.h 2025-08-14T21:55:05.5469239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\error_messages.h 2025-08-14T21:55:05.5472480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h 2025-08-14T21:55:05.5475711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h 2025-08-14T21:55:05.5479022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h 2025-08-14T21:55:05.5487686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\warnings.h 2025-08-14T21:55:05.5490989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\wrap_outputs.h 2025-08-14T21:55:05.5498537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cpu\Module.h 2025-08-14T21:55:05.5505002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\comm.h 2025-08-14T21:55:05.5508212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h 2025-08-14T21:55:05.5511588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\device_set.h 2025-08-14T21:55:05.5514565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Event.h 2025-08-14T21:55:05.5517728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\GdsFile.h 2025-08-14T21:55:05.5527542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\memory_snapshot.h 2025-08-14T21:55:05.5530730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Module.h 2025-08-14T21:55:05.5533723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\nccl.h 2025-08-14T21:55:05.5536726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_comm.h 2025-08-14T21:55:05.5539832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_nccl.h 2025-08-14T21:55:05.5543186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Stream.h 2025-08-14T21:55:05.5546149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\THCP.h 2025-08-14T21:55:05.5549065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\utils.h 2025-08-14T21:55:05.5560016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\autograd.h 2025-08-14T21:55:05.5563273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\python_autograd.h 2025-08-14T21:55:05.5566518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\utils.h 2025-08-14T21:55:05.5574394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\container.h 2025-08-14T21:55:05.5577647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\context.h 2025-08-14T21:55:05.5583852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h 2025-08-14T21:55:05.5596556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h 2025-08-14T21:55:05.5600154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h 2025-08-14T21:55:05.5607601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h 2025-08-14T21:55:05.5611293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h 2025-08-14T21:55:05.5614912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h 2025-08-14T21:55:05.5623362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h 2025-08-14T21:55:05.5626764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h 2025-08-14T21:55:05.5630097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h 2025-08-14T21:55:05.5633620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h 2025-08-14T21:55:05.5637272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h 2025-08-14T21:55:05.5640707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h 2025-08-14T21:55:05.5644762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h 2025-08-14T21:55:05.5652852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backend.hpp 2025-08-14T21:55:05.5656278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backoff.hpp 2025-08-14T21:55:05.5659467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\c10d.h 2025-08-14T21:55:05.5663031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\comm.hpp 2025-08-14T21:55:05.5666230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\debug.h 2025-08-14T21:55:05.5669492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp 2025-08-14T21:55:05.5678573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\error.h 2025-08-14T21:55:05.5681885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\exception.h 2025-08-14T21:55:05.5685616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp 2025-08-14T21:55:05.5688786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FileStore.hpp 2025-08-14T21:55:05.5692358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp 2025-08-14T21:55:05.5696047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp 2025-08-14T21:55:05.5699534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Functional.hpp 2025-08-14T21:55:05.5702997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp 2025-08-14T21:55:05.5706428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp 2025-08-14T21:55:05.5710036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\HashStore.hpp 2025-08-14T21:55:05.5713492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logger.hpp 2025-08-14T21:55:05.5716885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logging.h 2025-08-14T21:55:05.5721598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp 2025-08-14T21:55:05.5725483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp 2025-08-14T21:55:05.5729336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp 2025-08-14T21:55:05.5733112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp 2025-08-14T21:55:05.5736865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp 2025-08-14T21:55:05.5745272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp 2025-08-14T21:55:05.5749354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp 2025-08-14T21:55:05.5753150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp 2025-08-14T21:55:05.5756724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp 2025-08-14T21:55:05.5760651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp 2025-08-14T21:55:05.5764569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp 2025-08-14T21:55:05.5768010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp 2025-08-14T21:55:05.5771549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h 2025-08-14T21:55:05.5775103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp 2025-08-14T21:55:05.5783604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer.hpp 2025-08-14T21:55:05.5787447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp 2025-08-14T21:55:05.5790903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp 2025-08-14T21:55:05.5794296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket.h 2025-08-14T21:55:05.5797677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket_fmt.h 2025-08-14T21:55:05.5801006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Store.hpp 2025-08-14T21:55:05.5804451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp 2025-08-14T21:55:05.5807710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp 2025-08-14T21:55:05.5811066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TraceUtils.h 2025-08-14T21:55:05.5814951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Types.hpp 2025-08-14T21:55:05.5818387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp 2025-08-14T21:55:05.5821967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp 2025-08-14T21:55:05.5839938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp 2025-08-14T21:55:05.5843144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Utils.hpp 2025-08-14T21:55:05.5846577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp 2025-08-14T21:55:05.5849960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Work.hpp 2025-08-14T21:55:05.5857298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp 2025-08-14T21:55:05.5861041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp 2025-08-14T21:55:05.5868410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp 2025-08-14T21:55:05.5871911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp 2025-08-14T21:55:05.5879216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp 2025-08-14T21:55:05.5882480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp 2025-08-14T21:55:05.5886305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp 2025-08-14T21:55:05.5894400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h 2025-08-14T21:55:05.5898565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h 2025-08-14T21:55:05.5902854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h 2025-08-14T21:55:05.5916450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h 2025-08-14T21:55:05.5920007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp 2025-08-14T21:55:05.5923565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp 2025-08-14T21:55:05.5932588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp 2025-08-14T21:55:05.5936262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp 2025-08-14T21:55:05.5939725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp 2025-08-14T21:55:05.5959178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp 2025-08-14T21:55:05.5967339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\agent_utils.h 2025-08-14T21:55:05.5970671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\message.h 2025-08-14T21:55:05.5973972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_call.h 2025-08-14T21:55:05.5977285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_functions.h 2025-08-14T21:55:05.5986024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_remote_call.h 2025-08-14T21:55:05.5989454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_resp.h 2025-08-14T21:55:05.5993077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h 2025-08-14T21:55:05.5996610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\py_rref.h 2025-08-14T21:55:05.6000011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback.h 2025-08-14T21:55:05.6003657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h 2025-08-14T21:55:05.6007049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h 2025-08-14T21:55:05.6010629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc.h 2025-08-14T21:55:05.6013902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_agent.h 2025-08-14T21:55:05.6017745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h 2025-08-14T21:55:05.6021213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_context.h 2025-08-14T21:55:05.6024583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_impl.h 2025-08-14T21:55:05.6028540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_proto.h 2025-08-14T21:55:05.6032431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_call.h 2025-08-14T21:55:05.6036010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_remote_call.h 2025-08-14T21:55:05.6039755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_resp.h 2025-08-14T21:55:05.6049497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h 2025-08-14T21:55:05.6053151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h 2025-08-14T21:55:05.6057032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h 2025-08-14T21:55:05.6060566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\types.h 2025-08-14T21:55:05.6064439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h 2025-08-14T21:55:05.6068430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h 2025-08-14T21:55:05.6072030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\utils.h 2025-08-14T21:55:05.6078937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h 2025-08-14T21:55:05.6086064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h 2025-08-14T21:55:05.6089456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h 2025-08-14T21:55:05.6096778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h 2025-08-14T21:55:05.6100169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\testing.h 2025-08-14T21:55:05.6108297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cache_entry.h 2025-08-14T21:55:05.6111587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\compiled_autograd.h 2025-08-14T21:55:05.6115290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpp_shim.h 2025-08-14T21:55:05.6118614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_defs.h 2025-08-14T21:55:05.6580699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_includes.h 2025-08-14T21:55:05.6584155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\debug_macros.h 2025-08-14T21:55:05.6587543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame.h 2025-08-14T21:55:05.6590884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame_cpp.h 2025-08-14T21:55:05.6594326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\extra_state.h 2025-08-14T21:55:05.6598030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\framelocals_mapping.h 2025-08-14T21:55:05.6601167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\guards.h 2025-08-14T21:55:05.6604359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\init.h 2025-08-14T21:55:05.6607770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\python_compiled_autograd.h 2025-08-14T21:55:05.6611196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\utils.h 2025-08-14T21:55:05.6618425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\example_upgraders.h 2025-08-14T21:55:05.6621720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pt2_archive_constants.h 2025-08-14T21:55:05.6624982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pybind.h 2025-08-14T21:55:05.6628584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\upgrader.h 2025-08-14T21:55:05.6635171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\functorch\init.h 2025-08-14T21:55:05.6642094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\fx\node.h 2025-08-14T21:55:05.6649334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\array_ref_impl.h 2025-08-14T21:55:05.6652615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_prefix.h 2025-08-14T21:55:05.6656402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\inductor_ops.h 2025-08-14T21:55:05.6660284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\static_cuda_launcher.h 2025-08-14T21:55:05.6673372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h 2025-08-14T21:55:05.6677685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h 2025-08-14T21:55:05.6685104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\array_ref.h 2025-08-14T21:55:05.6688317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\common.h 2025-08-14T21:55:05.6691659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cpu.h 2025-08-14T21:55:05.6694891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cuda.h 2025-08-14T21:55:05.6698232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\mps.h 2025-08-14T21:55:05.6707166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\xpu.h 2025-08-14T21:55:05.6714680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h 2025-08-14T21:55:05.6718132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\pybind.h 2025-08-14T21:55:05.6725373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h 2025-08-14T21:55:05.6729212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h 2025-08-14T21:55:05.6732963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h 2025-08-14T21:55:05.6742252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h 2025-08-14T21:55:05.6746764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h 2025-08-14T21:55:05.6750308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\pybind.h 2025-08-14T21:55:05.6758595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h 2025-08-14T21:55:05.6762293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h 2025-08-14T21:55:05.6765634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h 2025-08-14T21:55:05.6775527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\interface.h 2025-08-14T21:55:05.6779247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h 2025-08-14T21:55:05.6782810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model.h 2025-08-14T21:55:05.6786250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h 2025-08-14T21:55:05.6789682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h 2025-08-14T21:55:05.6793187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h 2025-08-14T21:55:05.6796963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h 2025-08-14T21:55:05.6800228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h 2025-08-14T21:55:05.6803544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils.h 2025-08-14T21:55:05.6806862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h 2025-08-14T21:55:05.6810452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h 2025-08-14T21:55:05.6818426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h 2025-08-14T21:55:05.6821810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h 2025-08-14T21:55:05.6825465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h 2025-08-14T21:55:05.6834821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h 2025-08-14T21:55:05.6838249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\utils.h 2025-08-14T21:55:05.6845212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h 2025-08-14T21:55:05.6848289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h 2025-08-14T21:55:05.6851384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h 2025-08-14T21:55:05.6854729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h 2025-08-14T21:55:05.6858024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h 2025-08-14T21:55:05.6861253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h 2025-08-14T21:55:05.6874495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h 2025-08-14T21:55:05.6877783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h 2025-08-14T21:55:05.6881054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h 2025-08-14T21:55:05.6889960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h 2025-08-14T21:55:05.6893389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h 2025-08-14T21:55:05.6901388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h 2025-08-14T21:55:05.6904777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\common.h 2025-08-14T21:55:05.6908089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h 2025-08-14T21:55:05.6911440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h 2025-08-14T21:55:05.6914736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h 2025-08-14T21:55:05.6923357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h 2025-08-14T21:55:05.6930067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h 2025-08-14T21:55:05.6933288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h 2025-08-14T21:55:05.6936548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h 2025-08-14T21:55:05.6939895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h 2025-08-14T21:55:05.6947876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\instruction_counter\Module.h 2025-08-14T21:55:05.6955197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_log.h 2025-08-14T21:55:05.6958562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_opt_limit.h 2025-08-14T21:55:05.6961964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\resource_guard.h 2025-08-14T21:55:05.6968523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\compilation_unit.h 2025-08-14T21:55:05.6972056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\function_impl.h 2025-08-14T21:55:05.6975264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\method.h 2025-08-14T21:55:05.6978448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\module.h 2025-08-14T21:55:05.6981687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\object.h 2025-08-14T21:55:05.7000719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend.h 2025-08-14T21:55:05.7004011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_handler.h 2025-08-14T21:55:05.7007949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_info.h 2025-08-14T21:55:05.7011416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_detail.h 2025-08-14T21:55:05.7021227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_exception.h 2025-08-14T21:55:05.7024716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_init.h 2025-08-14T21:55:05.7028341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_interface.h 2025-08-14T21:55:05.7031714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_preprocess.h 2025-08-14T21:55:05.7035241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_resolver.h 2025-08-14T21:55:05.7045982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h 2025-08-14T21:55:05.7052910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h 2025-08-14T21:55:05.7056468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h 2025-08-14T21:55:05.7059744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h 2025-08-14T21:55:05.7069090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h 2025-08-14T21:55:05.7072673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h 2025-08-14T21:55:05.7081283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h 2025-08-14T21:55:05.7088138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h 2025-08-14T21:55:05.7094733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h 2025-08-14T21:55:05.7101577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h 2025-08-14T21:55:05.7112977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\cuda\interface.h 2025-08-14T21:55:05.7119885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h 2025-08-14T21:55:05.7123222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\codegen.h 2025-08-14T21:55:05.7126597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\compiler.h 2025-08-14T21:55:05.7129946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\executor.h 2025-08-14T21:55:05.7133636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fallback.h 2025-08-14T21:55:05.7137158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h 2025-08-14T21:55:05.7146310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\interface.h 2025-08-14T21:55:05.7149858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h 2025-08-14T21:55:05.7153549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h 2025-08-14T21:55:05.7156799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h 2025-08-14T21:55:05.7160306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h 2025-08-14T21:55:05.7163880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h 2025-08-14T21:55:05.7171584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h 2025-08-14T21:55:05.7174952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h 2025-08-14T21:55:05.7178672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h 2025-08-14T21:55:05.7185283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h 2025-08-14T21:55:05.7188609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h 2025-08-14T21:55:05.7196766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h 2025-08-14T21:55:05.7200397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h 2025-08-14T21:55:05.7203743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h 2025-08-14T21:55:05.7207340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h 2025-08-14T21:55:05.7216254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h 2025-08-14T21:55:05.7219685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\interface.h 2025-08-14T21:55:05.7223210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\kernel.h 2025-08-14T21:55:05.7226737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h 2025-08-14T21:55:05.7230673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h 2025-08-14T21:55:05.7234850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\operator.h 2025-08-14T21:55:05.7238871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h 2025-08-14T21:55:05.7246730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\cuda\cuda.h 2025-08-14T21:55:05.7253726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\builtin_functions.h 2025-08-14T21:55:05.7257089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h 2025-08-14T21:55:05.7260580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\concrete_module_type.h 2025-08-14T21:55:05.7268868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h 2025-08-14T21:55:05.7272345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\edit_distance.h 2025-08-14T21:55:05.7275854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\error_report.h 2025-08-14T21:55:05.7279303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\exit_transforms.h 2025-08-14T21:55:05.7282653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\function_schema_parser.h 2025-08-14T21:55:05.7286031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h 2025-08-14T21:55:05.7289628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\ir_emitter.h 2025-08-14T21:55:05.7293082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\lexer.h 2025-08-14T21:55:05.7296529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\mini_environment.h 2025-08-14T21:55:05.7300079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\name_mangler.h 2025-08-14T21:55:05.7303441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser.h 2025-08-14T21:55:05.7306708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser_constants.h 2025-08-14T21:55:05.7310064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parse_string_literal.h 2025-08-14T21:55:05.7313423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\resolver.h 2025-08-14T21:55:05.7316801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_matching.h 2025-08-14T21:55:05.7320273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_type_parser.h 2025-08-14T21:55:05.7323981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\script_type_parser.h 2025-08-14T21:55:05.7332108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_range.h 2025-08-14T21:55:05.7335963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_ref.h 2025-08-14T21:55:05.7339896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\strtod.h 2025-08-14T21:55:05.7343171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\sugared_value.h 2025-08-14T21:55:05.7346738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tracer.h 2025-08-14T21:55:05.7350012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree.h 2025-08-14T21:55:05.7353282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree_views.h 2025-08-14T21:55:05.7357061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\versioned_symbols.h 2025-08-14T21:55:05.7364908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\alias_analysis.h 2025-08-14T21:55:05.7368388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\attributes.h 2025-08-14T21:55:05.7371786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\constants.h 2025-08-14T21:55:05.7375344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_node_list.h 2025-08-14T21:55:05.7383867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_utils.h 2025-08-14T21:55:05.7386932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir.h 2025-08-14T21:55:05.7390682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\irparser.h 2025-08-14T21:55:05.7393825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir_views.h 2025-08-14T21:55:05.7397112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\named_value.h 2025-08-14T21:55:05.7400442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\node_hashing.h 2025-08-14T21:55:05.7403759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\scope.h 2025-08-14T21:55:05.7407076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\subgraph_matcher.h 2025-08-14T21:55:05.7410405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\type_hashing.h 2025-08-14T21:55:05.7417556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\code.h 2025-08-14T21:55:05.7442524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\debug_info.h 2025-08-14T21:55:05.7445824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\file_format.h 2025-08-14T21:55:05.7449063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h 2025-08-14T21:55:05.7457679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\frame.h 2025-08-14T21:55:05.7460977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\function.h 2025-08-14T21:55:05.7464142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import.h 2025-08-14T21:55:05.7467492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_data.h 2025-08-14T21:55:05.7470893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_export_common.h 2025-08-14T21:55:05.7474234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\interpreter.h 2025-08-14T21:55:05.7477940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\method.h 2025-08-14T21:55:05.7481216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\module.h 2025-08-14T21:55:05.7484424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\observer.h 2025-08-14T21:55:05.7487717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_bytecode.h 2025-08-14T21:55:05.7491063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_operators.h 2025-08-14T21:55:05.7494457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h 2025-08-14T21:55:05.7498076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\profiler_edge.h 2025-08-14T21:55:05.7501989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h 2025-08-14T21:55:05.7505329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\quantization.h 2025-08-14T21:55:05.7508757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h 2025-08-14T21:55:05.7512441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\type_parser.h 2025-08-14T21:55:05.7526069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h 2025-08-14T21:55:05.7529654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport.h 2025-08-14T21:55:05.7533075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h 2025-08-14T21:55:05.7536733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h 2025-08-14T21:55:05.7545492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h 2025-08-14T21:55:05.7552961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h 2025-08-14T21:55:05.7556566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h 2025-08-14T21:55:05.7559955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h 2025-08-14T21:55:05.7569738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h 2025-08-14T21:55:05.7573365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h 2025-08-14T21:55:05.7584253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h 2025-08-14T21:55:05.7585923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h 2025-08-14T21:55:05.7591645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h 2025-08-14T21:55:05.7595132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\context.h 2025-08-14T21:55:05.7598356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\registry.h 2025-08-14T21:55:05.7605536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\export_data.h 2025-08-14T21:55:05.7609014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\random.h 2025-08-14T21:55:05.7612382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\sequential.h 2025-08-14T21:55:05.7619005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h 2025-08-14T21:55:05.7626944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h 2025-08-14T21:55:05.7630451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h 2025-08-14T21:55:05.7633671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\utils.h 2025-08-14T21:55:05.7636995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\version_map.h 2025-08-14T21:55:05.7652029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\add_if_then_else.h 2025-08-14T21:55:05.7655584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\annotate_warns.h 2025-08-14T21:55:05.7658965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\autocast.h 2025-08-14T21:55:05.7662336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\bailout_graph.h 2025-08-14T21:55:05.7671752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\batch_mm.h 2025-08-14T21:55:05.7675481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize.h 2025-08-14T21:55:05.7679072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h 2025-08-14T21:55:05.7682705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\check_strict_fusion.h 2025-08-14T21:55:05.7686557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_profiling.h 2025-08-14T21:55:05.7690173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_undefinedness.h 2025-08-14T21:55:05.7693973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h 2025-08-14T21:55:05.7697291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\concat_opt.h 2025-08-14T21:55:05.7701009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_pooling.h 2025-08-14T21:55:05.7704247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_propagation.h 2025-08-14T21:55:05.7707875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h 2025-08-14T21:55:05.7711319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_functional_graphs.h 2025-08-14T21:55:05.7714741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dead_code_elimination.h 2025-08-14T21:55:05.7718551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\decompose_ops.h 2025-08-14T21:55:05.7722101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\device_type_analysis.h 2025-08-14T21:55:05.7731764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dtype_analysis.h 2025-08-14T21:55:05.7735415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h 2025-08-14T21:55:05.7739265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\erase_number_types.h 2025-08-14T21:55:05.7743306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h 2025-08-14T21:55:05.7747266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_conv_bn.h 2025-08-14T21:55:05.7751231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_linear_bn.h 2025-08-14T21:55:05.7755094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\freeze_module.h 2025-08-14T21:55:05.7758768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h 2025-08-14T21:55:05.7762433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h 2025-08-14T21:55:05.7771277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h 2025-08-14T21:55:05.7774834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h 2025-08-14T21:55:05.7778462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h 2025-08-14T21:55:05.7781898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h 2025-08-14T21:55:05.7785325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h 2025-08-14T21:55:05.7788894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_linear.h 2025-08-14T21:55:05.7792362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_relu.h 2025-08-14T21:55:05.7795756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_fuser.h 2025-08-14T21:55:05.7799216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h 2025-08-14T21:55:05.7807431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\guard_elimination.h 2025-08-14T21:55:05.7810919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h 2025-08-14T21:55:05.7814688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inliner.h 2025-08-14T21:55:05.7818128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h 2025-08-14T21:55:05.7821655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_forked_closures.h 2025-08-14T21:55:05.7825119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_fork_wait.h 2025-08-14T21:55:05.7828525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inplace_check.h 2025-08-14T21:55:05.7831895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\insert_guards.h 2025-08-14T21:55:05.7835568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\integer_value_refinement.h 2025-08-14T21:55:05.7845588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lift_closures.h 2025-08-14T21:55:05.7848864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\liveness.h 2025-08-14T21:55:05.7852167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\loop_unrolling.h 2025-08-14T21:55:05.7855465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_grad_of.h 2025-08-14T21:55:05.7858994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_graph.h 2025-08-14T21:55:05.7862335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_tuples.h 2025-08-14T21:55:05.7865712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\metal_rewrite.h 2025-08-14T21:55:05.7869067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h 2025-08-14T21:55:05.7872562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h 2025-08-14T21:55:05.7876021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\normalize_ops.h 2025-08-14T21:55:05.7890087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h 2025-08-14T21:55:05.7893720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx.h 2025-08-14T21:55:05.7897167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\pass_manager.h 2025-08-14T21:55:05.7900391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole.h 2025-08-14T21:55:05.7903590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h 2025-08-14T21:55:05.7906980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h 2025-08-14T21:55:05.7910455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h 2025-08-14T21:55:05.7914086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h 2025-08-14T21:55:05.7918402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\prepack_folding.h 2025-08-14T21:55:05.7922253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\refine_tuple_types.h 2025-08-14T21:55:05.7925745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_dropout.h 2025-08-14T21:55:05.7934391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_exceptions.h 2025-08-14T21:55:05.7937912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_expands.h 2025-08-14T21:55:05.7941527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h 2025-08-14T21:55:05.7944877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_mutation.h 2025-08-14T21:55:05.7948454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h 2025-08-14T21:55:05.7952031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h 2025-08-14T21:55:05.7955604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h 2025-08-14T21:55:05.7959559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\restore_mutation.h 2025-08-14T21:55:05.7962971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\shape_analysis.h 2025-08-14T21:55:05.7972064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h 2025-08-14T21:55:05.7975552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h 2025-08-14T21:55:05.7978819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h 2025-08-14T21:55:05.7982280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h 2025-08-14T21:55:05.7985879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h 2025-08-14T21:55:05.7989432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h 2025-08-14T21:55:05.7993124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h 2025-08-14T21:55:05.7996751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\value_refinement_utils.h 2025-08-14T21:55:05.8000793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\variadic_ops.h 2025-08-14T21:55:05.8004425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h 2025-08-14T21:55:05.8007888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h 2025-08-14T21:55:05.8015333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h 2025-08-14T21:55:05.8024218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h 2025-08-14T21:55:05.8027544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h 2025-08-14T21:55:05.8031080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_map.h 2025-08-14T21:55:05.8034475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h 2025-08-14T21:55:05.8043210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h 2025-08-14T21:55:05.8046974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h 2025-08-14T21:55:05.8050532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h 2025-08-14T21:55:05.8054034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h 2025-08-14T21:55:05.8057624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h 2025-08-14T21:55:05.8060958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\helper.h 2025-08-14T21:55:05.8064518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h 2025-08-14T21:55:05.8067932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\naming.h 2025-08-14T21:55:05.8071214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h 2025-08-14T21:55:05.8074623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\peephole.h 2025-08-14T21:55:05.8078066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h 2025-08-14T21:55:05.8081810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h 2025-08-14T21:55:05.8085276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h 2025-08-14T21:55:05.8088640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h 2025-08-14T21:55:05.8092093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h 2025-08-14T21:55:05.8095541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h 2025-08-14T21:55:05.8108632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h 2025-08-14T21:55:05.8112102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h 2025-08-14T21:55:05.8115594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h 2025-08-14T21:55:05.8124440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h 2025-08-14T21:55:05.8132802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h 2025-08-14T21:55:05.8136150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\finalize.h 2025-08-14T21:55:05.8139581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h 2025-08-14T21:55:05.8142842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\helper.h 2025-08-14T21:55:05.8151710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h 2025-08-14T21:55:05.8155365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h 2025-08-14T21:55:05.8158959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h 2025-08-14T21:55:05.8162913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h 2025-08-14T21:55:05.8166503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h 2025-08-14T21:55:05.8174239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h 2025-08-14T21:55:05.8177682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\memory_dag.h 2025-08-14T21:55:05.8180996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h 2025-08-14T21:55:05.8191185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\op_registry.h 2025-08-14T21:55:05.8194712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h 2025-08-14T21:55:05.8202655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\init.h 2025-08-14T21:55:05.8206019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\module_python.h 2025-08-14T21:55:05.8209394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind.h 2025-08-14T21:55:05.8212738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind_utils.h 2025-08-14T21:55:05.8216271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_arg_flatten.h 2025-08-14T21:55:05.8225479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_custom_class.h 2025-08-14T21:55:05.8229239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_dict.h 2025-08-14T21:55:05.8233039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ir.h 2025-08-14T21:55:05.8237364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ivalue.h 2025-08-14T21:55:05.8240690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_list.h 2025-08-14T21:55:05.8244226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_sugared_value.h 2025-08-14T21:55:05.8247614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tracer.h 2025-08-14T21:55:05.8251081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tree_views.h 2025-08-14T21:55:05.8254403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\script_init.h 2025-08-14T21:55:05.8258771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h 2025-08-14T21:55:05.8261622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h 2025-08-14T21:55:05.8270100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\argument_spec.h 2025-08-14T21:55:05.8273464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\autodiff.h 2025-08-14T21:55:05.8276941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h 2025-08-14T21:55:05.8280459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\custom_operator.h 2025-08-14T21:55:05.8289125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry.h 2025-08-14T21:55:05.8292532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h 2025-08-14T21:55:05.8296182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\exception_message.h 2025-08-14T21:55:05.8299507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor.h 2025-08-14T21:55:05.8302900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h 2025-08-14T21:55:05.8306089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_iterator.h 2025-08-14T21:55:05.8309320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\instruction.h 2025-08-14T21:55:05.8312605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter.h 2025-08-14T21:55:05.8315906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_exception.h 2025-08-14T21:55:05.8319352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_trace.h 2025-08-14T21:55:05.8322797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\logging.h 2025-08-14T21:55:05.8326226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator.h 2025-08-14T21:55:05.8329634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator_options.h 2025-08-14T21:55:05.8333042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\print_handler.h 2025-08-14T21:55:05.8336459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h 2025-08-14T21:55:05.8339930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_record.h 2025-08-14T21:55:05.8348624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\register_ops_utils.h 2025-08-14T21:55:05.8352214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\script_profile.h 2025-08-14T21:55:05.8355995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h 2025-08-14T21:55:05.8359295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\shape_function_registry.h 2025-08-14T21:55:05.8362503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h 2025-08-14T21:55:05.8365895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h 2025-08-14T21:55:05.8369197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_script.h 2025-08-14T21:55:05.8372582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h 2025-08-14T21:55:05.8376058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h 2025-08-14T21:55:05.8387761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\vararg_functions.h 2025-08-14T21:55:05.8391287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h 2025-08-14T21:55:05.8398498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h 2025-08-14T21:55:05.8402046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h 2025-08-14T21:55:05.8405584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\frame.h 2025-08-14T21:55:05.8409726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h 2025-08-14T21:55:05.8422906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\fusion.h 2025-08-14T21:55:05.8426289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\impl.h 2025-08-14T21:55:05.8429850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\init.h 2025-08-14T21:55:05.8433100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\memory_planner.h 2025-08-14T21:55:05.8436379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ops.h 2025-08-14T21:55:05.8439656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\passes.h 2025-08-14T21:55:05.8447604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h 2025-08-14T21:55:05.8450864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h 2025-08-14T21:55:05.8454219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\static_method.h 2025-08-14T21:55:05.8457645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h 2025-08-14T21:55:05.8466273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h 2025-08-14T21:55:05.8469674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export.h 2025-08-14T21:55:05.8473085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export_bytecode.h 2025-08-14T21:55:05.8481250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h 2025-08-14T21:55:05.8484797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h 2025-08-14T21:55:05.8487936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import.h 2025-08-14T21:55:05.8491365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_constants.h 2025-08-14T21:55:05.8494955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_functions.h 2025-08-14T21:55:05.8498354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_helpers.h 2025-08-14T21:55:05.8519207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_read.h 2025-08-14T21:55:05.8522634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_source.h 2025-08-14T21:55:05.8526219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h 2025-08-14T21:55:05.8530254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\onnx.h 2025-08-14T21:55:05.8533751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickle.h 2025-08-14T21:55:05.8537057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler.h 2025-08-14T21:55:05.8540256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler_helper.h 2025-08-14T21:55:05.8543938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\python_print.h 2025-08-14T21:55:05.8547476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization.h 2025-08-14T21:55:05.8551206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h 2025-08-14T21:55:05.8554736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\storage_context.h 2025-08-14T21:55:05.8563787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h 2025-08-14T21:55:05.8567298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\unpickler.h 2025-08-14T21:55:05.8575489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\analysis.h 2025-08-14T21:55:05.8579084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h 2025-08-14T21:55:05.8582463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h 2025-08-14T21:55:05.8586382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h 2025-08-14T21:55:05.8595433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\codegen.h 2025-08-14T21:55:05.8598927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h 2025-08-14T21:55:05.8602342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h 2025-08-14T21:55:05.8605780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h 2025-08-14T21:55:05.8609521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h 2025-08-14T21:55:05.8612860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\eval.h 2025-08-14T21:55:05.8616452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\exceptions.h 2025-08-14T21:55:05.8619924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\expr.h 2025-08-14T21:55:05.8623343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions.h 2025-08-14T21:55:05.8626933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h 2025-08-14T21:55:05.8630482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h 2025-08-14T21:55:05.8634086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h 2025-08-14T21:55:05.8637804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h 2025-08-14T21:55:05.8641141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\half_support.h 2025-08-14T21:55:05.8644627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h 2025-08-14T21:55:05.8648324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h 2025-08-14T21:55:05.8651767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir.h 2025-08-14T21:55:05.8784126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h 2025-08-14T21:55:05.8787659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h 2025-08-14T21:55:05.8791084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h 2025-08-14T21:55:05.8794769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h 2025-08-14T21:55:05.8798329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h 2025-08-14T21:55:05.8801871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h 2025-08-14T21:55:05.8805177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\kernel.h 2025-08-14T21:55:05.8808678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h 2025-08-14T21:55:05.8812134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h 2025-08-14T21:55:05.8815323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest.h 2025-08-14T21:55:05.8818629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h 2025-08-14T21:55:05.8827096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\lowerings.h 2025-08-14T21:55:05.8830653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h 2025-08-14T21:55:05.8834114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\reduction.h 2025-08-14T21:55:05.8837639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\registerizer.h 2025-08-14T21:55:05.8841562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\stmt.h 2025-08-14T21:55:05.8845101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensor.h 2025-08-14T21:55:05.8848459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h 2025-08-14T21:55:05.8851817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\types.h 2025-08-14T21:55:05.8855140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h 2025-08-14T21:55:05.8858642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h 2025-08-14T21:55:05.8866367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h 2025-08-14T21:55:05.8869746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h 2025-08-14T21:55:05.8872992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h 2025-08-14T21:55:05.8876702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h 2025-08-14T21:55:05.8880080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h 2025-08-14T21:55:05.8888427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h 2025-08-14T21:55:05.8891885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h 2025-08-14T21:55:05.8895527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h 2025-08-14T21:55:05.8898919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h 2025-08-14T21:55:05.8906812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\catch_utils.hpp 2025-08-14T21:55:05.8910149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\file_check.h 2025-08-14T21:55:05.8913490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\hooks_for_testing.h 2025-08-14T21:55:05.8924960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_data.h 2025-08-14T21:55:05.8928470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_device.h 2025-08-14T21:55:05.8931724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_interface.h 2025-08-14T21:55:05.8934904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\lowering_context.h 2025-08-14T21:55:05.8948087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\cache.h 2025-08-14T21:55:05.8951550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\config.h 2025-08-14T21:55:05.8954835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\debug_util.h 2025-08-14T21:55:05.8958261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\dynamic_ir.h 2025-08-14T21:55:05.8961360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\hash.h 2025-08-14T21:55:05.8969896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\helpers.h 2025-08-14T21:55:05.8973121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir.h 2025-08-14T21:55:05.8976293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_builder.h 2025-08-14T21:55:05.8979511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_dump_util.h 2025-08-14T21:55:05.8982690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_metadata.h 2025-08-14T21:55:05.8986107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_util.h 2025-08-14T21:55:05.8989925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h 2025-08-14T21:55:05.8993546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\metrics.h 2025-08-14T21:55:05.8997050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\multi_wait.h 2025-08-14T21:55:05.9000543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\permutation_util.h 2025-08-14T21:55:05.9004033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape.h 2025-08-14T21:55:05.9007281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape_inference.h 2025-08-14T21:55:05.9010989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor.h 2025-08-14T21:55:05.9014516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_impl.h 2025-08-14T21:55:05.9017927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_util.h 2025-08-14T21:55:05.9021516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\thread_pool.h 2025-08-14T21:55:05.9025077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\trie.h 2025-08-14T21:55:05.9028441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\unique.h 2025-08-14T21:55:05.9031740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\util.h 2025-08-14T21:55:05.9044124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h 2025-08-14T21:55:05.9051365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h 2025-08-14T21:55:05.9054738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\utils.h 2025-08-14T21:55:05.9062278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyIr.h 2025-08-14T21:55:05.9067716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h 2025-08-14T21:55:05.9071420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h 2025-08-14T21:55:05.9078311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\init.h 2025-08-14T21:55:05.9081724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\python_util.h 2025-08-14T21:55:05.9095464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\config.h 2025-08-14T21:55:05.9098962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h 2025-08-14T21:55:05.9102656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h 2025-08-14T21:55:05.9106249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h 2025-08-14T21:55:05.9116356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h 2025-08-14T21:55:05.9119816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h 2025-08-14T21:55:05.9123368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h 2025-08-14T21:55:05.9126733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h 2025-08-14T21:55:05.9130246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node.h 2025-08-14T21:55:05.9133683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h 2025-08-14T21:55:05.9140618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h 2025-08-14T21:55:05.9144168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h 2025-08-14T21:55:05.9147597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h 2025-08-14T21:55:05.9156052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\counters.h 2025-08-14T21:55:05.9159495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\events.h 2025-08-14T21:55:05.9163341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\python_init.h 2025-08-14T21:55:05.9170350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mps\Module.h 2025-08-14T21:55:05.9177167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\Module.h 2025-08-14T21:55:05.9184186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h 2025-08-14T21:55:05.9191469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\multiprocessing\init.h 2025-08-14T21:55:05.9198560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\back_compat.h 2025-08-14T21:55:05.9201958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\init.h 2025-08-14T21:55:05.9205209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\onnx.h 2025-08-14T21:55:05.9212651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\api.h 2025-08-14T21:55:05.9216017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\collection.h 2025-08-14T21:55:05.9219758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\combined_traceback.h 2025-08-14T21:55:05.9223216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\containers.h 2025-08-14T21:55:05.9231946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\data_flow.h 2025-08-14T21:55:05.9235494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\events.h 2025-08-14T21:55:05.9238918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_client_interface.h 2025-08-14T21:55:05.9242536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_shim.h 2025-08-14T21:55:05.9246408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf-inl.h 2025-08-14T21:55:05.9249898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf.h 2025-08-14T21:55:05.9253555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\util.h 2025-08-14T21:55:05.9260736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\observer.h 2025-08-14T21:55:05.9264203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\python_tracer.h 2025-08-14T21:55:05.9267540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\vulkan.h 2025-08-14T21:55:05.9274782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\combined_traceback.h 2025-08-14T21:55:05.9278055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\init.h 2025-08-14T21:55:05.9281326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\pybind.h 2025-08-14T21:55:05.9288448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h 2025-08-14T21:55:05.9292039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\itt_observer.h 2025-08-14T21:55:05.9295364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h 2025-08-14T21:55:05.9304251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h 2025-08-14T21:55:05.9311581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\stubs\base.h 2025-08-14T21:55:05.9318588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\action.h 2025-08-14T21:55:05.9321841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\communicate.h 2025-08-14T21:55:05.9325106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\debug_info.h 2025-08-14T21:55:05.9328590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h 2025-08-14T21:55:05.9337823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h 2025-08-14T21:55:05.9341123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h 2025-08-14T21:55:05.9344536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h 2025-08-14T21:55:05.9347886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fde.h 2025-08-14T21:55:05.9351088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\lexer.h 2025-08-14T21:55:05.9354348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\line_number_program.h 2025-08-14T21:55:05.9357715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\mem_file.h 2025-08-14T21:55:05.9360932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\range_table.h 2025-08-14T21:55:05.9364493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\sections.h 2025-08-14T21:55:05.9367719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind.h 2025-08-14T21:55:05.9370934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwinder.h 2025-08-14T21:55:05.9374194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind_error.h 2025-08-14T21:55:05.9387027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\accelerator.h 2025-08-14T21:55:05.9390406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\library.h 2025-08-14T21:55:05.9393588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\ops.h 2025-08-14T21:55:05.9396997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor.h 2025-08-14T21:55:05.9403947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\tensor\python_tensor.h 2025-08-14T21:55:05.9411607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\byte_order.h 2025-08-14T21:55:05.9414922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cpp_stacktraces.h 2025-08-14T21:55:05.9418204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cuda_enabled.h 2025-08-14T21:55:05.9421412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\device_lazy_init.h 2025-08-14T21:55:05.9429873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\disable_torch_function.h 2025-08-14T21:55:05.9433347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\generated_serialization_types.h 2025-08-14T21:55:05.9437493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\init.h 2025-08-14T21:55:05.9440905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\invalid_arguments.h 2025-08-14T21:55:05.9444301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\nested.h 2025-08-14T21:55:05.9447517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\numpy_stub.h 2025-08-14T21:55:05.9450799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\object_ptr.h 2025-08-14T21:55:05.9454119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\out_types.h 2025-08-14T21:55:05.9457371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pybind.h 2025-08-14T21:55:05.9460764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pycfunction_helpers.h 2025-08-14T21:55:05.9464137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pyobject_preservation.h 2025-08-14T21:55:05.9467431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pythoncapi_compat.h 2025-08-14T21:55:05.9471237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_arg_parser.h 2025-08-14T21:55:05.9475224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_compat.h 2025-08-14T21:55:05.9478734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_dispatch.h 2025-08-14T21:55:05.9491448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_numbers.h 2025-08-14T21:55:05.9495440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_raii.h 2025-08-14T21:55:05.9498758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_scalars.h 2025-08-14T21:55:05.9502244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_strings.h 2025-08-14T21:55:05.9505713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_stub.h 2025-08-14T21:55:05.9509384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_symnode.h 2025-08-14T21:55:05.9513026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_torch_function_mode.h 2025-08-14T21:55:05.9516604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_tuples.h 2025-08-14T21:55:05.9520077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\schema_info.h 2025-08-14T21:55:05.9523487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\six.h 2025-08-14T21:55:05.9526826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\structseq.h 2025-08-14T21:55:05.9536582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_apply.h 2025-08-14T21:55:05.9539998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_dtypes.h 2025-08-14T21:55:05.9543366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_flatten.h 2025-08-14T21:55:05.9547023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_layouts.h 2025-08-14T21:55:05.9550415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_list.h 2025-08-14T21:55:05.9554225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_memoryformats.h 2025-08-14T21:55:05.9557747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_new.h 2025-08-14T21:55:05.9561347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_numpy.h 2025-08-14T21:55:05.9564921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_qschemes.h 2025-08-14T21:55:05.9573649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_types.h 2025-08-14T21:55:05.9577436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark-inl.h 2025-08-14T21:55:05.9581103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark.h 2025-08-14T21:55:05.9584435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\torch_dispatch_mode.h 2025-08-14T21:55:05.9587793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\variadic.h 2025-08-14T21:55:05.9591037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\verbose.h 2025-08-14T21:55:05.9599865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Event.h 2025-08-14T21:55:05.9603078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Module.h 2025-08-14T21:55:05.9606289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Stream.h 2025-08-14T21:55:05.9618777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\core\ScalarType.h 2025-08-14T21:55:05.9629097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\intrinsics.h 2025-08-14T21:55:05.9632981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec_half.h 2025-08-14T21:55:05.9640418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h 2025-08-14T21:55:05.9643820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h 2025-08-14T21:55:05.9669097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\cmake_macros.h 2025-08-14T21:55:05.9672738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Export.h 2025-08-14T21:55:05.9676171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Macros.h 2025-08-14T21:55:05.9683541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\BFloat16.h 2025-08-14T21:55:05.9686909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bits.h 2025-08-14T21:55:05.9690260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bit_cast.h 2025-08-14T21:55:05.9693666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\complex.h 2025-08-14T21:55:05.9697044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Exception.h 2025-08-14T21:55:05.9700470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h 2025-08-14T21:55:05.9709212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fn.h 2025-08-14T21:55:05.9712785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h 2025-08-14T21:55:05.9717357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2.h 2025-08-14T21:55:05.9720833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h 2025-08-14T21:55:05.9724272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e8m0fnu.h 2025-08-14T21:55:05.9727693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h 2025-08-14T21:55:05.9731291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\floating_point_utils.h 2025-08-14T21:55:05.9734673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Half.h 2025-08-14T21:55:05.9738160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint32.h 2025-08-14T21:55:05.9741419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint8.h 2025-08-14T21:55:05.9745379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint2x4.h 2025-08-14T21:55:05.9749213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint4x2.h 2025-08-14T21:55:05.9753279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint8.h 2025-08-14T21:55:05.9757141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\shim_utils.h 2025-08-14T21:55:05.9760997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\TypeSafeSignMath.h 2025-08-14T21:55:05.9773683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\annotations.py 2025-08-14T21:55:05.9777064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\frontend.py 2025-08-14T21:55:05.9780654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\generate_bytecode.py 2025-08-14T21:55:05.9784132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\quantized.py 2025-08-14T21:55:05.9792768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\supported_ops.py 2025-08-14T21:55:05.9796200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\unsupported_tensor_ops.py 2025-08-14T21:55:05.9800021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_async.py 2025-08-14T21:55:05.9803039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_await.py 2025-08-14T21:55:05.9806180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_builtins.py 2025-08-14T21:55:05.9810107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_check.py 2025-08-14T21:55:05.9813402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_dataclass_impls.py 2025-08-14T21:55:05.9816665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decompositions.py 2025-08-14T21:55:05.9820014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decomposition_utils.py 2025-08-14T21:55:05.9823224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_freeze.py 2025-08-14T21:55:05.9826497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_fuser.py 2025-08-14T21:55:05.9829520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_ir_utils.py 2025-08-14T21:55:05.9832743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_logging.py 2025-08-14T21:55:05.9836137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_monkeytype_config.py 2025-08-14T21:55:05.9839425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_pickle.py 2025-08-14T21:55:05.9842671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_recursive.py 2025-08-14T21:55:05.9846206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.py 2025-08-14T21:55:05.9849906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.pyi 2025-08-14T21:55:05.9853097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_serialization.py 2025-08-14T21:55:05.9856501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_shape_functions.py 2025-08-14T21:55:05.9865021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_state.py 2025-08-14T21:55:05.9868321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_trace.py 2025-08-14T21:55:05.9871904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__init__.py 2025-08-14T21:55:05.9879222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__init__.py 2025-08-14T21:55:05.9885824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:05.9893049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\_property_propagation.py 2025-08-14T21:55:05.9896492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__init__.py 2025-08-14T21:55:05.9902318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\_property_propagation.cpython-39.pyc 2025-08-14T21:55:05.9905597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:05.9913368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\annotations.cpython-39.pyc 2025-08-14T21:55:05.9917083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\frontend.cpython-39.pyc 2025-08-14T21:55:05.9920514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\generate_bytecode.cpython-39.pyc 2025-08-14T21:55:05.9929805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\quantized.cpython-39.pyc 2025-08-14T21:55:05.9933361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\supported_ops.cpython-39.pyc 2025-08-14T21:55:05.9936631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\unsupported_tensor_ops.cpython-39.pyc 2025-08-14T21:55:05.9939981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_async.cpython-39.pyc 2025-08-14T21:55:05.9943581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_await.cpython-39.pyc 2025-08-14T21:55:05.9947068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_builtins.cpython-39.pyc 2025-08-14T21:55:05.9950879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_check.cpython-39.pyc 2025-08-14T21:55:05.9954240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_dataclass_impls.cpython-39.pyc 2025-08-14T21:55:05.9957671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decompositions.cpython-39.pyc 2025-08-14T21:55:05.9961112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decomposition_utils.cpython-39.pyc 2025-08-14T21:55:05.9964433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_freeze.cpython-39.pyc 2025-08-14T21:55:05.9967985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_fuser.cpython-39.pyc 2025-08-14T21:55:05.9971359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_ir_utils.cpython-39.pyc 2025-08-14T21:55:05.9974769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_logging.cpython-39.pyc 2025-08-14T21:55:05.9983883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_monkeytype_config.cpython-39.pyc 2025-08-14T21:55:05.9987151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_pickle.cpython-39.pyc 2025-08-14T21:55:05.9990594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_recursive.cpython-39.pyc 2025-08-14T21:55:05.9994039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_script.cpython-39.pyc 2025-08-14T21:55:05.9997733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_serialization.cpython-39.pyc 2025-08-14T21:55:06.0001357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_shape_functions.cpython-39.pyc 2025-08-14T21:55:06.0004886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_state.cpython-39.pyc 2025-08-14T21:55:06.0008311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_trace.cpython-39.pyc 2025-08-14T21:55:06.0017072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.0025247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.dll 2025-08-14T21:55:06.0029715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.lib 2025-08-14T21:55:06.0033311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.dll 2025-08-14T21:55:06.0042834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.lib 2025-08-14T21:55:06.0046190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.dll 2025-08-14T21:55:06.0055046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.lib 2025-08-14T21:55:06.0062314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\cpuinfo.lib 2025-08-14T21:55:06.0065983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\dnnl.lib 2025-08-14T21:55:06.3490309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fmt.lib 2025-08-14T21:55:06.3500033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.dll 2025-08-14T21:55:06.3504653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.lib 2025-08-14T21:55:06.3508501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\kineto.lib 2025-08-14T21:55:06.3620128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libittnotify.lib 2025-08-14T21:55:06.3624630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf-lite.lib 2025-08-14T21:55:06.3652969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf.lib 2025-08-14T21:55:06.3844851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotoc.lib 2025-08-14T21:55:06.4040156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\microkernels-prod.lib 2025-08-14T21:55:06.4056076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\pthreadpool.lib 2025-08-14T21:55:06.4060344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.dll 2025-08-14T21:55:06.4063667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.lib 2025-08-14T21:55:06.4067158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\sleef.lib 2025-08-14T21:55:06.4116974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.dll 2025-08-14T21:55:06.4120243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.lib 2025-08-14T21:55:06.4123782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.dll 2025-08-14T21:55:06.4135411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.lib 2025-08-14T21:55:06.4138923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.dll 2025-08-14T21:55:06.5435947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.lib 2025-08-14T21:55:06.5584790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_global_deps.dll 2025-08-14T21:55:06.5588472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.dll 2025-08-14T21:55:06.5675411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.lib 2025-08-14T21:55:06.5680527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\XNNPACK.lib 2025-08-14T21:55:06.5697124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\_C.lib 2025-08-14T21:55:06.5704494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\alloc_info.h 2025-08-14T21:55:06.5707817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\err.h 2025-08-14T21:55:06.5711119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\libshm.h 2025-08-14T21:55:06.5714310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\socket.h 2025-08-14T21:55:06.5721371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm_windows\libshm.h 2025-08-14T21:55:06.5729164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__init__.py 2025-08-14T21:55:06.5736311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.5744429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_docs.py 2025-08-14T21:55:06.5747824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_ops.py 2025-08-14T21:55:06.5751264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__init__.py 2025-08-14T21:55:06.5758767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\binary.py 2025-08-14T21:55:06.5762188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\core.py 2025-08-14T21:55:06.5765588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\creation.py 2025-08-14T21:55:06.5768833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\passthrough.py 2025-08-14T21:55:06.5772239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\reductions.py 2025-08-14T21:55:06.6641908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\unary.py 2025-08-14T21:55:06.6644794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\_ops_refs.py 2025-08-14T21:55:06.6648270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__init__.py 2025-08-14T21:55:06.6655507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\binary.cpython-39.pyc 2025-08-14T21:55:06.6659109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\core.cpython-39.pyc 2025-08-14T21:55:06.6662529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\creation.cpython-39.pyc 2025-08-14T21:55:06.7658561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\passthrough.cpython-39.pyc 2025-08-14T21:55:06.7662097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\reductions.cpython-39.pyc 2025-08-14T21:55:06.7665790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\unary.cpython-39.pyc 2025-08-14T21:55:06.7669053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\_ops_refs.cpython-39.pyc 2025-08-14T21:55:06.7672630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7686154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_docs.cpython-39.pyc 2025-08-14T21:55:06.7690088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_ops.cpython-39.pyc 2025-08-14T21:55:06.7693718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7706931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__init__.py 2025-08-14T21:55:06.7713647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7720867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\event.py 2025-08-14T21:55:06.7724247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\profiler.py 2025-08-14T21:55:06.7727462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__init__.py 2025-08-14T21:55:06.7734201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\event.cpython-39.pyc 2025-08-14T21:55:06.7737687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:55:06.7741055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7754110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\memory.py 2025-08-14T21:55:06.7757436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\_utils.py 2025-08-14T21:55:06.7760761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__init__.py 2025-08-14T21:55:06.7768061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\memory.cpython-39.pyc 2025-08-14T21:55:06.7771540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:06.7774862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7788823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\pool.py 2025-08-14T21:55:06.7792196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\queue.py 2025-08-14T21:55:06.7795744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\reductions.py 2025-08-14T21:55:06.7799182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\spawn.py 2025-08-14T21:55:06.7802379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\_atfork.py 2025-08-14T21:55:06.7811084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__init__.py 2025-08-14T21:55:06.7818036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\pool.cpython-39.pyc 2025-08-14T21:55:06.7821405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\queue.cpython-39.pyc 2025-08-14T21:55:06.7824703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\reductions.cpython-39.pyc 2025-08-14T21:55:06.7833199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\spawn.cpython-39.pyc 2025-08-14T21:55:06.7836592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\_atfork.cpython-39.pyc 2025-08-14T21:55:06.7839950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7848070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__init__.py 2025-08-14T21:55:06.7854542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_int.py 2025-08-14T21:55:06.7857866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_tensor.py 2025-08-14T21:55:06.7861251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\ops.py 2025-08-14T21:55:06.7864898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\sdpa.py 2025-08-14T21:55:06.7873613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__init__.py 2025-08-14T21:55:06.7879861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_int.cpython-39.pyc 2025-08-14T21:55:06.7883203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_tensor.cpython-39.pyc 2025-08-14T21:55:06.7886557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\ops.cpython-39.pyc 2025-08-14T21:55:06.7895749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\sdpa.cpython-39.pyc 2025-08-14T21:55:06.7899169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7908549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.7917161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\common_types.py 2025-08-14T21:55:06.7920630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\cpp.py 2025-08-14T21:55:06.7923917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.py 2025-08-14T21:55:06.7928779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.pyi 2025-08-14T21:55:06.7937625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\grad.py 2025-08-14T21:55:06.7941185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\init.py 2025-08-14T21:55:06.7945699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.py 2025-08-14T21:55:06.7949423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.pyi 2025-08-14T21:55:06.7952956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\_reduction.py 2025-08-14T21:55:06.7956531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__init__.py 2025-08-14T21:55:06.7963257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\bias.py 2025-08-14T21:55:06.7966803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\flex_attention.py 2025-08-14T21:55:06.7970304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\_utils.py 2025-08-14T21:55:06.7973595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__init__.py 2025-08-14T21:55:06.7985874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\_paged_attention.py 2025-08-14T21:55:06.7989192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__init__.py 2025-08-14T21:55:06.7996132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\_paged_attention.cpython-39.pyc 2025-08-14T21:55:06.7999598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8007223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\bias.cpython-39.pyc 2025-08-14T21:55:06.8010757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:55:06.8014474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:06.8023386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8030771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\thnn.py 2025-08-14T21:55:06.8034005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__init__.py 2025-08-14T21:55:06.8040053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\thnn.cpython-39.pyc 2025-08-14T21:55:06.8043416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8051483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__init__.py 2025-08-14T21:55:06.8058110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\fused.py 2025-08-14T21:55:06.8061362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__init__.py 2025-08-14T21:55:06.8068129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-14T21:55:06.8072102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8079784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__init__.py 2025-08-14T21:55:06.8086278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\conv_fused.py 2025-08-14T21:55:06.8089623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_fused.py 2025-08-14T21:55:06.8108242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_relu.py 2025-08-14T21:55:06.8111474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__init__.py 2025-08-14T21:55:06.8123597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-14T21:55:06.8127031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-14T21:55:06.8130608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:55:06.8139561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8146826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8155157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__init__.py 2025-08-14T21:55:06.8162595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-14T21:55:06.8169186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-14T21:55:06.8172506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-14T21:55:06.8179197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:55:06.8182484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8189600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8197231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-14T21:55:06.8200624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-14T21:55:06.8203877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-14T21:55:06.8207115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__init__.py 2025-08-14T21:55:06.8219299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-14T21:55:06.8222830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-14T21:55:06.8226232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:55:06.8234489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8241696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8254948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8262603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\activation.py 2025-08-14T21:55:06.8266088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\adaptive.py 2025-08-14T21:55:06.8269248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\batchnorm.py 2025-08-14T21:55:06.8272414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\channelshuffle.py 2025-08-14T21:55:06.8280987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\container.py 2025-08-14T21:55:06.8284406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\conv.py 2025-08-14T21:55:06.8287747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\distance.py 2025-08-14T21:55:06.8290941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\dropout.py 2025-08-14T21:55:06.8294107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\flatten.py 2025-08-14T21:55:06.8297161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\fold.py 2025-08-14T21:55:06.8300383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\instancenorm.py 2025-08-14T21:55:06.8303595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\lazy.py 2025-08-14T21:55:06.8307045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\linear.py 2025-08-14T21:55:06.8310447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\loss.py 2025-08-14T21:55:06.8313988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\module.py 2025-08-14T21:55:06.8317850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\normalization.py 2025-08-14T21:55:06.8321212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\padding.py 2025-08-14T21:55:06.8324500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pixelshuffle.py 2025-08-14T21:55:06.8328278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pooling.py 2025-08-14T21:55:06.8331655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\rnn.py 2025-08-14T21:55:06.8335138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\sparse.py 2025-08-14T21:55:06.8338394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\transformer.py 2025-08-14T21:55:06.8341833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\upsampling.py 2025-08-14T21:55:06.8345224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\utils.py 2025-08-14T21:55:06.8348695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\_functions.py 2025-08-14T21:55:06.8352145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__init__.py 2025-08-14T21:55:06.8359773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:55:06.8363381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\adaptive.cpython-39.pyc 2025-08-14T21:55:06.8366751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:55:06.8375194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\channelshuffle.cpython-39.pyc 2025-08-14T21:55:06.8378786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\container.cpython-39.pyc 2025-08-14T21:55:06.8382341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:55:06.8386018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\distance.cpython-39.pyc 2025-08-14T21:55:06.8389394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:55:06.8392699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\flatten.cpython-39.pyc 2025-08-14T21:55:06.8396143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\fold.cpython-39.pyc 2025-08-14T21:55:06.8399655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\instancenorm.cpython-39.pyc 2025-08-14T21:55:06.8403364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\lazy.cpython-39.pyc 2025-08-14T21:55:06.8407419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:55:06.8411301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\loss.cpython-39.pyc 2025-08-14T21:55:06.8415112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\module.cpython-39.pyc 2025-08-14T21:55:06.8419546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:55:06.8423507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\padding.cpython-39.pyc 2025-08-14T21:55:06.8433696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pixelshuffle.cpython-39.pyc 2025-08-14T21:55:06.8437205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pooling.cpython-39.pyc 2025-08-14T21:55:06.8441481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:55:06.8445773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:55:06.8449725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\transformer.cpython-39.pyc 2025-08-14T21:55:06.8453657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\upsampling.cpython-39.pyc 2025-08-14T21:55:06.8457072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:06.8460641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\_functions.cpython-39.pyc 2025-08-14T21:55:06.8464051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8620019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\comm.py 2025-08-14T21:55:06.8623007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\data_parallel.py 2025-08-14T21:55:06.8626574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\distributed.py 2025-08-14T21:55:06.8630861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\parallel_apply.py 2025-08-14T21:55:06.8639432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\replicate.py 2025-08-14T21:55:06.8642711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\scatter_gather.py 2025-08-14T21:55:06.8645937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\_functions.py 2025-08-14T21:55:06.8649114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__init__.py 2025-08-14T21:55:06.8656166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\comm.cpython-39.pyc 2025-08-14T21:55:06.8659551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\data_parallel.cpython-39.pyc 2025-08-14T21:55:06.8663024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:55:06.8671892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\parallel_apply.cpython-39.pyc 2025-08-14T21:55:06.8675415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\replicate.cpython-39.pyc 2025-08-14T21:55:06.8678790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\scatter_gather.cpython-39.pyc 2025-08-14T21:55:06.8682146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\_functions.cpython-39.pyc 2025-08-14T21:55:06.8686243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8694477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__init__.py 2025-08-14T21:55:06.8701160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__init__.py 2025-08-14T21:55:06.8707433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\linear.py 2025-08-14T21:55:06.8710601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__init__.py 2025-08-14T21:55:06.8717421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:55:06.8720848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8728097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.8735423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\conv.py 2025-08-14T21:55:06.8738652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\embedding_ops.py 2025-08-14T21:55:06.8741829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\linear.py 2025-08-14T21:55:06.8745051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__init__.py 2025-08-14T21:55:06.8756944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:55:06.8760369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:55:06.8763783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:55:06.9268385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9275886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9295976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__init__.py 2025-08-14T21:55:06.9307215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\activation.py 2025-08-14T21:55:06.9310849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\rnn.py 2025-08-14T21:55:06.9314831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__init__.py 2025-08-14T21:55:06.9331788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:55:06.9335517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:55:06.9339337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9468228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9476433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\functional.py 2025-08-14T21:55:06.9479808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__init__.py 2025-08-14T21:55:06.9487240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__init__.py 2025-08-14T21:55:06.9493631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\conv.py 2025-08-14T21:55:06.9497185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\linear.py 2025-08-14T21:55:06.9500342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\rnn.py 2025-08-14T21:55:06.9503766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__init__.py 2025-08-14T21:55:06.9510610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:55:06.9514080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:55:06.9517636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:55:06.9526568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9534879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9546749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\activation.py 2025-08-14T21:55:06.9550145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\batchnorm.py 2025-08-14T21:55:06.9553387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\conv.py 2025-08-14T21:55:06.9556856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\dropout.py 2025-08-14T21:55:06.9560242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\embedding_ops.py 2025-08-14T21:55:06.9568968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\functional_modules.py 2025-08-14T21:55:06.9572346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\linear.py 2025-08-14T21:55:06.9575758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\normalization.py 2025-08-14T21:55:06.9579295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\rnn.py 2025-08-14T21:55:06.9582656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\utils.py 2025-08-14T21:55:06.9585748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__init__.py 2025-08-14T21:55:06.9592867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:55:06.9596521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:55:06.9600024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:55:06.9608421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:55:06.9612079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:55:06.9615560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-14T21:55:06.9619084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:55:06.9622662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:55:06.9626055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:55:06.9629486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:06.9632874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9646697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__init__.py 2025-08-14T21:55:06.9653246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\conv.py 2025-08-14T21:55:06.9656527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\linear.py 2025-08-14T21:55:06.9659857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\rnn.py 2025-08-14T21:55:06.9663137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\sparse.py 2025-08-14T21:55:06.9666318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\utils.py 2025-08-14T21:55:06.9669624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__init__.py 2025-08-14T21:55:06.9682178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:55:06.9685638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:55:06.9689512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:55:06.9698473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:55:06.9702417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:06.9705923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9713704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9721879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-14T21:55:06.9725246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9733318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\clip_grad.py 2025-08-14T21:55:06.9736636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\convert_parameters.py 2025-08-14T21:55:06.9739931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\fusion.py 2025-08-14T21:55:06.9743230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\init.py 2025-08-14T21:55:06.9746560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\memory_format.py 2025-08-14T21:55:06.9755042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrizations.py 2025-08-14T21:55:06.9758464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrize.py 2025-08-14T21:55:06.9761895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\prune.py 2025-08-14T21:55:06.9765294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\rnn.py 2025-08-14T21:55:06.9768753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\spectral_norm.py 2025-08-14T21:55:06.9772118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\stateless.py 2025-08-14T21:55:06.9775444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\weight_norm.py 2025-08-14T21:55:06.9778971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_deprecation_utils.py 2025-08-14T21:55:06.9782608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_named_member_accessor.py 2025-08-14T21:55:06.9786075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_per_sample_grad.py 2025-08-14T21:55:06.9789646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__init__.py 2025-08-14T21:55:06.9796780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_expanded_weights.py 2025-08-14T21:55:06.9800160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_utils.py 2025-08-14T21:55:06.9803564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py 2025-08-14T21:55:06.9811848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_impl.py 2025-08-14T21:55:06.9815357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_utils.py 2025-08-14T21:55:06.9818868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py 2025-08-14T21:55:06.9822351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py 2025-08-14T21:55:06.9825701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py 2025-08-14T21:55:06.9829047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\linear_expanded_weights.py 2025-08-14T21:55:06.9832344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__init__.py 2025-08-14T21:55:06.9839735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_expanded_weights.cpython-39.pyc 2025-08-14T21:55:06.9843138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_utils.cpython-39.pyc 2025-08-14T21:55:06.9846688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\embedding_expanded_weights.cpython-39.pyc 2025-08-14T21:55:06.9855172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_impl.cpython-39.pyc 2025-08-14T21:55:06.9858988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_utils.cpython-39.pyc 2025-08-14T21:55:06.9862666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\group_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:55:06.9866518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\instance_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:55:06.9869858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\layer_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:55:06.9873591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\linear_expanded_weights.cpython-39.pyc 2025-08-14T21:55:06.9877483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9885228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\clip_grad.cpython-39.pyc 2025-08-14T21:55:06.9888407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\convert_parameters.cpython-39.pyc 2025-08-14T21:55:06.9892387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\fusion.cpython-39.pyc 2025-08-14T21:55:06.9901090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\init.cpython-39.pyc 2025-08-14T21:55:06.9904673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\memory_format.cpython-39.pyc 2025-08-14T21:55:06.9908074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrizations.cpython-39.pyc 2025-08-14T21:55:06.9911532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrize.cpython-39.pyc 2025-08-14T21:55:06.9915015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\prune.cpython-39.pyc 2025-08-14T21:55:06.9918650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:55:06.9922270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\spectral_norm.cpython-39.pyc 2025-08-14T21:55:06.9925577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\stateless.cpython-39.pyc 2025-08-14T21:55:06.9946025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\weight_norm.cpython-39.pyc 2025-08-14T21:55:06.9949395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_deprecation_utils.cpython-39.pyc 2025-08-14T21:55:06.9952879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_named_member_accessor.cpython-39.pyc 2025-08-14T21:55:06.9956357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_per_sample_grad.cpython-39.pyc 2025-08-14T21:55:06.9959762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:06.9968204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\common_types.cpython-39.pyc 2025-08-14T21:55:06.9971656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\cpp.cpython-39.pyc 2025-08-14T21:55:06.9975033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\functional.cpython-39.pyc 2025-08-14T21:55:06.9984951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\grad.cpython-39.pyc 2025-08-14T21:55:06.9988288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\init.cpython-39.pyc 2025-08-14T21:55:06.9991723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\parameter.cpython-39.pyc 2025-08-14T21:55:06.9995458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\_reduction.cpython-39.pyc 2025-08-14T21:55:06.9998873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0018032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\binding.py 2025-08-14T21:55:07.0018632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__init__.py 2025-08-14T21:55:07.0019211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\binding.cpython-39.pyc 2025-08-14T21:55:07.0019822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0028966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\errors.py 2025-08-14T21:55:07.0032149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\operators.py 2025-08-14T21:55:07.0035693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_helper.py 2025-08-14T21:55:07.0039467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset10.py 2025-08-14T21:55:07.0048347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset11.py 2025-08-14T21:55:07.0052149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset12.py 2025-08-14T21:55:07.0055513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset13.py 2025-08-14T21:55:07.0059015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset14.py 2025-08-14T21:55:07.0062622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset15.py 2025-08-14T21:55:07.0066092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset16.py 2025-08-14T21:55:07.0069491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset17.py 2025-08-14T21:55:07.0072816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset18.py 2025-08-14T21:55:07.0076294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset19.py 2025-08-14T21:55:07.0080228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset20.py 2025-08-14T21:55:07.0083674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset7.py 2025-08-14T21:55:07.0087238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset8.py 2025-08-14T21:55:07.0090669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset9.py 2025-08-14T21:55:07.0095294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\utils.py 2025-08-14T21:55:07.0099005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\verification.py 2025-08-14T21:55:07.0102692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_constants.py 2025-08-14T21:55:07.0111181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_experimental.py 2025-08-14T21:55:07.0114552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_flags.py 2025-08-14T21:55:07.0117872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_globals.py 2025-08-14T21:55:07.0121211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_onnx_supported_ops.py 2025-08-14T21:55:07.0124590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_type_utils.py 2025-08-14T21:55:07.0128054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__init__.py 2025-08-14T21:55:07.0136179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_dtype_mappings.py 2025-08-14T21:55:07.0139485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_impl.py 2025-08-14T21:55:07.0142788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_symbolic_impl.py 2025-08-14T21:55:07.0146023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__init__.py 2025-08-14T21:55:07.0158919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_dtype_mappings.cpython-39.pyc 2025-08-14T21:55:07.0162350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_impl.cpython-39.pyc 2025-08-14T21:55:07.0165692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_symbolic_impl.cpython-39.pyc 2025-08-14T21:55:07.0173983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0182478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\jit_utils.py 2025-08-14T21:55:07.0186399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\onnx_proto_utils.py 2025-08-14T21:55:07.0189692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\registration.py 2025-08-14T21:55:07.0198501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_exporter_legacy.py 2025-08-14T21:55:07.0201895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_lazy_import.py 2025-08-14T21:55:07.0205108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__init__.py 2025-08-14T21:55:07.0211915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_analysis.py 2025-08-14T21:55:07.0215200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_building.py 2025-08-14T21:55:07.0218544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_capture_strategies.py 2025-08-14T21:55:07.0221861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_compat.py 2025-08-14T21:55:07.0230056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_constants.py 2025-08-14T21:55:07.0233375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_core.py 2025-08-14T21:55:07.0236939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_decomp.py 2025-08-14T21:55:07.0240356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dispatching.py 2025-08-14T21:55:07.0243579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dynamic_shapes.py 2025-08-14T21:55:07.0247000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_errors.py 2025-08-14T21:55:07.0250196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_flags.py 2025-08-14T21:55:07.0253372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_fx_passes.py 2025-08-14T21:55:07.0256723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_ir_passes.py 2025-08-14T21:55:07.0259934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_isolated.py 2025-08-14T21:55:07.0263362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_onnx_program.py 2025-08-14T21:55:07.0267335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_registration.py 2025-08-14T21:55:07.0270725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_reporting.py 2025-08-14T21:55:07.0274072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_schemas.py 2025-08-14T21:55:07.0277712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_tensors.py 2025-08-14T21:55:07.0281616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_testing.py 2025-08-14T21:55:07.0284915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_type_casting.py 2025-08-14T21:55:07.0288352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_verification.py 2025-08-14T21:55:07.0291735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__init__.py 2025-08-14T21:55:07.0303624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py 2025-08-14T21:55:07.0307081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py 2025-08-14T21:55:07.0310476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__init__.py 2025-08-14T21:55:07.0322466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\core.py 2025-08-14T21:55:07.0325764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\hop.py 2025-08-14T21:55:07.0329483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\nn.py 2025-08-14T21:55:07.0332835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py 2025-08-14T21:55:07.0335997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symops.py 2025-08-14T21:55:07.0339355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py 2025-08-14T21:55:07.0351293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\core.cpython-39.pyc 2025-08-14T21:55:07.0354856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\hop.cpython-39.pyc 2025-08-14T21:55:07.0358949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\nn.cpython-39.pyc 2025-08-14T21:55:07.0367498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symbolic.cpython-39.pyc 2025-08-14T21:55:07.0371031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symops.cpython-39.pyc 2025-08-14T21:55:07.0374513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0382714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_tensor_typing.cpython-39.pyc 2025-08-14T21:55:07.0386389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_torchlib_registry.cpython-39.pyc 2025-08-14T21:55:07.0389707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0402975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_analysis.cpython-39.pyc 2025-08-14T21:55:07.0406295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_building.cpython-39.pyc 2025-08-14T21:55:07.0409684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_capture_strategies.cpython-39.pyc 2025-08-14T21:55:07.0418386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_compat.cpython-39.pyc 2025-08-14T21:55:07.0421686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_constants.cpython-39.pyc 2025-08-14T21:55:07.0425022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_core.cpython-39.pyc 2025-08-14T21:55:07.0428800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_decomp.cpython-39.pyc 2025-08-14T21:55:07.0432231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dispatching.cpython-39.pyc 2025-08-14T21:55:07.0435695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dynamic_shapes.cpython-39.pyc 2025-08-14T21:55:07.0439088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_errors.cpython-39.pyc 2025-08-14T21:55:07.0442535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_flags.cpython-39.pyc 2025-08-14T21:55:07.0445886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_fx_passes.cpython-39.pyc 2025-08-14T21:55:07.0449280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_ir_passes.cpython-39.pyc 2025-08-14T21:55:07.0452839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_isolated.cpython-39.pyc 2025-08-14T21:55:07.0456248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_onnx_program.cpython-39.pyc 2025-08-14T21:55:07.0460584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_registration.cpython-39.pyc 2025-08-14T21:55:07.0464456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_reporting.cpython-39.pyc 2025-08-14T21:55:07.0473196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_schemas.cpython-39.pyc 2025-08-14T21:55:07.0476688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_tensors.cpython-39.pyc 2025-08-14T21:55:07.0480077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_testing.cpython-39.pyc 2025-08-14T21:55:07.0483664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_type_casting.cpython-39.pyc 2025-08-14T21:55:07.0487128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_verification.cpython-39.pyc 2025-08-14T21:55:07.0490492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0499379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\patcher.py 2025-08-14T21:55:07.0502570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\serialization.py 2025-08-14T21:55:07.0505996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\type_utils.py 2025-08-14T21:55:07.0509212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\_pass.py 2025-08-14T21:55:07.0512319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__init__.py 2025-08-14T21:55:07.0525094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\type_promotion.py 2025-08-14T21:55:07.0528842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\_utils.py 2025-08-14T21:55:07.0532119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__init__.py 2025-08-14T21:55:07.0538775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\type_promotion.cpython-39.pyc 2025-08-14T21:55:07.0542280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:07.0545624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0558299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\patcher.cpython-39.pyc 2025-08-14T21:55:07.0561756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:55:07.0565024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\type_utils.cpython-39.pyc 2025-08-14T21:55:07.0573759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\_pass.cpython-39.pyc 2025-08-14T21:55:07.0577065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0590735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-14T21:55:07.0594498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\onnx_proto_utils.cpython-39.pyc 2025-08-14T21:55:07.0598096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\registration.cpython-39.pyc 2025-08-14T21:55:07.0607070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_exporter_legacy.cpython-39.pyc 2025-08-14T21:55:07.0610587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_lazy_import.cpython-39.pyc 2025-08-14T21:55:07.0614078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0623738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\errors.cpython-39.pyc 2025-08-14T21:55:07.0627466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\operators.cpython-39.pyc 2025-08-14T21:55:07.0630925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_helper.cpython-39.pyc 2025-08-14T21:55:07.0640250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset10.cpython-39.pyc 2025-08-14T21:55:07.0643722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset11.cpython-39.pyc 2025-08-14T21:55:07.0647190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset12.cpython-39.pyc 2025-08-14T21:55:07.0650738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset13.cpython-39.pyc 2025-08-14T21:55:07.0654540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset14.cpython-39.pyc 2025-08-14T21:55:07.0658176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset15.cpython-39.pyc 2025-08-14T21:55:07.0661629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset16.cpython-39.pyc 2025-08-14T21:55:07.0665107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset17.cpython-39.pyc 2025-08-14T21:55:07.0668572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset18.cpython-39.pyc 2025-08-14T21:55:07.0672516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset19.cpython-39.pyc 2025-08-14T21:55:07.0676203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset20.cpython-39.pyc 2025-08-14T21:55:07.0679909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset7.cpython-39.pyc 2025-08-14T21:55:07.0683543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset8.cpython-39.pyc 2025-08-14T21:55:07.0694746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset9.cpython-39.pyc 2025-08-14T21:55:07.0699328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.0702968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\verification.cpython-39.pyc 2025-08-14T21:55:07.0706510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_constants.cpython-39.pyc 2025-08-14T21:55:07.0710022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_experimental.cpython-39.pyc 2025-08-14T21:55:07.0713659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_flags.cpython-39.pyc 2025-08-14T21:55:07.0717304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_globals.cpython-39.pyc 2025-08-14T21:55:07.0720894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_onnx_supported_ops.cpython-39.pyc 2025-08-14T21:55:07.0724516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_type_utils.cpython-39.pyc 2025-08-14T21:55:07.0728060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0745405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adadelta.py 2025-08-14T21:55:07.0748963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adagrad.py 2025-08-14T21:55:07.0752777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adam.py 2025-08-14T21:55:07.0755992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamax.py 2025-08-14T21:55:07.0759569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamw.py 2025-08-14T21:55:07.0762495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\asgd.py 2025-08-14T21:55:07.0766006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lbfgs.py 2025-08-14T21:55:07.0774483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lr_scheduler.py 2025-08-14T21:55:07.0778372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\nadam.py 2025-08-14T21:55:07.0781733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\optimizer.py 2025-08-14T21:55:07.0785159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\radam.py 2025-08-14T21:55:07.0788505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rmsprop.py 2025-08-14T21:55:07.0791900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rprop.py 2025-08-14T21:55:07.0795484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sgd.py 2025-08-14T21:55:07.0798675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sparse_adam.py 2025-08-14T21:55:07.0801949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\swa_utils.py 2025-08-14T21:55:07.0805356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_adafactor.py 2025-08-14T21:55:07.0808713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_functional.py 2025-08-14T21:55:07.0812478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__init__.py 2025-08-14T21:55:07.0820762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.py 2025-08-14T21:55:07.0824520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.pyi 2025-08-14T21:55:07.0832494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0841190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adadelta.cpython-39.pyc 2025-08-14T21:55:07.0844748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adagrad.cpython-39.pyc 2025-08-14T21:55:07.0848593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adam.cpython-39.pyc 2025-08-14T21:55:07.0857435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamax.cpython-39.pyc 2025-08-14T21:55:07.0861144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamw.cpython-39.pyc 2025-08-14T21:55:07.0864912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\asgd.cpython-39.pyc 2025-08-14T21:55:07.0868801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lbfgs.cpython-39.pyc 2025-08-14T21:55:07.0872182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lr_scheduler.cpython-39.pyc 2025-08-14T21:55:07.0876179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\nadam.cpython-39.pyc 2025-08-14T21:55:07.0879481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:55:07.0883011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\radam.cpython-39.pyc 2025-08-14T21:55:07.0886411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rmsprop.cpython-39.pyc 2025-08-14T21:55:07.0890121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rprop.cpython-39.pyc 2025-08-14T21:55:07.0893528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sgd.cpython-39.pyc 2025-08-14T21:55:07.0896971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sparse_adam.cpython-39.pyc 2025-08-14T21:55:07.0900306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\swa_utils.cpython-39.pyc 2025-08-14T21:55:07.0903713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_adafactor.cpython-39.pyc 2025-08-14T21:55:07.0911788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_functional.cpython-39.pyc 2025-08-14T21:55:07.0915326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.0924465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\file_structure_representation.py 2025-08-14T21:55:07.0927737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\find_file_dependencies.py 2025-08-14T21:55:07.0931038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\glob_group.py 2025-08-14T21:55:07.0939340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\importer.py 2025-08-14T21:55:07.0943059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_exporter.py 2025-08-14T21:55:07.0946574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_importer.py 2025-08-14T21:55:07.0949895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_digraph.py 2025-08-14T21:55:07.0953089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_directory_reader.py 2025-08-14T21:55:07.0956706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_importlib.py 2025-08-14T21:55:07.0960004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mangling.py 2025-08-14T21:55:07.0963326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mock.py 2025-08-14T21:55:07.0966721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_pickler.py 2025-08-14T21:55:07.0969995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_unpickler.py 2025-08-14T21:55:07.0973278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_stdlib.py 2025-08-14T21:55:07.0976379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__init__.py 2025-08-14T21:55:07.0983305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\find_first_use_of_broken_modules.py 2025-08-14T21:55:07.0986815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\is_from_package.py 2025-08-14T21:55:07.0990770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\trace_dependencies.py 2025-08-14T21:55:07.0998934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__init__.py 2025-08-14T21:55:07.1006025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\find_first_use_of_broken_modules.cpython-39.pyc 2025-08-14T21:55:07.1025456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\is_from_package.cpython-39.pyc 2025-08-14T21:55:07.1029383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\trace_dependencies.cpython-39.pyc 2025-08-14T21:55:07.1038143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1046429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\file_structure_representation.cpython-39.pyc 2025-08-14T21:55:07.1049910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\find_file_dependencies.cpython-39.pyc 2025-08-14T21:55:07.1053476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\glob_group.cpython-39.pyc 2025-08-14T21:55:07.1061831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\importer.cpython-39.pyc 2025-08-14T21:55:07.1065415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_exporter.cpython-39.pyc 2025-08-14T21:55:07.1069807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_importer.cpython-39.pyc 2025-08-14T21:55:07.1073295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_digraph.cpython-39.pyc 2025-08-14T21:55:07.1076919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_directory_reader.cpython-39.pyc 2025-08-14T21:55:07.1080497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_importlib.cpython-39.pyc 2025-08-14T21:55:07.1083908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mangling.cpython-39.pyc 2025-08-14T21:55:07.1087405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mock.cpython-39.pyc 2025-08-14T21:55:07.1090868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_pickler.cpython-39.pyc 2025-08-14T21:55:07.1094684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_unpickler.cpython-39.pyc 2025-08-14T21:55:07.1098166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_stdlib.cpython-39.pyc 2025-08-14T21:55:07.1101567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1109855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\itt.py 2025-08-14T21:55:07.1113282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\profiler.py 2025-08-14T21:55:07.1116945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\python_tracer.py 2025-08-14T21:55:07.1120264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_memory_profiler.py 2025-08-14T21:55:07.1123884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_pattern_matcher.py 2025-08-14T21:55:07.1131994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_utils.py 2025-08-14T21:55:07.1135260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__init__.py 2025-08-14T21:55:07.1142234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\itt.cpython-39.pyc 2025-08-14T21:55:07.1145771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:55:07.1149368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\python_tracer.cpython-39.pyc 2025-08-14T21:55:07.1158383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_memory_profiler.cpython-39.pyc 2025-08-14T21:55:07.1162213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_pattern_matcher.cpython-39.pyc 2025-08-14T21:55:07.1165638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:07.1169616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1177390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fake_quantize.py 2025-08-14T21:55:07.1180962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuser_method_mappings.py 2025-08-14T21:55:07.1184720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuse_modules.py 2025-08-14T21:55:07.1193627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\observer.py 2025-08-14T21:55:07.1197084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\qconfig.py 2025-08-14T21:55:07.1200408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantization_mappings.py 2025-08-14T21:55:07.1203812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize.py 2025-08-14T21:55:07.1207119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_fx.py 2025-08-14T21:55:07.1210599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_jit.py 2025-08-14T21:55:07.1214002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quant_type.py 2025-08-14T21:55:07.1217294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\stubs.py 2025-08-14T21:55:07.1220610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\utils.py 2025-08-14T21:55:07.1223973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite.py 2025-08-14T21:55:07.1227444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite_fx.py 2025-08-14T21:55:07.1230984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_quantized_conversions.py 2025-08-14T21:55:07.1234225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__init__.py 2025-08-14T21:55:07.1241270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\convert.py 2025-08-14T21:55:07.1245080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fuse.py 2025-08-14T21:55:07.1248429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fusion_patterns.py 2025-08-14T21:55:07.1251636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\graph_module.py 2025-08-14T21:55:07.1254972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\match_utils.py 2025-08-14T21:55:07.1264061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\pattern_utils.py 2025-08-14T21:55:07.1267513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\prepare.py 2025-08-14T21:55:07.1270827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_patterns.py 2025-08-14T21:55:07.1274204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_types.py 2025-08-14T21:55:07.1277695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\utils.py 2025-08-14T21:55:07.1280899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\_equalize.py 2025-08-14T21:55:07.1284292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__init__.py 2025-08-14T21:55:07.1291577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-14T21:55:07.1295047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-14T21:55:07.1298481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fusion_patterns.cpython-39.pyc 2025-08-14T21:55:07.1307040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:55:07.1310574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:55:07.1314471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:55:07.1318104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:55:07.1321542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_patterns.cpython-39.pyc 2025-08-14T21:55:07.1325155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_types.cpython-39.pyc 2025-08-14T21:55:07.1328744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.1332190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:55:07.1335930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1344466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-14T21:55:07.1348021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-14T21:55:07.1351533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-14T21:55:07.1360083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\observer.cpython-39.pyc 2025-08-14T21:55:07.1363207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-14T21:55:07.1366675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-14T21:55:07.1370010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-14T21:55:07.1373450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-14T21:55:07.1377275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-14T21:55:07.1380766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-14T21:55:07.1384075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-14T21:55:07.1387431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.1390894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-14T21:55:07.1394308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-14T21:55:07.1397923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_quantized_conversions.cpython-39.pyc 2025-08-14T21:55:07.1401484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1421434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\ATen\ATenConfig.cmake 2025-08-14T21:55:07.1428378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Config.cmake 2025-08-14T21:55:07.1431850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake 2025-08-14T21:55:07.1435956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets.cmake 2025-08-14T21:55:07.1444759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake 2025-08-14T21:55:07.1448138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDSS.cmake 2025-08-14T21:55:07.1451552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake 2025-08-14T21:55:07.1454873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake 2025-08-14T21:55:07.1461822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake 2025-08-14T21:55:07.1465188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake 2025-08-14T21:55:07.1477572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake 2025-08-14T21:55:07.1481708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake 2025-08-14T21:55:07.1485454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake 2025-08-14T21:55:07.1497601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake 2025-08-14T21:55:07.1501145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake 2025-08-14T21:55:07.1504464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake 2025-08-14T21:55:07.1513109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake 2025-08-14T21:55:07.1521131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\cuda.cmake 2025-08-14T21:55:07.1524374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\gflags.cmake 2025-08-14T21:55:07.1527781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\glog.cmake 2025-08-14T21:55:07.1531000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\LoadHIP.cmake 2025-08-14T21:55:07.1539455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkl.cmake 2025-08-14T21:55:07.1542800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkldnn.cmake 2025-08-14T21:55:07.1546305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\protobuf.cmake 2025-08-14T21:55:07.1549760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\utils.cmake 2025-08-14T21:55:07.1553204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\xpu.cmake 2025-08-14T21:55:07.1561253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfig.cmake 2025-08-14T21:55:07.1564524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfigVersion.cmake 2025-08-14T21:55:07.1573537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__init__.py 2025-08-14T21:55:07.1579968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\windows.py 2025-08-14T21:55:07.1583255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__init__.py 2025-08-14T21:55:07.1589990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\windows.cpython-39.pyc 2025-08-14T21:55:07.1593661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1601204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1618384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\semi_structured.py 2025-08-14T21:55:07.1621888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_conversions.py 2025-08-14T21:55:07.1625304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_ops.py 2025-08-14T21:55:07.1633424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops.py 2025-08-14T21:55:07.1637495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops_meta.py 2025-08-14T21:55:07.1643116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__init__.py 2025-08-14T21:55:07.1650148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\semi_structured.cpython-39.pyc 2025-08-14T21:55:07.1653767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_conversions.cpython-39.pyc 2025-08-14T21:55:07.1657157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_ops.cpython-39.pyc 2025-08-14T21:55:07.1666183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops.cpython-39.pyc 2025-08-14T21:55:07.1670402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops_meta.cpython-39.pyc 2025-08-14T21:55:07.1675329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1683047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__init__.py 2025-08-14T21:55:07.1689743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.1699110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\apply_utils_test.exe 2025-08-14T21:55:07.1705176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\atest.exe 2025-08-14T21:55:07.1710488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\backend_fallback_test.exe 2025-08-14T21:55:07.1715675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\basic.exe 2025-08-14T21:55:07.1726034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\broadcast_test.exe 2025-08-14T21:55:07.1731240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_accumulate_test.exe 2025-08-14T21:55:07.1736147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_AllocatorConfig_test.exe 2025-08-14T21:55:07.1740943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ArrayRef_test.exe 2025-08-14T21:55:07.1745801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bfloat16_test.exe 2025-08-14T21:55:07.1750999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Bitset_test.exe 2025-08-14T21:55:07.1756115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bit_cast_test.exe 2025-08-14T21:55:07.1761131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_CompileTimeFunctionPointer_test.exe 2025-08-14T21:55:07.1765898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_math_test.exe 2025-08-14T21:55:07.1771144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_test.exe 2025-08-14T21:55:07.1776103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ConstexprCrc_test.exe 2025-08-14T21:55:07.1780966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_cow_test.exe 2025-08-14T21:55:07.1786279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeadlockDetection_test.exe 2025-08-14T21:55:07.1791276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeviceGuard_test.exe 2025-08-14T21:55:07.1801604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Device_test.exe 2025-08-14T21:55:07.1806399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DispatchKeySet_test.exe 2025-08-14T21:55:07.1811881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Enumerate_test.exe 2025-08-14T21:55:07.1816911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_error_test.exe 2025-08-14T21:55:07.1822324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_exception_test.exe 2025-08-14T21:55:07.1827090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_flags_test.exe 2025-08-14T21:55:07.1831978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_generic_math_test.exe 2025-08-14T21:55:07.1836942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Half_test.exe 2025-08-14T21:55:07.1842093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineDeviceGuard_test.exe 2025-08-14T21:55:07.1851919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineStreamGuard_test.exe 2025-08-14T21:55:07.1858152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_IntrusiveList_test.exe 2025-08-14T21:55:07.1863162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_benchmark.exe 2025-08-14T21:55:07.1868157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_test.exe 2025-08-14T21:55:07.1878313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_irange_test.exe 2025-08-14T21:55:07.1883453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_lazy_test.exe 2025-08-14T21:55:07.1888320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_LeftRight_test.exe 2025-08-14T21:55:07.1893284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_logging_test.exe 2025-08-14T21:55:07.1903582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Metaprogramming_test.exe 2025-08-14T21:55:07.1908797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_NetworkFlow_test.exe 2025-08-14T21:55:07.1914118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_optional_test.exe 2025-08-14T21:55:07.1919812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ordered_preserving_dict_test.exe 2025-08-14T21:55:07.1925121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_registry_test.exe 2025-08-14T21:55:07.1929905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Scalar_test.exe 2025-08-14T21:55:07.1934678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Semaphore_test.exe 2025-08-14T21:55:07.1939534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SizesAndStrides_test.exe 2025-08-14T21:55:07.1944454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_small_vector_test.exe 2025-08-14T21:55:07.1957373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ssize_test.exe 2025-08-14T21:55:07.1962242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_StreamGuard_test.exe 2025-08-14T21:55:07.1967185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_util_test.exe 2025-08-14T21:55:07.1973484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_view_test.exe 2025-08-14T21:55:07.1978341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SymInt_test.exe 2025-08-14T21:55:07.1983179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Synchronized_test.exe 2025-08-14T21:55:07.1988083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_tempfile_test.exe 2025-08-14T21:55:07.1993007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ThreadLocal_test.exe 2025-08-14T21:55:07.2007922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_typeid_test.exe 2025-08-14T21:55:07.2013008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeIndex_test.exe 2025-08-14T21:55:07.2017993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeList_test.exe 2025-08-14T21:55:07.2022717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeTraits_test.exe 2025-08-14T21:55:07.2027932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\CppSignature_test.exe 2025-08-14T21:55:07.2033309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_allocator_test.exe 2025-08-14T21:55:07.2038510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_generator_test.exe 2025-08-14T21:55:07.2043862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_profiling_allocator_test.exe 2025-08-14T21:55:07.2049096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_rng_test.exe 2025-08-14T21:55:07.2060960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dict_test.exe 2025-08-14T21:55:07.2066638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dimname_test.exe 2025-08-14T21:55:07.2071517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\dlconvertor_test.exe 2025-08-14T21:55:07.2076760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\extension_backend_test.exe 2025-08-14T21:55:07.2082482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\half_test.exe 2025-08-14T21:55:07.2087707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\IListRef_test.exe 2025-08-14T21:55:07.2093168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\inline_container_test.exe 2025-08-14T21:55:07.2098485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\ivalue_test.exe 2025-08-14T21:55:07.2105445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\KernelFunction_test.exe 2025-08-14T21:55:07.2116338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_legacy_test.exe 2025-08-14T21:55:07.2123472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_test.exe 2025-08-14T21:55:07.2130019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_legacy_test.exe 2025-08-14T21:55:07.2137417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_test.exe 2025-08-14T21:55:07.2144103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_stackbased_test.exe 2025-08-14T21:55:07.2149757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\lazy_tensor_test.exe 2025-08-14T21:55:07.2154814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\legacy_vmap_test.exe 2025-08-14T21:55:07.2161427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\List_test.exe 2025-08-14T21:55:07.2168371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\make_boxed_from_unboxed_functor_test.exe 2025-08-14T21:55:07.2174878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\math_kernel_test.exe 2025-08-14T21:55:07.2180516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\MaybeOwned_test.exe 2025-08-14T21:55:07.2186210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_format_test.exe 2025-08-14T21:55:07.2191358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_overlapping_test.exe 2025-08-14T21:55:07.2196648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\mobile_memory_cleanup.exe 2025-08-14T21:55:07.2201977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\NamedTensor_test.exe 2025-08-14T21:55:07.2207629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\native_test.exe 2025-08-14T21:55:07.2218935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operators_test.exe 2025-08-14T21:55:07.2224139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operator_name_test.exe 2025-08-14T21:55:07.2228894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_allowlist_test.exe 2025-08-14T21:55:07.2233810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_registration_test.exe 2025-08-14T21:55:07.2250527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\packedtensoraccessor_test.exe 2025-08-14T21:55:07.2255710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\pow_test.exe 2025-08-14T21:55:07.2261866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\quantized_test.exe 2025-08-14T21:55:07.2267326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reduce_ops_test.exe 2025-08-14T21:55:07.2272518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reportMemoryUsage_test.exe 2025-08-14T21:55:07.2295685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_tensor_test.exe 2025-08-14T21:55:07.2301276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_test.exe 2025-08-14T21:55:07.2306963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\StorageUtils_test.exe 2025-08-14T21:55:07.2312095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\stride_properties_test.exe 2025-08-14T21:55:07.2317879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\tensor_iterator_test.exe 2025-08-14T21:55:07.2324536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\test_parallel.exe 2025-08-14T21:55:07.2330494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\thread_init_test.exe 2025-08-14T21:55:07.2336504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_ptr_test.exe 2025-08-14T21:55:07.2341941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_test.exe 2025-08-14T21:55:07.2353428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\undefined_tensor_test.exe 2025-08-14T21:55:07.2358695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\verify_api_visibility.exe 2025-08-14T21:55:07.2363915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\weakref_test.exe 2025-08-14T21:55:07.2369090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\wrapdim_test.exe 2025-08-14T21:55:07.2374424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\xla_tensor_test.exe 2025-08-14T21:55:07.2388818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_comparison.py 2025-08-14T21:55:07.2392610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_creation.py 2025-08-14T21:55:07.2396017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_utils.py 2025-08-14T21:55:07.2399235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__init__.py 2025-08-14T21:55:07.2412622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autocast_test_lists.py 2025-08-14T21:55:07.2416098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autograd_function_db.py 2025-08-14T21:55:07.2419678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\check_kernel_launches.py 2025-08-14T21:55:07.2428215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_cuda.py 2025-08-14T21:55:07.2431600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_device_type.py 2025-08-14T21:55:07.2435266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_distributed.py 2025-08-14T21:55:07.2438842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dist_composable.py 2025-08-14T21:55:07.2442236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dtype.py 2025-08-14T21:55:07.2445806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_fsdp.py 2025-08-14T21:55:07.2449378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_jit.py 2025-08-14T21:55:07.2453068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_methods_invocations.py 2025-08-14T21:55:07.2462213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mkldnn.py 2025-08-14T21:55:07.2473154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_modules.py 2025-08-14T21:55:07.2474296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mps.py 2025-08-14T21:55:07.2477843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_nn.py 2025-08-14T21:55:07.2482070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_optimizers.py 2025-08-14T21:55:07.2485772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_pruning.py 2025-08-14T21:55:07.2489198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantization.py 2025-08-14T21:55:07.2499194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantized.py 2025-08-14T21:55:07.2502767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_subclass.py 2025-08-14T21:55:07.2506776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_utils.py 2025-08-14T21:55:07.2511315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\composite_compliance.py 2025-08-14T21:55:07.2514846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_op_db.py 2025-08-14T21:55:07.2518255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_tensor.py 2025-08-14T21:55:07.2521644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dist_utils.py 2025-08-14T21:55:07.2524973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dynamo_test_failures.py 2025-08-14T21:55:07.2528983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module.py 2025-08-14T21:55:07.2532710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module2.py 2025-08-14T21:55:07.2536207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module3.py 2025-08-14T21:55:07.2545176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hop_db.py 2025-08-14T21:55:07.2548837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hypothesis_utils.py 2025-08-14T21:55:07.2552287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\inductor_utils.py 2025-08-14T21:55:07.2555832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_metaprogramming_utils.py 2025-08-14T21:55:07.2559257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_utils.py 2025-08-14T21:55:07.2562919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_tensor.py 2025-08-14T21:55:07.2566185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_utils.py 2025-08-14T21:55:07.2570257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\quantization_torch_package_models.py 2025-08-14T21:55:07.2573658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\static_module.py 2025-08-14T21:55:07.2577008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\subclasses.py 2025-08-14T21:55:07.2585901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\torchbind_impls.py 2025-08-14T21:55:07.2589313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\triton_utils.py 2025-08-14T21:55:07.2592873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\two_tensor.py 2025-08-14T21:55:07.2596548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__init__.py 2025-08-14T21:55:07.2603412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__init__.py 2025-08-14T21:55:07.2610327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2617870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network1.py 2025-08-14T21:55:07.2621127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network2.py 2025-08-14T21:55:07.2624405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__init__.py 2025-08-14T21:55:07.2631476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network1.cpython-39.pyc 2025-08-14T21:55:07.2634908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network2.cpython-39.pyc 2025-08-14T21:55:07.2638482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2654214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\checkpoint_utils.py 2025-08-14T21:55:07.2657672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\common_state_dict.py 2025-08-14T21:55:07.2661601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py 2025-08-14T21:55:07.2670812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_test.py 2025-08-14T21:55:07.2676637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_utils.py 2025-08-14T21:55:07.2680183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\fake_pg.py 2025-08-14T21:55:07.2683582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\multi_threaded_pg.py 2025-08-14T21:55:07.2687120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc_utils.py 2025-08-14T21:55:07.2690602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__init__.py 2025-08-14T21:55:07.2697175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__init__.py 2025-08-14T21:55:07.2702992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\remote_module_test.py 2025-08-14T21:55:07.2706632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__init__.py 2025-08-14T21:55:07.2713065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\remote_module_test.cpython-39.pyc 2025-08-14T21:55:07.2716535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2723674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2731540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_autograd_test.py 2025-08-14T21:55:07.2735369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py 2025-08-14T21:55:07.2738890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py 2025-08-14T21:55:07.2747569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py 2025-08-14T21:55:07.2751015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py 2025-08-14T21:55:07.2754527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_test.py 2025-08-14T21:55:07.2759622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py 2025-08-14T21:55:07.2763458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__init__.py 2025-08-14T21:55:07.2770402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py 2025-08-14T21:55:07.2774866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py 2025-08-14T21:55:07.2779206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__init__.py 2025-08-14T21:55:07.2792301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\parameter_server_test.cpython-39.pyc 2025-08-14T21:55:07.2796175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\reinforcement_learning_rpc_test.cpython-39.pyc 2025-08-14T21:55:07.2800396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2812705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py 2025-08-14T21:55:07.2816455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test.py 2025-08-14T21:55:07.2820100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py 2025-08-14T21:55:07.2823900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__init__.py 2025-08-14T21:55:07.2835150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-14T21:55:07.2838659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test.cpython-39.pyc 2025-08-14T21:55:07.2843084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test_faulty.cpython-39.pyc 2025-08-14T21:55:07.2851622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2859518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-14T21:55:07.2863271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_optimizer_test.cpython-39.pyc 2025-08-14T21:55:07.2866742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_agent_rpc_test.cpython-39.pyc 2025-08-14T21:55:07.2875931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:55:07.2879492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:55:07.2883107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_test.cpython-39.pyc 2025-08-14T21:55:07.2887577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\tensorpipe_rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:55:07.2891372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2899397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\test_common.py 2025-08-14T21:55:07.2902991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__init__.py 2025-08-14T21:55:07.2909610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py 2025-08-14T21:55:07.2913306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py 2025-08-14T21:55:07.2916750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py 2025-08-14T21:55:07.2929367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_ops_common.cpython-39.pyc 2025-08-14T21:55:07.2932865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_st_common.cpython-39.pyc 2025-08-14T21:55:07.2936316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2953717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\test_common.cpython-39.pyc 2025-08-14T21:55:07.2957418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2965190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\common_dtensor.py 2025-08-14T21:55:07.2968504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__init__.py 2025-08-14T21:55:07.2974496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\common_dtensor.cpython-39.pyc 2025-08-14T21:55:07.2977957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.2986293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\checkpoint_utils.cpython-39.pyc 2025-08-14T21:55:07.2989674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\common_state_dict.cpython-39.pyc 2025-08-14T21:55:07.2993054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\ddp_under_dist_autograd_test.cpython-39.pyc 2025-08-14T21:55:07.3002082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_test.cpython-39.pyc 2025-08-14T21:55:07.3006660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_utils.cpython-39.pyc 2025-08-14T21:55:07.3010140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\fake_pg.cpython-39.pyc 2025-08-14T21:55:07.3013625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\multi_threaded_pg.cpython-39.pyc 2025-08-14T21:55:07.3017211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\rpc_utils.cpython-39.pyc 2025-08-14T21:55:07.3020616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3028578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\annotated_fn_args.py 2025-08-14T21:55:07.3034488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__init__.py 2025-08-14T21:55:07.3040730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\annotated_fn_args.cpython-39.pyc 2025-08-14T21:55:07.3044716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3052140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\core.py 2025-08-14T21:55:07.3055858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\refs.py 2025-08-14T21:55:07.3059324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\utils.py 2025-08-14T21:55:07.3062491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__init__.py 2025-08-14T21:55:07.3068978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\fft.py 2025-08-14T21:55:07.3072521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\linalg.py 2025-08-14T21:55:07.3076279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\nested.py 2025-08-14T21:55:07.3079957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\signal.py 2025-08-14T21:55:07.3083604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\sparse.py 2025-08-14T21:55:07.3087052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\special.py 2025-08-14T21:55:07.3095773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\_masked.py 2025-08-14T21:55:07.3099221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__init__.py 2025-08-14T21:55:07.3106304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\fft.cpython-39.pyc 2025-08-14T21:55:07.3109920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\linalg.cpython-39.pyc 2025-08-14T21:55:07.3113275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\nested.cpython-39.pyc 2025-08-14T21:55:07.3122426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\signal.cpython-39.pyc 2025-08-14T21:55:07.3126281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:55:07.3130292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\special.cpython-39.pyc 2025-08-14T21:55:07.3133849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\_masked.cpython-39.pyc 2025-08-14T21:55:07.3137232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3150829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\core.cpython-39.pyc 2025-08-14T21:55:07.3154555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\refs.cpython-39.pyc 2025-08-14T21:55:07.3159121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.3167796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3175189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\aot_autograd.py 2025-08-14T21:55:07.3178576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\autograd_registration.py 2025-08-14T21:55:07.3181894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\fake_tensor.py 2025-08-14T21:55:07.3185192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\generate_tests.py 2025-08-14T21:55:07.3193835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\make_fx.py 2025-08-14T21:55:07.3197255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__init__.py 2025-08-14T21:55:07.3204803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\aot_autograd.cpython-39.pyc 2025-08-14T21:55:07.3208417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\autograd_registration.cpython-39.pyc 2025-08-14T21:55:07.3211687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\fake_tensor.cpython-39.pyc 2025-08-14T21:55:07.3221208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\generate_tests.cpython-39.pyc 2025-08-14T21:55:07.3224793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\make_fx.cpython-39.pyc 2025-08-14T21:55:07.3228372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3236890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\future_div.py 2025-08-14T21:55:07.3240239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\no_future_div.py 2025-08-14T21:55:07.3243601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__init__.py 2025-08-14T21:55:07.3255177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\future_div.cpython-39.pyc 2025-08-14T21:55:07.3258629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\no_future_div.cpython-39.pyc 2025-08-14T21:55:07.3262134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3277574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autocast_test_lists.cpython-39.pyc 2025-08-14T21:55:07.3281048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autograd_function_db.cpython-39.pyc 2025-08-14T21:55:07.3284815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\check_kernel_launches.cpython-39.pyc 2025-08-14T21:55:07.3294210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_cuda.cpython-39.pyc 2025-08-14T21:55:07.3297729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_device_type.cpython-39.pyc 2025-08-14T21:55:07.3301496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_distributed.cpython-39.pyc 2025-08-14T21:55:07.3305479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dist_composable.cpython-39.pyc 2025-08-14T21:55:07.3308949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dtype.cpython-39.pyc 2025-08-14T21:55:07.3312494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_fsdp.cpython-39.pyc 2025-08-14T21:55:07.3316273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_jit.cpython-39.pyc 2025-08-14T21:55:07.3319950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_methods_invocations.cpython-39.pyc 2025-08-14T21:55:07.3326196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mkldnn.cpython-39.pyc 2025-08-14T21:55:07.3330256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_modules.cpython-39.pyc 2025-08-14T21:55:07.3334817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mps.cpython-39.pyc 2025-08-14T21:55:07.3338424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_nn.cpython-39.pyc 2025-08-14T21:55:07.3343003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_optimizers.cpython-39.pyc 2025-08-14T21:55:07.3351520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_pruning.cpython-39.pyc 2025-08-14T21:55:07.3355350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantization.cpython-39.pyc 2025-08-14T21:55:07.3359959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantized.cpython-39.pyc 2025-08-14T21:55:07.3363456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_subclass.cpython-39.pyc 2025-08-14T21:55:07.3367140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_utils.cpython-39.pyc 2025-08-14T21:55:07.3371722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\composite_compliance.cpython-39.pyc 2025-08-14T21:55:07.3375249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_op_db.cpython-39.pyc 2025-08-14T21:55:07.3378730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_tensor.cpython-39.pyc 2025-08-14T21:55:07.3382148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dist_utils.cpython-39.pyc 2025-08-14T21:55:07.3385984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dynamo_test_failures.cpython-39.pyc 2025-08-14T21:55:07.3390305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module.cpython-39.pyc 2025-08-14T21:55:07.3399519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module2.cpython-39.pyc 2025-08-14T21:55:07.3403367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module3.cpython-39.pyc 2025-08-14T21:55:07.3406820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hop_db.cpython-39.pyc 2025-08-14T21:55:07.3410363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hypothesis_utils.cpython-39.pyc 2025-08-14T21:55:07.3413766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\inductor_utils.cpython-39.pyc 2025-08-14T21:55:07.3417548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_metaprogramming_utils.cpython-39.pyc 2025-08-14T21:55:07.3421082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-14T21:55:07.3424603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_tensor.cpython-39.pyc 2025-08-14T21:55:07.3439327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_utils.cpython-39.pyc 2025-08-14T21:55:07.3442869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\quantization_torch_package_models.cpython-39.pyc 2025-08-14T21:55:07.3446371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\static_module.cpython-39.pyc 2025-08-14T21:55:07.3466066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\subclasses.cpython-39.pyc 2025-08-14T21:55:07.3469909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\torchbind_impls.cpython-39.pyc 2025-08-14T21:55:07.3473522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\triton_utils.cpython-39.pyc 2025-08-14T21:55:07.3476994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\two_tensor.cpython-39.pyc 2025-08-14T21:55:07.3480418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3496993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_comparison.cpython-39.pyc 2025-08-14T21:55:07.3500523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_creation.cpython-39.pyc 2025-08-14T21:55:07.3504043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:07.3512332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3520502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backend_registration.py 2025-08-14T21:55:07.3523848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bundled_inputs.py 2025-08-14T21:55:07.3527084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\checkpoint.py 2025-08-14T21:55:07.3530489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\collect_env.py 2025-08-14T21:55:07.3538987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_backtrace.py 2025-08-14T21:55:07.3542253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_extension.py 2025-08-14T21:55:07.3546335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\deterministic.py 2025-08-14T21:55:07.3549673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\dlpack.py 2025-08-14T21:55:07.3553297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\file_baton.py 2025-08-14T21:55:07.3556496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\flop_counter.py 2025-08-14T21:55:07.3560020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hooks.py 2025-08-14T21:55:07.3563073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mkldnn.py 2025-08-14T21:55:07.3566175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mobile_optimizer.py 2025-08-14T21:55:07.3569387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_zoo.py 2025-08-14T21:55:07.3572647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\module_tracker.py 2025-08-14T21:55:07.3576228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\show_pickle.py 2025-08-14T21:55:07.3580153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\throughput_benchmark.py 2025-08-14T21:55:07.3583769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\weak.py 2025-08-14T21:55:07.3587155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_appending_byte_serializer.py 2025-08-14T21:55:07.3590431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_backport_slots.py 2025-08-14T21:55:07.3593783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_module.py 2025-08-14T21:55:07.3602548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_typing.pyi 2025-08-14T21:55:07.3606156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_content_store.py 2025-08-14T21:55:07.3609779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_contextlib.py 2025-08-14T21:55:07.3613145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_embed_headers.py 2025-08-14T21:55:07.3616719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_extension_versioner.py 2025-08-14T21:55:07.3620151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cxx_pytree.py 2025-08-14T21:55:07.3623634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_device.py 2025-08-14T21:55:07.3626935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_dtype_abbrs.py 2025-08-14T21:55:07.3630136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_exposed_in.py 2025-08-14T21:55:07.3633358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_filelock.py 2025-08-14T21:55:07.3642183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_foreach_utils.py 2025-08-14T21:55:07.3645893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_functools.py 2025-08-14T21:55:07.3649340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_get_clean_triton.py 2025-08-14T21:55:07.3652564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_helion.py 2025-08-14T21:55:07.3655895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_import_utils.py 2025-08-14T21:55:07.3659226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_mode_utils.py 2025-08-14T21:55:07.3662779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_ordered_set.py 2025-08-14T21:55:07.3666059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_python_dispatch.py 2025-08-14T21:55:07.3669477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_pytree.py 2025-08-14T21:55:07.3673267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_stats.py 2025-08-14T21:55:07.3682642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_thunk.py 2025-08-14T21:55:07.3686068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_traceback.py 2025-08-14T21:55:07.3689466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_triton.py 2025-08-14T21:55:07.3692725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_typing_utils.py 2025-08-14T21:55:07.3696098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_zip.py 2025-08-14T21:55:07.3699300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__init__.py 2025-08-14T21:55:07.3706218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__init__.py 2025-08-14T21:55:07.3713247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3721214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__init__.py 2025-08-14T21:55:07.3728199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\compare.py 2025-08-14T21:55:07.3731499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\fuzzer.py 2025-08-14T21:55:07.3735810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\op_benchmark.py 2025-08-14T21:55:07.3739461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\simple_timeit.py 2025-08-14T21:55:07.3742928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py 2025-08-14T21:55:07.3751912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__init__.py 2025-08-14T21:55:07.3758337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\compare.cpython-39.pyc 2025-08-14T21:55:07.3761815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:55:07.3765831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\op_benchmark.cpython-39.pyc 2025-08-14T21:55:07.3774382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\simple_timeit.cpython-39.pyc 2025-08-14T21:55:07.3778066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\spectral_ops_fuzz_test.cpython-39.pyc 2025-08-14T21:55:07.3781686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3789133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\binary.py 2025-08-14T21:55:07.3792396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_binary.py 2025-08-14T21:55:07.3795852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_unary.py 2025-08-14T21:55:07.3799437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\spectral.py 2025-08-14T21:55:07.3807618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\unary.py 2025-08-14T21:55:07.3810977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__init__.py 2025-08-14T21:55:07.3817251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\binary.cpython-39.pyc 2025-08-14T21:55:07.3820957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_binary.cpython-39.pyc 2025-08-14T21:55:07.3824425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_unary.cpython-39.pyc 2025-08-14T21:55:07.3833648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\spectral.cpython-39.pyc 2025-08-14T21:55:07.3837111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\unary.cpython-39.pyc 2025-08-14T21:55:07.3840886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3848600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\common.py 2025-08-14T21:55:07.3852020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compare.py 2025-08-14T21:55:07.3855377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compile.py 2025-08-14T21:55:07.3858647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\cpp_jit.py 2025-08-14T21:55:07.3861864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\fuzzer.py 2025-08-14T21:55:07.3865813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\sparse_fuzzer.py 2025-08-14T21:55:07.3874318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timeit_template.cpp 2025-08-14T21:55:07.3877757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timer.py 2025-08-14T21:55:07.3881272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\_stubs.py 2025-08-14T21:55:07.3884487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__init__.py 2025-08-14T21:55:07.3890595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h 2025-08-14T21:55:07.3894318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp 2025-08-14T21:55:07.3897888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp 2025-08-14T21:55:07.3906539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py 2025-08-14T21:55:07.3909964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h 2025-08-14T21:55:07.3915349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py 2025-08-14T21:55:07.3921773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\timer_interface.cpython-39.pyc 2025-08-14T21:55:07.3925203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3932965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:55:07.3936266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compare.cpython-39.pyc 2025-08-14T21:55:07.3939634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compile.cpython-39.pyc 2025-08-14T21:55:07.3948108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\cpp_jit.cpython-39.pyc 2025-08-14T21:55:07.3951833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:55:07.3955415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\sparse_fuzzer.cpython-39.pyc 2025-08-14T21:55:07.3958739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\timer.cpython-39.pyc 2025-08-14T21:55:07.3962345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\_stubs.cpython-39.pyc 2025-08-14T21:55:07.3965957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3978685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3986419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__init__.py 2025-08-14T21:55:07.3988987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__main__.py 2025-08-14T21:55:07.3995767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.3999231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:55:07.4006495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\backward_compatibility.py 2025-08-14T21:55:07.4009758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataloader.py 2025-08-14T21:55:07.4013633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataset.py 2025-08-14T21:55:07.4016871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\distributed.py 2025-08-14T21:55:07.4025630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph.py 2025-08-14T21:55:07.4029331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph_settings.py 2025-08-14T21:55:07.4032518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\sampler.py 2025-08-14T21:55:07.4035989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__init__.py 2025-08-14T21:55:07.4043141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.py 2025-08-14T21:55:07.4046408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.pyi 2025-08-14T21:55:07.4049666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\gen_pyi.py 2025-08-14T21:55:07.4053056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_decorator.py 2025-08-14T21:55:07.4056335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_hook_iterator.py 2025-08-14T21:55:07.4064249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_typing.py 2025-08-14T21:55:07.4067467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__init__.py 2025-08-14T21:55:07.4074921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframes.py 2025-08-14T21:55:07.4078326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py 2025-08-14T21:55:07.4081668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\datapipes.py 2025-08-14T21:55:07.4090306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\structures.py 2025-08-14T21:55:07.4093657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__init__.py 2025-08-14T21:55:07.4100757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframes.cpython-39.pyc 2025-08-14T21:55:07.4104401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframe_wrapper.cpython-39.pyc 2025-08-14T21:55:07.4107994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\datapipes.cpython-39.pyc 2025-08-14T21:55:07.4116441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\structures.cpython-39.pyc 2025-08-14T21:55:07.4119962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4127605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\callable.py 2025-08-14T21:55:07.4130953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combinatorics.py 2025-08-14T21:55:07.4134178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combining.py 2025-08-14T21:55:07.4137675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\filelister.py 2025-08-14T21:55:07.4146825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\fileopener.py 2025-08-14T21:55:07.4150140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\grouping.py 2025-08-14T21:55:07.4153750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\routeddecoder.py 2025-08-14T21:55:07.4157157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\selecting.py 2025-08-14T21:55:07.4160561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\sharding.py 2025-08-14T21:55:07.4163784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\streamreader.py 2025-08-14T21:55:07.4167169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\utils.py 2025-08-14T21:55:07.4170438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__init__.py 2025-08-14T21:55:07.4177944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\callable.cpython-39.pyc 2025-08-14T21:55:07.4181487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combinatorics.cpython-39.pyc 2025-08-14T21:55:07.4184850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combining.cpython-39.pyc 2025-08-14T21:55:07.4194705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\filelister.cpython-39.pyc 2025-08-14T21:55:07.4198224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\fileopener.cpython-39.pyc 2025-08-14T21:55:07.4201770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\grouping.cpython-39.pyc 2025-08-14T21:55:07.4205465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\routeddecoder.cpython-39.pyc 2025-08-14T21:55:07.4209710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\selecting.cpython-39.pyc 2025-08-14T21:55:07.4213294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\sharding.cpython-39.pyc 2025-08-14T21:55:07.4216915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\streamreader.cpython-39.pyc 2025-08-14T21:55:07.4220366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.4223896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4232043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\callable.py 2025-08-14T21:55:07.4235823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combinatorics.py 2025-08-14T21:55:07.4239115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combining.py 2025-08-14T21:55:07.4242416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\grouping.py 2025-08-14T21:55:07.4258163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\utils.py 2025-08-14T21:55:07.4258772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__init__.py 2025-08-14T21:55:07.4262109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\callable.cpython-39.pyc 2025-08-14T21:55:07.4266138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combinatorics.cpython-39.pyc 2025-08-14T21:55:07.4269617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combining.cpython-39.pyc 2025-08-14T21:55:07.4278194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\grouping.cpython-39.pyc 2025-08-14T21:55:07.4281898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.4285439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4293036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\common.py 2025-08-14T21:55:07.4296355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\decoder.py 2025-08-14T21:55:07.4299525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\snapshot.py 2025-08-14T21:55:07.4302845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__init__.py 2025-08-14T21:55:07.4308956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:55:07.4312590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\decoder.cpython-39.pyc 2025-08-14T21:55:07.4316080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\snapshot.cpython-39.pyc 2025-08-14T21:55:07.4326737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4336357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\datapipe.cpython-39.pyc 2025-08-14T21:55:07.4340139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\gen_pyi.cpython-39.pyc 2025-08-14T21:55:07.4343946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_decorator.cpython-39.pyc 2025-08-14T21:55:07.4353549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_hook_iterator.cpython-39.pyc 2025-08-14T21:55:07.4357460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_typing.cpython-39.pyc 2025-08-14T21:55:07.4360964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4369269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\collate.py 2025-08-14T21:55:07.4372468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\fetch.py 2025-08-14T21:55:07.4375731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\pin_memory.py 2025-08-14T21:55:07.4379135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\signal_handling.py 2025-08-14T21:55:07.4382388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\worker.py 2025-08-14T21:55:07.4390638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__init__.py 2025-08-14T21:55:07.4397712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\collate.cpython-39.pyc 2025-08-14T21:55:07.4401522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\fetch.cpython-39.pyc 2025-08-14T21:55:07.4404993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\pin_memory.cpython-39.pyc 2025-08-14T21:55:07.4413655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\signal_handling.cpython-39.pyc 2025-08-14T21:55:07.4417146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\worker.cpython-39.pyc 2025-08-14T21:55:07.4420441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4428910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\backward_compatibility.cpython-39.pyc 2025-08-14T21:55:07.4432234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataloader.cpython-39.pyc 2025-08-14T21:55:07.4435796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataset.cpython-39.pyc 2025-08-14T21:55:07.4444541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:55:07.4447966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph.cpython-39.pyc 2025-08-14T21:55:07.4451270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph_settings.cpython-39.pyc 2025-08-14T21:55:07.4454755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\sampler.cpython-39.pyc 2025-08-14T21:55:07.4458147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4465764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\constants.py 2025-08-14T21:55:07.4469129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\cuda_to_hip_mappings.py 2025-08-14T21:55:07.4474334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\hipify_python.py 2025-08-14T21:55:07.4477923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\version.py 2025-08-14T21:55:07.4486279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__init__.py 2025-08-14T21:55:07.4493370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\constants.cpython-39.pyc 2025-08-14T21:55:07.4496893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\cuda_to_hip_mappings.cpython-39.pyc 2025-08-14T21:55:07.4501320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\hipify_python.cpython-39.pyc 2025-08-14T21:55:07.4510587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\version.cpython-39.pyc 2025-08-14T21:55:07.4513968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4521364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\log_extract.py 2025-08-14T21:55:07.4524725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__init__.py 2025-08-14T21:55:07.4547875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\log_extract.cpython-39.pyc 2025-08-14T21:55:07.4551323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4558821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\code.js 2025-08-14T21:55:07.4562136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\htm.mjs 2025-08-14T21:55:07.4565364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\preact.mjs 2025-08-14T21:55:07.4568612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\skeleton.html 2025-08-14T21:55:07.4571836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__init__.py 2025-08-14T21:55:07.4581176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__main__.py 2025-08-14T21:55:07.4588462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4591831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:55:07.4599258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\config.py 2025-08-14T21:55:07.4602461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__init__.py 2025-08-14T21:55:07.4609083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\config.cpython-39.pyc 2025-08-14T21:55:07.4612757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4620495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\summary.py 2025-08-14T21:55:07.4623889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\writer.py 2025-08-14T21:55:07.4627280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_convert_np.py 2025-08-14T21:55:07.4630550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_embedding.py 2025-08-14T21:55:07.4638766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_onnx_graph.py 2025-08-14T21:55:07.4642143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_proto_graph.py 2025-08-14T21:55:07.4645610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_pytorch_graph.py 2025-08-14T21:55:07.4649832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_utils.py 2025-08-14T21:55:07.4652492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__init__.py 2025-08-14T21:55:07.4659408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\summary.cpython-39.pyc 2025-08-14T21:55:07.4662839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\writer.cpython-39.pyc 2025-08-14T21:55:07.4666337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_convert_np.cpython-39.pyc 2025-08-14T21:55:07.4675894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_embedding.cpython-39.pyc 2025-08-14T21:55:07.4679275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_onnx_graph.cpython-39.pyc 2025-08-14T21:55:07.4682852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_proto_graph.cpython-39.pyc 2025-08-14T21:55:07.4686303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_pytorch_graph.cpython-39.pyc 2025-08-14T21:55:07.4689669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:07.4693086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4700299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\_cycles.py 2025-08-14T21:55:07.4703520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__init__.py 2025-08-14T21:55:07.4709506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\_cycles.cpython-39.pyc 2025-08-14T21:55:07.4712894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4720964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\cli_function_profiler.py 2025-08-14T21:55:07.4724339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__init__.py 2025-08-14T21:55:07.4730209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-14T21:55:07.4733610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4741257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\functions.py 2025-08-14T21:55:07.4744703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\interp.py 2025-08-14T21:55:07.4747823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\numbers.py 2025-08-14T21:55:07.4751034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\printers.py 2025-08-14T21:55:07.4754259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\reference.py 2025-08-14T21:55:07.4763564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\singleton_int.py 2025-08-14T21:55:07.4766825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\solve.py 2025-08-14T21:55:07.4770014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\symbol.py 2025-08-14T21:55:07.4773259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\value_ranges.py 2025-08-14T21:55:07.4777485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__init__.py 2025-08-14T21:55:07.4783562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\functions.cpython-39.pyc 2025-08-14T21:55:07.4787445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\interp.cpython-39.pyc 2025-08-14T21:55:07.4790829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\numbers.cpython-39.pyc 2025-08-14T21:55:07.4800474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\printers.cpython-39.pyc 2025-08-14T21:55:07.4803862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\reference.cpython-39.pyc 2025-08-14T21:55:07.4807320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\singleton_int.cpython-39.pyc 2025-08-14T21:55:07.4810873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\solve.cpython-39.pyc 2025-08-14T21:55:07.4814237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\symbol.cpython-39.pyc 2025-08-14T21:55:07.4817630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\value_ranges.cpython-39.pyc 2025-08-14T21:55:07.4821093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.4829362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\backend_registration.cpython-39.pyc 2025-08-14T21:55:07.4832775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\bundled_inputs.cpython-39.pyc 2025-08-14T21:55:07.4836400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\checkpoint.cpython-39.pyc 2025-08-14T21:55:07.4844934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\collect_env.cpython-39.pyc 2025-08-14T21:55:07.4848414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_backtrace.cpython-39.pyc 2025-08-14T21:55:07.4852176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_extension.cpython-39.pyc 2025-08-14T21:55:07.4856529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\deterministic.cpython-39.pyc 2025-08-14T21:55:07.4859855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\dlpack.cpython-39.pyc 2025-08-14T21:55:07.4863537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\file_baton.cpython-39.pyc 2025-08-14T21:55:07.4867664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\flop_counter.cpython-39.pyc 2025-08-14T21:55:07.4871565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:55:07.4875626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mkldnn.cpython-39.pyc 2025-08-14T21:55:07.4879440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mobile_optimizer.cpython-39.pyc 2025-08-14T21:55:07.4883285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\model_zoo.cpython-39.pyc 2025-08-14T21:55:07.4887215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\module_tracker.cpython-39.pyc 2025-08-14T21:55:07.4891026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\show_pickle.cpython-39.pyc 2025-08-14T21:55:07.4895158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\throughput_benchmark.cpython-39.pyc 2025-08-14T21:55:07.4903718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\weak.cpython-39.pyc 2025-08-14T21:55:07.4907245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_appending_byte_serializer.cpython-39.pyc 2025-08-14T21:55:07.4910791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_backport_slots.cpython-39.pyc 2025-08-14T21:55:07.4914254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_config_module.cpython-39.pyc 2025-08-14T21:55:07.4918028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_content_store.cpython-39.pyc 2025-08-14T21:55:07.4921513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_contextlib.cpython-39.pyc 2025-08-14T21:55:07.4925913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_embed_headers.cpython-39.pyc 2025-08-14T21:55:07.4935229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_extension_versioner.cpython-39.pyc 2025-08-14T21:55:07.4938624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cxx_pytree.cpython-39.pyc 2025-08-14T21:55:07.4942202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_device.cpython-39.pyc 2025-08-14T21:55:07.4945753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_dtype_abbrs.cpython-39.pyc 2025-08-14T21:55:07.4949268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_exposed_in.cpython-39.pyc 2025-08-14T21:55:07.4953360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_filelock.cpython-39.pyc 2025-08-14T21:55:07.4957223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_foreach_utils.cpython-39.pyc 2025-08-14T21:55:07.4960645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_functools.cpython-39.pyc 2025-08-14T21:55:07.4964064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_get_clean_triton.cpython-39.pyc 2025-08-14T21:55:07.4972811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_helion.cpython-39.pyc 2025-08-14T21:55:07.4976299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_import_utils.cpython-39.pyc 2025-08-14T21:55:07.4979915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_mode_utils.cpython-39.pyc 2025-08-14T21:55:07.4983280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_ordered_set.cpython-39.pyc 2025-08-14T21:55:07.4986812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_python_dispatch.cpython-39.pyc 2025-08-14T21:55:07.4990256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_pytree.cpython-39.pyc 2025-08-14T21:55:07.4993886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_stats.cpython-39.pyc 2025-08-14T21:55:07.4997503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_thunk.cpython-39.pyc 2025-08-14T21:55:07.5167034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_traceback.cpython-39.pyc 2025-08-14T21:55:07.5170303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_triton.cpython-39.pyc 2025-08-14T21:55:07.5173718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_typing_utils.cpython-39.pyc 2025-08-14T21:55:07.5177450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_zip.cpython-39.pyc 2025-08-14T21:55:07.5180946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.5190233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\memory.py 2025-08-14T21:55:07.5193409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\random.py 2025-08-14T21:55:07.5196601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\streams.py 2025-08-14T21:55:07.5199742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_gpu_trace.py 2025-08-14T21:55:07.5202961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_utils.py 2025-08-14T21:55:07.5206137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__init__.py 2025-08-14T21:55:07.5218714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\memory.cpython-39.pyc 2025-08-14T21:55:07.5222091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\random.cpython-39.pyc 2025-08-14T21:55:07.5225366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\streams.cpython-39.pyc 2025-08-14T21:55:07.5233923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-14T21:55:07.5237361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:07.5240755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.5248309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__init__.py 2025-08-14T21:55:07.5254950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.5262159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_aoti.pyi 2025-08-14T21:55:07.5265347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_autograd.pyi 2025-08-14T21:55:07.5268516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cpu.pyi 2025-08-14T21:55:07.5272134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cudnn.pyi 2025-08-14T21:55:07.5275414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cusparselt.pyi 2025-08-14T21:55:07.5283825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_autograd.pyi 2025-08-14T21:55:07.5287191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_c10d.pyi 2025-08-14T21:55:07.5290611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc.pyi 2025-08-14T21:55:07.5294026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc_testing.pyi 2025-08-14T21:55:07.5297423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functions.pyi 2025-08-14T21:55:07.5300707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functorch.pyi 2025-08-14T21:55:07.5304031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_instruction_counter.pyi 2025-08-14T21:55:07.5307292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_itt.pyi 2025-08-14T21:55:07.5310625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_jit_tree_views.pyi 2025-08-14T21:55:07.5313868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy.pyi 2025-08-14T21:55:07.5317530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy_ts_backend.pyi 2025-08-14T21:55:07.5320889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_monitor.pyi 2025-08-14T21:55:07.5324076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nn.pyi 2025-08-14T21:55:07.5327205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nvtx.pyi 2025-08-14T21:55:07.5330357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_onnx.pyi 2025-08-14T21:55:07.5333581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_profiler.pyi 2025-08-14T21:55:07.5336848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_VariableFunctions.pyi 2025-08-14T21:55:07.5346706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_verbose.pyi 2025-08-14T21:55:07.5356155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\__init__.pyi 2025-08-14T21:55:07.5365744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\compiled_autograd.pyi 2025-08-14T21:55:07.5369595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\eval_frame.pyi 2025-08-14T21:55:07.5373362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\guards.pyi 2025-08-14T21:55:07.5376985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\__init__.pyi 2025-08-14T21:55:07.5385480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\pt2_archive_constants.pyi 2025-08-14T21:55:07.5389450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\__init__.pyi 2025-08-14T21:55:07.5398399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\autograd.py 2025-08-14T21:55:07.5402029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\impl.py 2025-08-14T21:55:07.5405281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__init__.py 2025-08-14T21:55:07.5411415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\autograd.cpython-39.pyc 2025-08-14T21:55:07.5415076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\impl.cpython-39.pyc 2025-08-14T21:55:07.5418475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.5431503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C_flatbuffer\__init__.pyi 2025-08-14T21:55:07.5438463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions.py 2025-08-14T21:55:07.5443160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_jvp.py 2025-08-14T21:55:07.5446557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_rng.py 2025-08-14T21:55:07.5454838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__init__.py 2025-08-14T21:55:07.5461657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions.cpython-39.pyc 2025-08-14T21:55:07.5465859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_jvp.cpython-39.pyc 2025-08-14T21:55:07.5469262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_rng.cpython-39.pyc 2025-08-14T21:55:07.5477588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.5485158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\python.py 2025-08-14T21:55:07.5488394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__init__.py 2025-08-14T21:55:07.5494215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\python.cpython-39.pyc 2025-08-14T21:55:07.5497704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.5505725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_analysis.py 2025-08-14T21:55:07.5509024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_transformation.py 2025-08-14T21:55:07.5512496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\cache_size.py 2025-08-14T21:55:07.5520615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\callback.py 2025-08-14T21:55:07.5523731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\codegen.py 2025-08-14T21:55:07.5527046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\code_context.py 2025-08-14T21:55:07.5530545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\compiled_autograd.py 2025-08-14T21:55:07.5534030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\comptime.py 2025-08-14T21:55:07.5537198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\config.py 2025-08-14T21:55:07.5541003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\convert_frame.py 2025-08-14T21:55:07.5544514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\create_parameter_op.py 2025-08-14T21:55:07.5548004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\current_scope_id.py 2025-08-14T21:55:07.5551302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\debug_utils.py 2025-08-14T21:55:07.5554682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\decorators.py 2025-08-14T21:55:07.5558089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\device_interface.py 2025-08-14T21:55:07.5561603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\distributed.py 2025-08-14T21:55:07.5564877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\eval_frame.py 2025-08-14T21:55:07.5568487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\exc.py 2025-08-14T21:55:07.5571795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\external_utils.py 2025-08-14T21:55:07.5575053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\funcname_cache.py 2025-08-14T21:55:07.5578424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_hints.py 2025-08-14T21:55:07.5587073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_registry.json 2025-08-14T21:55:07.5591261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_deduplication.py 2025-08-14T21:55:07.5594901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_region_tracker.py 2025-08-14T21:55:07.5598313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_utils.py 2025-08-14T21:55:07.5601675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\guards.py 2025-08-14T21:55:07.6743742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\hooks.py 2025-08-14T21:55:07.6747170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\logging.py 2025-08-14T21:55:07.6750680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\metrics_context.py 2025-08-14T21:55:07.6754004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\mutation_guard.py 2025-08-14T21:55:07.6757830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\output_graph.py 2025-08-14T21:55:07.6761892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\package.py 2025-08-14T21:55:07.6771524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\pgo.py 2025-08-14T21:55:07.6775308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\precompile_context.py 2025-08-14T21:55:07.6778868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\profiler.py 2025-08-14T21:55:07.6782257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\replay_record.py 2025-08-14T21:55:07.6785827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\resume_execution.py 2025-08-14T21:55:07.6789412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\side_effects.py 2025-08-14T21:55:07.6792988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\source.py 2025-08-14T21:55:07.6796580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\symbolic_convert.py 2025-08-14T21:55:07.6801053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\tensor_version_op.py 2025-08-14T21:55:07.6804708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\testing.py 2025-08-14T21:55:07.6808137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_case.py 2025-08-14T21:55:07.6811540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_dont_skip_tracing_functions.py 2025-08-14T21:55:07.6821709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_minifier_common.py 2025-08-14T21:55:07.6825134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\trace_rules.py 2025-08-14T21:55:07.6829198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\types.py 2025-08-14T21:55:07.6832487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\utils.py 2025-08-14T21:55:07.6836870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\_trace_wrapped_higher_order_op.py 2025-08-14T21:55:07.6840357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__init__.py 2025-08-14T21:55:07.6847454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\common.py 2025-08-14T21:55:07.6850705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\cudagraphs.py 2025-08-14T21:55:07.6854458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\debugging.py 2025-08-14T21:55:07.6857737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\distributed.py 2025-08-14T21:55:07.6866777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\inductor.py 2025-08-14T21:55:07.6870439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\onnxrt.py 2025-08-14T21:55:07.6874024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\registry.py 2025-08-14T21:55:07.6877691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tensorrt.py 2025-08-14T21:55:07.6896135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\torchxla.py 2025-08-14T21:55:07.6899541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tvm.py 2025-08-14T21:55:07.6902728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__init__.py 2025-08-14T21:55:07.6909113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\common.cpython-39.pyc 2025-08-14T21:55:07.6912536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-14T21:55:07.6916069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\debugging.cpython-39.pyc 2025-08-14T21:55:07.6924634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:55:07.6928148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\inductor.cpython-39.pyc 2025-08-14T21:55:07.6931562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\onnxrt.cpython-39.pyc 2025-08-14T21:55:07.6935039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\registry.cpython-39.pyc 2025-08-14T21:55:07.6938502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tensorrt.cpython-39.pyc 2025-08-14T21:55:07.6941779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\torchxla.cpython-39.pyc 2025-08-14T21:55:07.6945129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tvm.cpython-39.pyc 2025-08-14T21:55:07.6948476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.6957322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\builtins.py 2025-08-14T21:55:07.6960645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\functools.py 2025-08-14T21:55:07.6964002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\fx.py 2025-08-14T21:55:07.6967246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\itertools.py 2025-08-14T21:55:07.6975556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\loader.py 2025-08-14T21:55:07.6978821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\operator.py 2025-08-14T21:55:07.6981983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\os.py 2025-08-14T21:55:07.6985185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\pytree.py 2025-08-14T21:55:07.6988401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\struct.py 2025-08-14T21:55:07.6991573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\sys.py 2025-08-14T21:55:07.6995046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\tensor.py 2025-08-14T21:55:07.6998320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__init__.py 2025-08-14T21:55:07.7005361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\builtins.cpython-39.pyc 2025-08-14T21:55:07.7008948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\functools.cpython-39.pyc 2025-08-14T21:55:07.7012297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\fx.cpython-39.pyc 2025-08-14T21:55:07.7020969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\itertools.cpython-39.pyc 2025-08-14T21:55:07.7027780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\loader.cpython-39.pyc 2025-08-14T21:55:07.7031841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\operator.cpython-39.pyc 2025-08-14T21:55:07.7035302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\os.cpython-39.pyc 2025-08-14T21:55:07.7038689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\pytree.cpython-39.pyc 2025-08-14T21:55:07.7042117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\struct.cpython-39.pyc 2025-08-14T21:55:07.7045503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\sys.cpython-39.pyc 2025-08-14T21:55:07.7049210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:55:07.7052605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.7060645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_aot.py 2025-08-14T21:55:07.7064281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_dynamo.py 2025-08-14T21:55:07.7067745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\aoti.py 2025-08-14T21:55:07.7070988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__init__.py 2025-08-14T21:55:07.7082408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_aot.cpython-39.pyc 2025-08-14T21:55:07.7085946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_dynamo.cpython-39.pyc 2025-08-14T21:55:07.7089353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\aoti.cpython-39.pyc 2025-08-14T21:55:07.7098729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.7106345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\base.py 2025-08-14T21:55:07.7109541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builder.py 2025-08-14T21:55:07.7113623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builtin.py 2025-08-14T21:55:07.7117325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\constant.py 2025-08-14T21:55:07.7120563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\ctx_manager.py 2025-08-14T21:55:07.7129282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\dicts.py 2025-08-14T21:55:07.7132689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\distributed.py 2025-08-14T21:55:07.7135982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\functions.py 2025-08-14T21:55:07.7139737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\higher_order_ops.py 2025-08-14T21:55:07.7143809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\iter.py 2025-08-14T21:55:07.7147046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lazy.py 2025-08-14T21:55:07.7150224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lists.py 2025-08-14T21:55:07.7153550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\misc.py 2025-08-14T21:55:07.7157238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\nn_module.py 2025-08-14T21:55:07.7161325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\optimizer.py 2025-08-14T21:55:07.7164690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\script_object.py 2025-08-14T21:55:07.7168362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\sdpa.py 2025-08-14T21:55:07.7171494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\tensor.py 2025-08-14T21:55:07.7175783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch.py 2025-08-14T21:55:07.7179331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch_function.py 2025-08-14T21:55:07.7182856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\user_defined.py 2025-08-14T21:55:07.7186509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__init__.py 2025-08-14T21:55:07.7194506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\base.cpython-39.pyc 2025-08-14T21:55:07.7198041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builder.cpython-39.pyc 2025-08-14T21:55:07.7201839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builtin.cpython-39.pyc 2025-08-14T21:55:07.7211517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\constant.cpython-39.pyc 2025-08-14T21:55:07.7215093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\ctx_manager.cpython-39.pyc 2025-08-14T21:55:07.7218730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\dicts.cpython-39.pyc 2025-08-14T21:55:07.7222321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:55:07.7225773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\functions.cpython-39.pyc 2025-08-14T21:55:07.7229529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\higher_order_ops.cpython-39.pyc 2025-08-14T21:55:07.7233209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\iter.cpython-39.pyc 2025-08-14T21:55:07.7237151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lazy.cpython-39.pyc 2025-08-14T21:55:07.7240812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lists.cpython-39.pyc 2025-08-14T21:55:07.7244356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\misc.cpython-39.pyc 2025-08-14T21:55:07.7248208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\nn_module.cpython-39.pyc 2025-08-14T21:55:07.7251643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:55:07.7255057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\script_object.cpython-39.pyc 2025-08-14T21:55:07.7258466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\sdpa.cpython-39.pyc 2025-08-14T21:55:07.7267570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:55:07.7271476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch.cpython-39.pyc 2025-08-14T21:55:07.7275177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch_function.cpython-39.pyc 2025-08-14T21:55:07.7278489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\user_defined.cpython-39.pyc 2025-08-14T21:55:07.7282095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.7290761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_analysis.cpython-39.pyc 2025-08-14T21:55:07.7294229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_transformation.cpython-39.pyc 2025-08-14T21:55:07.7297869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\cache_size.cpython-39.pyc 2025-08-14T21:55:07.7307182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\callback.cpython-39.pyc 2025-08-14T21:55:07.7310546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\codegen.cpython-39.pyc 2025-08-14T21:55:07.7314097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\code_context.cpython-39.pyc 2025-08-14T21:55:07.7317740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\compiled_autograd.cpython-39.pyc 2025-08-14T21:55:07.7321568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\comptime.cpython-39.pyc 2025-08-14T21:55:07.7324758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\config.cpython-39.pyc 2025-08-14T21:55:07.7328409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\convert_frame.cpython-39.pyc 2025-08-14T21:55:07.7332556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\create_parameter_op.cpython-39.pyc 2025-08-14T21:55:07.7336037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\current_scope_id.cpython-39.pyc 2025-08-14T21:55:07.7339515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:55:07.7342977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\decorators.cpython-39.pyc 2025-08-14T21:55:07.7346691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\device_interface.cpython-39.pyc 2025-08-14T21:55:07.7350383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:55:07.7359552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\eval_frame.cpython-39.pyc 2025-08-14T21:55:07.7363429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\exc.cpython-39.pyc 2025-08-14T21:55:07.7367254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\external_utils.cpython-39.pyc 2025-08-14T21:55:07.7371513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\funcname_cache.cpython-39.pyc 2025-08-14T21:55:07.7375293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_break_hints.cpython-39.pyc 2025-08-14T21:55:07.7379023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_deduplication.cpython-39.pyc 2025-08-14T21:55:07.7382712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_region_tracker.cpython-39.pyc 2025-08-14T21:55:07.7386373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_utils.cpython-39.pyc 2025-08-14T21:55:07.7395774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\guards.cpython-39.pyc 2025-08-14T21:55:07.7399518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:55:07.7403328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\logging.cpython-39.pyc 2025-08-14T21:55:07.7406899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\metrics_context.cpython-39.pyc 2025-08-14T21:55:07.7410276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\mutation_guard.cpython-39.pyc 2025-08-14T21:55:07.7413585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\output_graph.cpython-39.pyc 2025-08-14T21:55:07.7417858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\package.cpython-39.pyc 2025-08-14T21:55:07.7421382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\pgo.cpython-39.pyc 2025-08-14T21:55:07.7424928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\precompile_context.cpython-39.pyc 2025-08-14T21:55:07.7434793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:55:07.7438282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\replay_record.cpython-39.pyc 2025-08-14T21:55:07.7441655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\resume_execution.cpython-39.pyc 2025-08-14T21:55:07.7445071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\side_effects.cpython-39.pyc 2025-08-14T21:55:07.7448667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\source.cpython-39.pyc 2025-08-14T21:55:07.7452346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\symbolic_convert.cpython-39.pyc 2025-08-14T21:55:07.7456239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\tensor_version_op.cpython-39.pyc 2025-08-14T21:55:07.7459729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\testing.cpython-39.pyc 2025-08-14T21:55:07.7473691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_case.cpython-39.pyc 2025-08-14T21:55:07.7477837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_dont_skip_tracing_functions.cpython-39.pyc 2025-08-14T21:55:07.7481506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_minifier_common.cpython-39.pyc 2025-08-14T21:55:07.7484917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\trace_rules.cpython-39.pyc 2025-08-14T21:55:07.7488755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\types.cpython-39.pyc 2025-08-14T21:55:07.7492246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.7496127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\_trace_wrapped_higher_order_op.cpython-39.pyc 2025-08-14T21:55:07.7499535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.7514550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\converter.py 2025-08-14T21:55:07.7518040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\error.py 2025-08-14T21:55:07.7521310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\non_strict_utils.py 2025-08-14T21:55:07.7524761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_base.py 2025-08-14T21:55:07.7533945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\tools.py 2025-08-14T21:55:07.7537119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\utils.py 2025-08-14T21:55:07.7540444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\verifier.py 2025-08-14T21:55:07.7543667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\wrappers.py 2025-08-14T21:55:07.7546826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__init__.py 2025-08-14T21:55:07.7553460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\case.py 2025-08-14T21:55:07.7556731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\gen_example.py 2025-08-14T21:55:07.7559995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\logging.py 2025-08-14T21:55:07.7563052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__init__.py 2025-08-14T21:55:07.7569940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\assume_constant_result.py 2025-08-14T21:55:07.7573343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\autograd_function.py 2025-08-14T21:55:07.7576651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\class_method.py 2025-08-14T21:55:07.7585290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_class_method.py 2025-08-14T21:55:07.7588796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nested_function.py 2025-08-14T21:55:07.7592240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nonlocal_variables.py 2025-08-14T21:55:07.7595680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_closed_over_variable.py 2025-08-14T21:55:07.7599112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_operands.py 2025-08-14T21:55:07.7602461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_predicate.py 2025-08-14T21:55:07.7605819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_size_example.py 2025-08-14T21:55:07.7609555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_value_example.py 2025-08-14T21:55:07.7613125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\decorator.py 2025-08-14T21:55:07.7617084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dictionary.py 2025-08-14T21:55:07.7620492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_assert.py 2025-08-14T21:55:07.7624482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_constructor.py 2025-08-14T21:55:07.7627912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_if_guard.py 2025-08-14T21:55:07.7631326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_map.py 2025-08-14T21:55:07.7634798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_round.py 2025-08-14T21:55:07.7644553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_slicing.py 2025-08-14T21:55:07.7647991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_view.py 2025-08-14T21:55:07.7651383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\fn_with_kwargs.py 2025-08-14T21:55:07.7654823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_contains.py 2025-08-14T21:55:07.7658137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_unpack.py 2025-08-14T21:55:07.7661482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\model_attr_mutation.py 2025-08-14T21:55:07.7665006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\nested_function.py 2025-08-14T21:55:07.7668388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\null_context_manager.py 2025-08-14T21:55:07.7677700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\optional_input.py 2025-08-14T21:55:07.7681055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\pytree_flatten.py 2025-08-14T21:55:07.7684460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\scalar_output.py 2025-08-14T21:55:07.7687834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\specialized_attribute.py 2025-08-14T21:55:07.7691146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_for_loop.py 2025-08-14T21:55:07.7694573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_if.py 2025-08-14T21:55:07.7697826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\tensor_setattr.py 2025-08-14T21:55:07.7701186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\type_reflection_method.py 2025-08-14T21:55:07.7704524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\unsupported_operator.py 2025-08-14T21:55:07.7713580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\user_input_mutation.py 2025-08-14T21:55:07.7717002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__init__.py 2025-08-14T21:55:07.7725994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\assume_constant_result.cpython-39.pyc 2025-08-14T21:55:07.7729482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\autograd_function.cpython-39.pyc 2025-08-14T21:55:07.7732884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\class_method.cpython-39.pyc 2025-08-14T21:55:07.7741629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_class_method.cpython-39.pyc 2025-08-14T21:55:07.7745353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nested_function.cpython-39.pyc 2025-08-14T21:55:07.7748878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nonlocal_variables.cpython-39.pyc 2025-08-14T21:55:07.7752297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_closed_over_variable.cpython-39.pyc 2025-08-14T21:55:07.7756335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_operands.cpython-39.pyc 2025-08-14T21:55:07.7759832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_predicate.cpython-39.pyc 2025-08-14T21:55:07.7763355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_size_example.cpython-39.pyc 2025-08-14T21:55:07.7766988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_value_example.cpython-39.pyc 2025-08-14T21:55:07.7770427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\decorator.cpython-39.pyc 2025-08-14T21:55:07.7773853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dictionary.cpython-39.pyc 2025-08-14T21:55:07.7777344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_assert.cpython-39.pyc 2025-08-14T21:55:07.7780828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_constructor.cpython-39.pyc 2025-08-14T21:55:07.7784310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_if_guard.cpython-39.pyc 2025-08-14T21:55:07.7793991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_map.cpython-39.pyc 2025-08-14T21:55:07.7797637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_round.cpython-39.pyc 2025-08-14T21:55:07.7801217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_slicing.cpython-39.pyc 2025-08-14T21:55:07.7804757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_view.cpython-39.pyc 2025-08-14T21:55:07.7808326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\fn_with_kwargs.cpython-39.pyc 2025-08-14T21:55:07.7811799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_contains.cpython-39.pyc 2025-08-14T21:55:07.7816166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_unpack.cpython-39.pyc 2025-08-14T21:55:07.7824498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\model_attr_mutation.cpython-39.pyc 2025-08-14T21:55:07.7828295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\nested_function.cpython-39.pyc 2025-08-14T21:55:07.7831832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\null_context_manager.cpython-39.pyc 2025-08-14T21:55:07.7835716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\optional_input.cpython-39.pyc 2025-08-14T21:55:07.7839039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\pytree_flatten.cpython-39.pyc 2025-08-14T21:55:07.7843012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\scalar_output.cpython-39.pyc 2025-08-14T21:55:07.7847193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\specialized_attribute.cpython-39.pyc 2025-08-14T21:55:07.7851073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_for_loop.cpython-39.pyc 2025-08-14T21:55:07.7865432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_if.cpython-39.pyc 2025-08-14T21:55:07.7869513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\tensor_setattr.cpython-39.pyc 2025-08-14T21:55:07.7873508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\type_reflection_method.cpython-39.pyc 2025-08-14T21:55:07.7877579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\unsupported_operator.cpython-39.pyc 2025-08-14T21:55:07.7881381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\user_input_mutation.cpython-39.pyc 2025-08-14T21:55:07.7885015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.7901300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\case.cpython-39.pyc 2025-08-14T21:55:07.7904790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\gen_example.cpython-39.pyc 2025-08-14T21:55:07.7908106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\logging.cpython-39.pyc 2025-08-14T21:55:07.7917477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.7925360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py 2025-08-14T21:55:07.7928663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\collect_tracepoints_pass.py 2025-08-14T21:55:07.7932028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\constant_folding.py 2025-08-14T21:55:07.7940139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\functionalize_side_effectful_ops_pass.py 2025-08-14T21:55:07.7943473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\insert_custom_op_guards.py 2025-08-14T21:55:07.7946785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\lift_constants_pass.py 2025-08-14T21:55:07.7950292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\remove_runtime_assertions.py 2025-08-14T21:55:07.7953662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_autocast_with_hop_pass.py 2025-08-14T21:55:07.7957190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py 2025-08-14T21:55:07.7960704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_set_grad_with_hop_pass.py 2025-08-14T21:55:07.7964030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py 2025-08-14T21:55:07.7967329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_with_hop_pass_util.py 2025-08-14T21:55:07.7987900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\_node_metadata_hook.py 2025-08-14T21:55:07.7991246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__init__.py 2025-08-14T21:55:07.7998992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\add_runtime_assertions_for_constraints_pass.cpython-39.pyc 2025-08-14T21:55:07.8002321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\collect_tracepoints_pass.cpython-39.pyc 2025-08-14T21:55:07.8012941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\constant_folding.cpython-39.pyc 2025-08-14T21:55:07.8016639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\functionalize_side_effectful_ops_pass.cpython-39.pyc 2025-08-14T21:55:07.8020205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\insert_custom_op_guards.cpython-39.pyc 2025-08-14T21:55:07.8023817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\lift_constants_pass.cpython-39.pyc 2025-08-14T21:55:07.8027383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\remove_runtime_assertions.cpython-39.pyc 2025-08-14T21:55:07.8030913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_autocast_with_hop_pass.cpython-39.pyc 2025-08-14T21:55:07.8035225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_quantized_ops_with_standard_ops_pass.cpython-39.pyc 2025-08-14T21:55:07.8039125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_set_grad_with_hop_pass.cpython-39.pyc 2025-08-14T21:55:07.8042636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_view_ops_with_view_copy_ops_pass.cpython-39.pyc 2025-08-14T21:55:07.8046226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_with_hop_pass_util.cpython-39.pyc 2025-08-14T21:55:07.8049662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\_node_metadata_hook.cpython-39.pyc 2025-08-14T21:55:07.8053206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8061388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\node_metadata.py 2025-08-14T21:55:07.8064755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\proxy_value.py 2025-08-14T21:55:07.8068145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__init__.py 2025-08-14T21:55:07.8079688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\node_metadata.cpython-39.pyc 2025-08-14T21:55:07.8083234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\proxy_value.cpython-39.pyc 2025-08-14T21:55:07.8086751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8101571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\dynamic_shapes.py 2025-08-14T21:55:07.8105119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\export_schema.thrift 2025-08-14T21:55:07.8108444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.py 2025-08-14T21:55:07.8111567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.yaml 2025-08-14T21:55:07.8120057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema_check.py 2025-08-14T21:55:07.8123382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\serialize.py 2025-08-14T21:55:07.8128069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\union.py 2025-08-14T21:55:07.8131412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__init__.py 2025-08-14T21:55:07.8137644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-14T21:55:07.8141210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema.cpython-39.pyc 2025-08-14T21:55:07.8144718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema_check.cpython-39.pyc 2025-08-14T21:55:07.8153628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\serialize.cpython-39.pyc 2025-08-14T21:55:07.8158047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\union.cpython-39.pyc 2025-08-14T21:55:07.8161692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8169217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\converter.cpython-39.pyc 2025-08-14T21:55:07.8172759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\error.cpython-39.pyc 2025-08-14T21:55:07.8176428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\non_strict_utils.cpython-39.pyc 2025-08-14T21:55:07.8185540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\pass_base.cpython-39.pyc 2025-08-14T21:55:07.8189033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\tools.cpython-39.pyc 2025-08-14T21:55:07.8192322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.8196007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\verifier.cpython-39.pyc 2025-08-14T21:55:07.8199453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\wrappers.cpython-39.pyc 2025-08-14T21:55:07.8202741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8211784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\aot_autograd.py 2025-08-14T21:55:07.8216667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\apis.py 2025-08-14T21:55:07.8220412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\autograd_function.py 2025-08-14T21:55:07.8224098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\batch_norm_replacement.py 2025-08-14T21:55:07.8233324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\benchmark_utils.py 2025-08-14T21:55:07.8236831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compilers.py 2025-08-14T21:55:07.8240356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compile_utils.py 2025-08-14T21:55:07.8243583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\config.py 2025-08-14T21:55:07.8247185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\deprecated.py 2025-08-14T21:55:07.8250433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\eager_transforms.py 2025-08-14T21:55:07.8254007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\functional_call.py 2025-08-14T21:55:07.8257476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\fx_minifier.py 2025-08-14T21:55:07.8260841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\make_functional.py 2025-08-14T21:55:07.8264196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\partitioners.py 2025-08-14T21:55:07.8267903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pyfunctorch.py 2025-08-14T21:55:07.8271224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\python_key.py 2025-08-14T21:55:07.8274775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pytree_hacks.py 2025-08-14T21:55:07.8287976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\top_operators_github_usage.py 2025-08-14T21:55:07.8291445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\utils.py 2025-08-14T21:55:07.8294487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\vmap.py 2025-08-14T21:55:07.8297935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__init__.py 2025-08-14T21:55:07.8310741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\ac_logging_utils.py 2025-08-14T21:55:07.8314125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\graph_info_provider.py 2025-08-14T21:55:07.8317533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack.py 2025-08-14T21:55:07.8326664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py 2025-08-14T21:55:07.8330123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__init__.py 2025-08-14T21:55:07.8337876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\ac_logging_utils.cpython-39.pyc 2025-08-14T21:55:07.8341242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\graph_info_provider.cpython-39.pyc 2025-08-14T21:55:07.8344781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack.cpython-39.pyc 2025-08-14T21:55:07.8353293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack_evaluator.cpython-39.pyc 2025-08-14T21:55:07.8356862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8365506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\autograd_cache.py 2025-08-14T21:55:07.8368996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\collect_metadata_analysis.py 2025-08-14T21:55:07.8372480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\descriptors.py 2025-08-14T21:55:07.8381861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\frontend_utils.py 2025-08-14T21:55:07.8385261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\functional_utils.py 2025-08-14T21:55:07.8388842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\fx_utils.py 2025-08-14T21:55:07.8392063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture.py 2025-08-14T21:55:07.8395786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture_wrappers.py 2025-08-14T21:55:07.8399390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_compile.py 2025-08-14T21:55:07.8403176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\input_output_analysis.py 2025-08-14T21:55:07.8406572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\logging_utils.py 2025-08-14T21:55:07.8410246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\runtime_wrappers.py 2025-08-14T21:55:07.8413997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\schemas.py 2025-08-14T21:55:07.8417661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_parametrization.py 2025-08-14T21:55:07.8420957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_utils.py 2025-08-14T21:55:07.8424539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\utils.py 2025-08-14T21:55:07.8427831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__init__.py 2025-08-14T21:55:07.8435519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\autograd_cache.cpython-39.pyc 2025-08-14T21:55:07.8439233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\collect_metadata_analysis.cpython-39.pyc 2025-08-14T21:55:07.8442668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\descriptors.cpython-39.pyc 2025-08-14T21:55:07.8451958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\frontend_utils.cpython-39.pyc 2025-08-14T21:55:07.8455603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\functional_utils.cpython-39.pyc 2025-08-14T21:55:07.8458965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\fx_utils.cpython-39.pyc 2025-08-14T21:55:07.8462509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture.cpython-39.pyc 2025-08-14T21:55:07.8465928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture_wrappers.cpython-39.pyc 2025-08-14T21:55:07.8469772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_compile.cpython-39.pyc 2025-08-14T21:55:07.8473888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\input_output_analysis.cpython-39.pyc 2025-08-14T21:55:07.8477674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\logging_utils.cpython-39.pyc 2025-08-14T21:55:07.8481682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\runtime_wrappers.cpython-39.pyc 2025-08-14T21:55:07.8485680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\schemas.cpython-39.pyc 2025-08-14T21:55:07.8489746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_parametrization.cpython-39.pyc 2025-08-14T21:55:07.8494249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_utils.cpython-39.pyc 2025-08-14T21:55:07.8498157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.8507323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8516815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\aot_autograd.cpython-39.pyc 2025-08-14T21:55:07.8520837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\apis.cpython-39.pyc 2025-08-14T21:55:07.8524488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\autograd_function.cpython-39.pyc 2025-08-14T21:55:07.8533863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\batch_norm_replacement.cpython-39.pyc 2025-08-14T21:55:07.8537344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\benchmark_utils.cpython-39.pyc 2025-08-14T21:55:07.8540792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compilers.cpython-39.pyc 2025-08-14T21:55:07.8544457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compile_utils.cpython-39.pyc 2025-08-14T21:55:07.8547956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\config.cpython-39.pyc 2025-08-14T21:55:07.8551394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\deprecated.cpython-39.pyc 2025-08-14T21:55:07.8554982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\eager_transforms.cpython-39.pyc 2025-08-14T21:55:07.8558697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\functional_call.cpython-39.pyc 2025-08-14T21:55:07.8562069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\fx_minifier.cpython-39.pyc 2025-08-14T21:55:07.8565611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\make_functional.cpython-39.pyc 2025-08-14T21:55:07.8569248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\partitioners.cpython-39.pyc 2025-08-14T21:55:07.8573029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pyfunctorch.cpython-39.pyc 2025-08-14T21:55:07.8576568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\python_key.cpython-39.pyc 2025-08-14T21:55:07.8585371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pytree_hacks.cpython-39.pyc 2025-08-14T21:55:07.8588862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\top_operators_github_usage.cpython-39.pyc 2025-08-14T21:55:07.8592236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.8596198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\vmap.cpython-39.pyc 2025-08-14T21:55:07.8599764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8608121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\aoti_call_delegate.py 2025-08-14T21:55:07.8611398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\associative_scan.py 2025-08-14T21:55:07.8614728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\auto_functionalize.py 2025-08-14T21:55:07.8625033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\base_hop.py 2025-08-14T21:55:07.8627721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\cond.py 2025-08-14T21:55:07.8631002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\effects.py 2025-08-14T21:55:07.8634341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\executorch_call_delegate.py 2025-08-14T21:55:07.8637865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flat_apply.py 2025-08-14T21:55:07.8641111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flex_attention.py 2025-08-14T21:55:07.8644513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\foreach_map.py 2025-08-14T21:55:07.8648300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\hints_wrap.py 2025-08-14T21:55:07.8651704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\invoke_subgraph.py 2025-08-14T21:55:07.8655051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\map.py 2025-08-14T21:55:07.8658248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\out_dtype.py 2025-08-14T21:55:07.8661671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\run_const_graph.py 2025-08-14T21:55:07.8665026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\scan.py 2025-08-14T21:55:07.8668557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\schema.py 2025-08-14T21:55:07.8672071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\strict_mode.py 2025-08-14T21:55:07.8675426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\torchbind.py 2025-08-14T21:55:07.8678745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\triton_kernel_wrap.py 2025-08-14T21:55:07.8682570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\utils.py 2025-08-14T21:55:07.8685997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\while_loop.py 2025-08-14T21:55:07.8695937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\wrap.py 2025-08-14T21:55:07.8699207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\_invoke_quant.py 2025-08-14T21:55:07.8702546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__init__.py 2025-08-14T21:55:07.8710379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\aoti_call_delegate.cpython-39.pyc 2025-08-14T21:55:07.8713753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\associative_scan.cpython-39.pyc 2025-08-14T21:55:07.8717213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\auto_functionalize.cpython-39.pyc 2025-08-14T21:55:07.8727162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\base_hop.cpython-39.pyc 2025-08-14T21:55:07.8730588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\cond.cpython-39.pyc 2025-08-14T21:55:07.8734071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\effects.cpython-39.pyc 2025-08-14T21:55:07.8737791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\executorch_call_delegate.cpython-39.pyc 2025-08-14T21:55:07.8741092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flat_apply.cpython-39.pyc 2025-08-14T21:55:07.8745087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:55:07.8748564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\foreach_map.cpython-39.pyc 2025-08-14T21:55:07.8752024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\hints_wrap.cpython-39.pyc 2025-08-14T21:55:07.8755484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\invoke_subgraph.cpython-39.pyc 2025-08-14T21:55:07.8758940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\map.cpython-39.pyc 2025-08-14T21:55:07.8762365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\out_dtype.cpython-39.pyc 2025-08-14T21:55:07.8765764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\run_const_graph.cpython-39.pyc 2025-08-14T21:55:07.8769459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\scan.cpython-39.pyc 2025-08-14T21:55:07.8773041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\schema.cpython-39.pyc 2025-08-14T21:55:07.8781703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\strict_mode.cpython-39.pyc 2025-08-14T21:55:07.8785163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\torchbind.cpython-39.pyc 2025-08-14T21:55:07.8788608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\triton_kernel_wrap.cpython-39.pyc 2025-08-14T21:55:07.8792418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:07.8796140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\while_loop.cpython-39.pyc 2025-08-14T21:55:07.8799599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\wrap.cpython-39.pyc 2025-08-14T21:55:07.8802973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\_invoke_quant.cpython-39.pyc 2025-08-14T21:55:07.8806516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.8821118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analyze_preserves_zero_mask.py 2025-08-14T21:55:07.8824404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\aoti_eager.py 2025-08-14T21:55:07.8827870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\async_compile.py 2025-08-14T21:55:07.8836585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autotune_process.py 2025-08-14T21:55:07.8840092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\await_utils.py 2025-08-14T21:55:07.8843361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\bounds.py 2025-08-14T21:55:07.8846558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\choices.py 2025-08-14T21:55:07.8849874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codecache.py 2025-08-14T21:55:07.8854228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms.py 2025-08-14T21:55:07.8857772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_analysis.py 2025-08-14T21:55:07.8861169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_lowering.py 2025-08-14T21:55:07.8864765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compiler_bisector.py 2025-08-14T21:55:07.8868195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx.py 2025-08-14T21:55:07.8872329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_async.py 2025-08-14T21:55:07.8875933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_ext.py 2025-08-14T21:55:07.8879453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_subproc.py 2025-08-14T21:55:07.8883289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\config.py 2025-08-14T21:55:07.8887280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\constant_folding.py 2025-08-14T21:55:07.8890704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpp_builder.py 2025-08-14T21:55:07.8894631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpu_vec_isa.py 2025-08-14T21:55:07.8898159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_trees.py 2025-08-14T21:55:07.8907461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_utils.py 2025-08-14T21:55:07.8910875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\custom_graph_pass.py 2025-08-14T21:55:07.8914372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\debug.py 2025-08-14T21:55:07.8917878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\decomposition.py 2025-08-14T21:55:07.8921302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dependencies.py 2025-08-14T21:55:07.8924797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dtype_propagation.py 2025-08-14T21:55:07.8928405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\exc.py 2025-08-14T21:55:07.8931935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\extern_node_serializer.py 2025-08-14T21:55:07.8935350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing.py 2025-08-14T21:55:07.8938589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing_utils.py 2025-08-14T21:55:07.8942040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fuzzer.py 2025-08-14T21:55:07.8950409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_utils.py 2025-08-14T21:55:07.8954016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\graph.py 2025-08-14T21:55:07.8957944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\hooks.py 2025-08-14T21:55:07.8961274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\index_propagation.py 2025-08-14T21:55:07.8964769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\inductor_prims.py 2025-08-14T21:55:07.8968373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ir.py 2025-08-14T21:55:07.8973182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\jagged_lowerings.py 2025-08-14T21:55:07.8976755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel_inputs.py 2025-08-14T21:55:07.8980083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\loop_body.py 2025-08-14T21:55:07.8984039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\lowering.py 2025-08-14T21:55:07.8988652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\memory.py 2025-08-14T21:55:07.8992129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\metrics.py 2025-08-14T21:55:07.8995618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_ir.py 2025-08-14T21:55:07.9005663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_lowerings.py 2025-08-14T21:55:07.9009858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mock_cache.py 2025-08-14T21:55:07.9013641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ops_handler.py 2025-08-14T21:55:07.9017685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\optimize_indexing.py 2025-08-14T21:55:07.9021045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\output_code.py 2025-08-14T21:55:07.9024661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\pattern_matcher.py 2025-08-14T21:55:07.9028434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\quantized_lowerings.py 2025-08-14T21:55:07.9031954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_cache.py 2025-08-14T21:55:07.9035585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_gemm_autotune_cache.py 2025-08-14T21:55:07.9050057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\scheduler.py 2025-08-14T21:55:07.9054510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\script.ld 2025-08-14T21:55:07.9058063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\select_algorithm.py 2025-08-14T21:55:07.9062432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\sizevars.py 2025-08-14T21:55:07.9066122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\standalone_compile.py 2025-08-14T21:55:07.9069573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\subgraph_lowering.py 2025-08-14T21:55:07.9087847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics.py 2025-08-14T21:55:07.9091770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_registry.py 2025-08-14T21:55:07.9096351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_case.py 2025-08-14T21:55:07.9100166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_operators.py 2025-08-14T21:55:07.9109507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\tiling_utils.py 2025-08-14T21:55:07.9112897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\triton_bundler.py 2025-08-14T21:55:07.9116475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\utils.py 2025-08-14T21:55:07.9120332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\virtualized.py 2025-08-14T21:55:07.9124144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\wrapper_benchmark.py 2025-08-14T21:55:07.9127799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__autotune_main__.py 2025-08-14T21:55:07.9131205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__init__.py 2025-08-14T21:55:07.9138637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\device_info.py 2025-08-14T21:55:07.9142005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\profile_analysis.py 2025-08-14T21:55:07.9145279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__init__.py 2025-08-14T21:55:07.9158135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\device_info.cpython-39.pyc 2025-08-14T21:55:07.9161840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\profile_analysis.cpython-39.pyc 2025-08-14T21:55:07.9165687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9178921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic.py 2025-08-14T21:55:07.9182617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic_utils.py 2025-08-14T21:55:07.9186015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learnedheuristic_interface.py 2025-08-14T21:55:07.9195410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learned_heuristic_controller.py 2025-08-14T21:55:07.9198778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__init__.py 2025-08-14T21:55:07.9204848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py 2025-08-14T21:55:07.9208364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py 2025-08-14T21:55:07.9211879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py 2025-08-14T21:55:07.9221210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py 2025-08-14T21:55:07.9224824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py 2025-08-14T21:55:07.9228372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__init__.py 2025-08-14T21:55:07.9234936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMA100.cpython-39.pyc 2025-08-14T21:55:07.9238522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMH100.cpython-39.pyc 2025-08-14T21:55:07.9242052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingA100.cpython-39.pyc 2025-08-14T21:55:07.9252929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingH100.cpython-39.pyc 2025-08-14T21:55:07.9256613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_PadMMA100.cpython-39.pyc 2025-08-14T21:55:07.9260077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9267824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic.cpython-39.pyc 2025-08-14T21:55:07.9271551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic_utils.cpython-39.pyc 2025-08-14T21:55:07.9275291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learnedheuristic_interface.cpython-39.pyc 2025-08-14T21:55:07.9284296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learned_heuristic_controller.cpython-39.pyc 2025-08-14T21:55:07.9287979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9296578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_hipify_utils.py 2025-08-14T21:55:07.9299991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\block_analysis.py 2025-08-14T21:55:07.9303201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\common.py 2025-08-14T21:55:07.9306987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp.py 2025-08-14T21:55:07.9311322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_bmm_template.py 2025-08-14T21:55:07.9320920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_flex_attention_template.py 2025-08-14T21:55:07.9324601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_gemm_template.py 2025-08-14T21:55:07.9328584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_grouped_gemm_template.py 2025-08-14T21:55:07.9332084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_micro_gemm.py 2025-08-14T21:55:07.9335817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template.py 2025-08-14T21:55:07.9339208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template_kernel.py 2025-08-14T21:55:07.9342856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_utils.py 2025-08-14T21:55:07.9346360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu.py 2025-08-14T21:55:07.9350499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py 2025-08-14T21:55:07.9354215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_gpu.py 2025-08-14T21:55:07.9358131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_mps.py 2025-08-14T21:55:07.9361649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpu_device_op_overrides.py 2025-08-14T21:55:07.9365277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda_combined_scheduling.py 2025-08-14T21:55:07.9369379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\debug_utils.py 2025-08-14T21:55:07.9378752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\halide.py 2025-08-14T21:55:07.9382789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\memory_planning.py 2025-08-14T21:55:07.9386852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps.py 2025-08-14T21:55:07.9390858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps_device_op_overrides.py 2025-08-14T21:55:07.9395747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\multi_kernel.py 2025-08-14T21:55:07.9399916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\python_wrapper_mtia.py 2025-08-14T21:55:07.9403909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd.py 2025-08-14T21:55:07.9408657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd_kernel_features.py 2025-08-14T21:55:07.9412213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\subgraph.py 2025-08-14T21:55:07.9415592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton.py 2025-08-14T21:55:07.9419858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_combo_kernel.py 2025-08-14T21:55:07.9423907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_split_scan.py 2025-08-14T21:55:07.9685946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_utils.py 2025-08-14T21:55:07.9689401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper.py 2025-08-14T21:55:07.9693488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper_fxir.py 2025-08-14T21:55:07.9697102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__init__.py 2025-08-14T21:55:07.9703512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_runtime\interface.cpp 2025-08-14T21:55:07.9711191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py 2025-08-14T21:55:07.9714821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_env.py 2025-08-14T21:55:07.9718498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_kernel.py 2025-08-14T21:55:07.9721915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_template.py 2025-08-14T21:55:07.9730797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_cache.py 2025-08-14T21:55:07.9734298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_presets.py 2025-08-14T21:55:07.9738093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_python_evt.py 2025-08-14T21:55:07.9741609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_utils.py 2025-08-14T21:55:07.9745038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\device_op_overrides.py 2025-08-14T21:55:07.9748688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\gemm_template.py 2025-08-14T21:55:07.9766830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\serialization.py 2025-08-14T21:55:07.9767125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__init__.py 2025-08-14T21:55:07.9767479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py 2025-08-14T21:55:07.9767885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py 2025-08-14T21:55:07.9771429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py 2025-08-14T21:55:07.9783905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py 2025-08-14T21:55:07.9790700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py 2025-08-14T21:55:07.9794542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py 2025-08-14T21:55:07.9798151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py 2025-08-14T21:55:07.9805182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cuda.cpython-39.pyc 2025-08-14T21:55:07.9810101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cudart.cpython-39.pyc 2025-08-14T21:55:07.9814396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9827445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py 2025-08-14T21:55:07.9834706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9842027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py 2025-08-14T21:55:07.9845742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py 2025-08-14T21:55:07.9853188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\special.cpython-39.pyc 2025-08-14T21:55:07.9856665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9870273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9879055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\evt_extensions.cpython-39.pyc 2025-08-14T21:55:07.9883074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\gemm_operation_extensions.cpython-39.pyc 2025-08-14T21:55:07.9887045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9901341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_cpp_scheduling.cpython-39.pyc 2025-08-14T21:55:07.9905223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_env.cpython-39.pyc 2025-08-14T21:55:07.9908968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_kernel.cpython-39.pyc 2025-08-14T21:55:07.9917600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_template.cpython-39.pyc 2025-08-14T21:55:07.9921205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_cache.cpython-39.pyc 2025-08-14T21:55:07.9924805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_presets.cpython-39.pyc 2025-08-14T21:55:07.9928491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_python_evt.cpython-39.pyc 2025-08-14T21:55:07.9932266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_utils.cpython-39.pyc 2025-08-14T21:55:07.9935929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:55:07.9939604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\gemm_template.cpython-39.pyc 2025-08-14T21:55:07.9943307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:55:07.9947033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9955216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\device_op_overrides.py 2025-08-14T21:55:07.9958729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__init__.py 2025-08-14T21:55:07.9964874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:55:07.9968363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:07.9975925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_conv_template.py 2025-08-14T21:55:07.9979381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_template.py 2025-08-14T21:55:07.9982783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_template.py 2025-08-14T21:55:07.9986247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py 2025-08-14T21:55:07.9996118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py 2025-08-14T21:55:07.9999795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\compile_command.py 2025-08-14T21:55:08.0003346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_benchmark_request.py 2025-08-14T21:55:08.0007038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py 2025-08-14T21:55:08.0010507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_kernel.py 2025-08-14T21:55:08.0013882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template.py 2025-08-14T21:55:08.0017229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template_buffer.py 2025-08-14T21:55:08.0020652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_utils.py 2025-08-14T21:55:08.0024749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__init__.py 2025-08-14T21:55:08.0031349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_conv_template.cpython-39.pyc 2025-08-14T21:55:08.0035328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_template.cpython-39.pyc 2025-08-14T21:55:08.0038755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_template.cpython-39.pyc 2025-08-14T21:55:08.0047204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_universal_gemm_template.cpython-39.pyc 2025-08-14T21:55:08.0051024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_universal_gemm_template.cpython-39.pyc 2025-08-14T21:55:08.0054799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\compile_command.cpython-39.pyc 2025-08-14T21:55:08.0058375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_benchmark_request.cpython-39.pyc 2025-08-14T21:55:08.0062117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_cpp_scheduling.cpython-39.pyc 2025-08-14T21:55:08.0065625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_kernel.cpython-39.pyc 2025-08-14T21:55:08.0069265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template.cpython-39.pyc 2025-08-14T21:55:08.0072781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template_buffer.cpython-39.pyc 2025-08-14T21:55:08.0076328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_utils.cpython-39.pyc 2025-08-14T21:55:08.0080193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:08.0088531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\device_op_overrides.py 2025-08-14T21:55:08.0092095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__init__.py 2025-08-14T21:55:08.0097981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:55:08.0101609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:08.0109660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\aoti_hipify_utils.cpython-39.pyc 2025-08-14T21:55:08.0113095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\block_analysis.cpython-39.pyc 2025-08-14T21:55:08.0116574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\common.cpython-39.pyc 2025-08-14T21:55:08.0125641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp.cpython-39.pyc 2025-08-14T21:55:08.0129980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_bmm_template.cpython-39.pyc 2025-08-14T21:55:08.0133516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_flex_attention_template.cpython-39.pyc 2025-08-14T21:55:08.0138887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_gemm_template.cpython-39.pyc 2025-08-14T21:55:08.0144934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_grouped_gemm_template.cpython-39.pyc 2025-08-14T21:55:08.0150023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_micro_gemm.cpython-39.pyc 2025-08-14T21:55:08.0155084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template.cpython-39.pyc 2025-08-14T21:55:08.0159114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template_kernel.cpython-39.pyc 2025-08-14T21:55:08.0162654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_utils.cpython-39.pyc 2025-08-14T21:55:08.0166771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu.cpython-39.pyc 2025-08-14T21:55:08.0170634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu_array_ref.cpython-39.pyc 2025-08-14T21:55:08.0174364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_gpu.cpython-39.pyc 2025-08-14T21:55:08.0178152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_mps.cpython-39.pyc 2025-08-14T21:55:08.5208352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpu_device_op_overrides.cpython-39.pyc 2025-08-14T21:55:08.5211935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cuda_combined_scheduling.cpython-39.pyc 2025-08-14T21:55:08.5215487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:55:08.5219744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\halide.cpython-39.pyc 2025-08-14T21:55:08.5224340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\memory_planning.cpython-39.pyc 2025-08-14T21:55:08.5228195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps.cpython-39.pyc 2025-08-14T21:55:08.5231822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps_device_op_overrides.cpython-39.pyc 2025-08-14T21:55:08.5235403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\multi_kernel.cpython-39.pyc 2025-08-14T21:55:09.0386683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\python_wrapper_mtia.cpython-39.pyc 2025-08-14T21:55:09.0390668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd.cpython-39.pyc 2025-08-14T21:55:09.0394421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd_kernel_features.cpython-39.pyc 2025-08-14T21:55:09.0398303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\subgraph.cpython-39.pyc 2025-08-14T21:55:09.0401815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton.cpython-39.pyc 2025-08-14T21:55:09.0406264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_combo_kernel.cpython-39.pyc 2025-08-14T21:55:09.0409942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_split_scan.cpython-39.pyc 2025-08-14T21:55:09.0414325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_utils.cpython-39.pyc 2025-08-14T21:55:09.5522384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper.cpython-39.pyc 2025-08-14T21:55:09.5526862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper_fxir.cpython-39.pyc 2025-08-14T21:55:09.5530575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:09.5540841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\subproc_pool.py 2025-08-14T21:55:09.5544398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\tracked_process_pool.py 2025-08-14T21:55:09.5547896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\utils.py 2025-08-14T21:55:09.5551291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__init__.py 2025-08-14T21:55:09.5664066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__main__.py 2025-08-14T21:55:09.5671133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\subproc_pool.cpython-39.pyc 2025-08-14T21:55:09.5674710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\tracked_process_pool.cpython-39.pyc 2025-08-14T21:55:09.5678251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:09.5775474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:09.5778771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:55:09.5790218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\b2b_gemm.py 2025-08-14T21:55:09.5795007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\binary_folding.py 2025-08-14T21:55:09.5800347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\bucketing.py 2025-08-14T21:55:09.5804805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\ddp_fusion.py 2025-08-14T21:55:09.5880827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\decompose_mem_bound_mm.py 2025-08-14T21:55:09.5885487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\dedupe_symint_uses.py 2025-08-14T21:55:09.5890427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\efficient_conv_bn_eval.py 2025-08-14T21:55:09.5893970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\freezing_patterns.py 2025-08-14T21:55:09.5898892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fsdp.py 2025-08-14T21:55:09.5903802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fuse_attention.py 2025-08-14T21:55:09.5908403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\group_batch_fusion.py 2025-08-14T21:55:09.5912130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\joint_graph.py 2025-08-14T21:55:09.5915952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\micro_pipeline_tp.py 2025-08-14T21:55:09.5919823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\misc_patterns.py 2025-08-14T21:55:09.5923278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\mkldnn_fusion.py 2025-08-14T21:55:09.5927038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\numeric_utils.py 2025-08-14T21:55:09.5930572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pad_mm.py 2025-08-14T21:55:09.5935289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\post_grad.py 2025-08-14T21:55:09.5939324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pre_grad.py 2025-08-14T21:55:09.5942758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\quantization.py 2025-08-14T21:55:09.5947059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\reinplace.py 2025-08-14T21:55:10.3292725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\replace_random.py 2025-08-14T21:55:10.3295963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\split_cat.py 2025-08-14T21:55:10.3300182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__init__.py 2025-08-14T21:55:10.3309675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_gelu_pattern.py 2025-08-14T21:55:10.3313257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_gelu_pattern_2.py 2025-08-14T21:55:10.3317100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py 2025-08-14T21:55:10.6200867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_relu_pattern.py 2025-08-14T21:55:10.6204800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_relu_pattern_2.py 2025-08-14T21:55:10.6207709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py 2025-08-14T21:55:10.6211041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py 2025-08-14T21:55:10.6214495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py 2025-08-14T21:55:10.6217991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py 2025-08-14T21:55:10.6222160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py 2025-08-14T21:55:10.6225754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py 2025-08-14T21:55:10.6229235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py 2025-08-14T21:55:10.6232640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py 2025-08-14T21:55:10.6236158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py 2025-08-14T21:55:10.6239614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py 2025-08-14T21:55:10.6243250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py 2025-08-14T21:55:10.6246829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py 2025-08-14T21:55:10.6250455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py 2025-08-14T21:55:10.7885262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py 2025-08-14T21:55:10.7888806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py 2025-08-14T21:55:10.7892817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py 2025-08-14T21:55:10.7896837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py 2025-08-14T21:55:10.7900884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py 2025-08-14T21:55:10.7904961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py 2025-08-14T21:55:10.7909188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py 2025-08-14T21:55:10.7913431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py 2025-08-14T21:55:10.7917770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py 2025-08-14T21:55:10.7921897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py 2025-08-14T21:55:10.7925743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py 2025-08-14T21:55:10.7940861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py 2025-08-14T21:55:10.7944205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py 2025-08-14T21:55:10.7947947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__init__.py 2025-08-14T21:55:10.7958710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_gelu_pattern.cpython-39.pyc 2025-08-14T21:55:10.7962416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_gelu_pattern_2.cpython-39.pyc 2025-08-14T21:55:10.7966392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_pattern.cpython-39.pyc 2025-08-14T21:55:10.7981140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_relu_pattern.cpython-39.pyc 2025-08-14T21:55:10.7984598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_relu_pattern_2.cpython-39.pyc 2025-08-14T21:55:10.7988278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\bmm_pattern.cpython-39.pyc 2025-08-14T21:55:10.7991769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\mm_pattern.cpython-39.pyc 2025-08-14T21:55:10.7995396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_1.cpython-39.pyc 2025-08-14T21:55:10.7999193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_10.cpython-39.pyc 2025-08-14T21:55:10.8002673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_11.cpython-39.pyc 2025-08-14T21:55:10.8006142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_12.cpython-39.pyc 2025-08-14T21:55:10.8009606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_13.cpython-39.pyc 2025-08-14T21:55:10.8013108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_14.cpython-39.pyc 2025-08-14T21:55:10.8016992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_15.cpython-39.pyc 2025-08-14T21:55:10.8020255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_16.cpython-39.pyc 2025-08-14T21:55:10.8024103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_17.cpython-39.pyc 2025-08-14T21:55:10.8038585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_18.cpython-39.pyc 2025-08-14T21:55:10.8042188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_19.cpython-39.pyc 2025-08-14T21:55:10.8045827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_2.cpython-39.pyc 2025-08-14T21:55:10.8049439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_20.cpython-39.pyc 2025-08-14T21:55:10.8052892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_21.cpython-39.pyc 2025-08-14T21:55:10.8056579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_22.cpython-39.pyc 2025-08-14T21:55:10.8060183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_23.cpython-39.pyc 2025-08-14T21:55:10.8063829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_24.cpython-39.pyc 2025-08-14T21:55:10.8067505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_3.cpython-39.pyc 2025-08-14T21:55:10.8071420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_4.cpython-39.pyc 2025-08-14T21:55:10.8075133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_5.cpython-39.pyc 2025-08-14T21:55:10.8078756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_6.cpython-39.pyc 2025-08-14T21:55:10.8090801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_7.cpython-39.pyc 2025-08-14T21:55:10.8098206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_8.cpython-39.pyc 2025-08-14T21:55:10.8101974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_9.cpython-39.pyc 2025-08-14T21:55:10.8105607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.8117313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\b2b_gemm.cpython-39.pyc 2025-08-14T21:55:10.8120716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\binary_folding.cpython-39.pyc 2025-08-14T21:55:10.8124311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\bucketing.cpython-39.pyc 2025-08-14T21:55:10.8138714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\ddp_fusion.cpython-39.pyc 2025-08-14T21:55:10.8142200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\decompose_mem_bound_mm.cpython-39.pyc 2025-08-14T21:55:10.8145629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\dedupe_symint_uses.cpython-39.pyc 2025-08-14T21:55:10.8149150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\efficient_conv_bn_eval.cpython-39.pyc 2025-08-14T21:55:10.8152471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\freezing_patterns.cpython-39.pyc 2025-08-14T21:55:10.8155932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fsdp.cpython-39.pyc 2025-08-14T21:55:10.8159437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fuse_attention.cpython-39.pyc 2025-08-14T21:55:10.8162957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\group_batch_fusion.cpython-39.pyc 2025-08-14T21:55:10.8166517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\joint_graph.cpython-39.pyc 2025-08-14T21:55:10.8170045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\micro_pipeline_tp.cpython-39.pyc 2025-08-14T21:55:10.8173562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\misc_patterns.cpython-39.pyc 2025-08-14T21:55:10.8177008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\mkldnn_fusion.cpython-39.pyc 2025-08-14T21:55:10.8180761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\numeric_utils.cpython-39.pyc 2025-08-14T21:55:10.8195497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pad_mm.cpython-39.pyc 2025-08-14T21:55:10.8199090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\post_grad.cpython-39.pyc 2025-08-14T21:55:10.8203265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pre_grad.cpython-39.pyc 2025-08-14T21:55:10.8207260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\quantization.cpython-39.pyc 2025-08-14T21:55:10.8211020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\reinplace.cpython-39.pyc 2025-08-14T21:55:10.8214710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\replace_random.cpython-39.pyc 2025-08-14T21:55:10.8218469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\split_cat.cpython-39.pyc 2025-08-14T21:55:10.8222257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.8231167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\bmm.py 2025-08-14T21:55:10.8234856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\conv.py 2025-08-14T21:55:10.8238620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm.py 2025-08-14T21:55:10.8242366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_common.py 2025-08-14T21:55:10.8246096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_grouped.py 2025-08-14T21:55:10.8260507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_plus_mm.py 2025-08-14T21:55:10.8264411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__init__.py 2025-08-14T21:55:10.8271363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\common.py 2025-08-14T21:55:10.8274745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_attention.py 2025-08-14T21:55:10.8278299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_cpu.py 2025-08-14T21:55:10.8281523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_decoding.py 2025-08-14T21:55:10.8285020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__init__.py 2025-08-14T21:55:10.8303367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\common.py.jinja 2025-08-14T21:55:10.8306792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja 2025-08-14T21:55:10.8310415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja 2025-08-14T21:55:10.8324974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja 2025-08-14T21:55:10.8328391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\utilities.py.jinja 2025-08-14T21:55:10.8335622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\common.cpython-39.pyc 2025-08-14T21:55:10.8339074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:55:10.8342459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_cpu.cpython-39.pyc 2025-08-14T21:55:10.8356812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_decoding.cpython-39.pyc 2025-08-14T21:55:10.8360260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.8367863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\bmm.cpython-39.pyc 2025-08-14T21:55:10.8371163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\conv.cpython-39.pyc 2025-08-14T21:55:10.8374489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm.cpython-39.pyc 2025-08-14T21:55:10.8388812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_common.cpython-39.pyc 2025-08-14T21:55:10.8392351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_grouped.cpython-39.pyc 2025-08-14T21:55:10.8396026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_plus_mm.cpython-39.pyc 2025-08-14T21:55:10.8399270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.8407212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\build_package.py 2025-08-14T21:55:10.8410596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\package.py 2025-08-14T21:55:10.8413762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__init__.py 2025-08-14T21:55:10.8420978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\build_package.cpython-39.pyc 2025-08-14T21:55:10.8424541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\package.cpython-39.pyc 2025-08-14T21:55:10.8428211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.8446710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\autotune_cache.py 2025-08-14T21:55:10.8454889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\benchmarking.py 2025-08-14T21:55:10.8458209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\cache_dir_utils.py 2025-08-14T21:55:10.8461602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\compile_tasks.py 2025-08-14T21:55:10.8475043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\coordinate_descent_tuner.py 2025-08-14T21:55:10.8478736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\debug_utils.py 2025-08-14T21:55:10.8482071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\halide_helpers.py 2025-08-14T21:55:10.8485370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\hints.py 2025-08-14T21:55:10.8488389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\runtime_utils.py 2025-08-14T21:55:10.8491806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\static_cuda_launcher.py 2025-08-14T21:55:10.8495274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_compat.py 2025-08-14T21:55:10.8498584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_helpers.py 2025-08-14T21:55:10.8502133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_heuristics.py 2025-08-14T21:55:10.8506105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__init__.py 2025-08-14T21:55:10.8513034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\autotune_cache.cpython-39.pyc 2025-08-14T21:55:10.8516600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\benchmarking.cpython-39.pyc 2025-08-14T21:55:10.8520115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\cache_dir_utils.cpython-39.pyc 2025-08-14T21:55:10.8534036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\compile_tasks.cpython-39.pyc 2025-08-14T21:55:10.8537674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\coordinate_descent_tuner.cpython-39.pyc 2025-08-14T21:55:10.8541263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:55:10.8544888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\halide_helpers.cpython-39.pyc 2025-08-14T21:55:10.8548599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\hints.cpython-39.pyc 2025-08-14T21:55:10.8552115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\runtime_utils.cpython-39.pyc 2025-08-14T21:55:10.8555695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\static_cuda_launcher.cpython-39.pyc 2025-08-14T21:55:10.8559209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_compat.cpython-39.pyc 2025-08-14T21:55:10.8562719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_helpers.cpython-39.pyc 2025-08-14T21:55:10.8566695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_heuristics.cpython-39.pyc 2025-08-14T21:55:10.8571365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.8580810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\analyze_preserves_zero_mask.cpython-39.pyc 2025-08-14T21:55:10.8584656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\aoti_eager.cpython-39.pyc 2025-08-14T21:55:10.8588483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\async_compile.cpython-39.pyc 2025-08-14T21:55:10.8602252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\autotune_process.cpython-39.pyc 2025-08-14T21:55:10.8605830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\await_utils.cpython-39.pyc 2025-08-14T21:55:10.8609453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\bounds.cpython-39.pyc 2025-08-14T21:55:10.8612884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\choices.cpython-39.pyc 2025-08-14T21:55:10.8616782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\codecache.cpython-39.pyc 2025-08-14T21:55:10.8620760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms.cpython-39.pyc 2025-08-14T21:55:10.8625050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_analysis.cpython-39.pyc 2025-08-14T21:55:10.8628603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_lowering.cpython-39.pyc 2025-08-14T21:55:10.8632023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compiler_bisector.cpython-39.pyc 2025-08-14T21:55:10.8635985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx.cpython-39.pyc 2025-08-14T21:55:10.8639669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_async.cpython-39.pyc 2025-08-14T21:55:10.8643127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_ext.cpython-39.pyc 2025-08-14T21:55:10.8646735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_subproc.cpython-39.pyc 2025-08-14T21:55:10.8661406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\config.cpython-39.pyc 2025-08-14T21:55:10.8664989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\constant_folding.cpython-39.pyc 2025-08-14T21:55:10.8668456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpp_builder.cpython-39.pyc 2025-08-14T21:55:10.8672359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpu_vec_isa.cpython-39.pyc 2025-08-14T21:55:10.8675970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_trees.cpython-39.pyc 2025-08-14T21:55:10.8679669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_utils.cpython-39.pyc 2025-08-14T21:55:10.8683320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\custom_graph_pass.cpython-39.pyc 2025-08-14T21:55:10.8686714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\debug.cpython-39.pyc 2025-08-14T21:55:10.8700198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\decomposition.cpython-39.pyc 2025-08-14T21:55:10.8703701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dependencies.cpython-39.pyc 2025-08-14T21:55:10.8707627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dtype_propagation.cpython-39.pyc 2025-08-14T21:55:10.8711049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\exc.cpython-39.pyc 2025-08-14T21:55:10.8714710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\extern_node_serializer.cpython-39.pyc 2025-08-14T21:55:10.8718110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing.cpython-39.pyc 2025-08-14T21:55:10.8721855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing_utils.cpython-39.pyc 2025-08-14T21:55:10.8725243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:55:10.8728756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fx_utils.cpython-39.pyc 2025-08-14T21:55:10.8744249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\graph.cpython-39.pyc 2025-08-14T21:55:10.8747951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:55:10.8751602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\index_propagation.cpython-39.pyc 2025-08-14T21:55:10.8755223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\inductor_prims.cpython-39.pyc 2025-08-14T21:55:10.8758604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ir.cpython-39.pyc 2025-08-14T21:55:10.8764272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\jagged_lowerings.cpython-39.pyc 2025-08-14T21:55:10.8767271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\kernel_inputs.cpython-39.pyc 2025-08-14T21:55:10.8771013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\loop_body.cpython-39.pyc 2025-08-14T21:55:10.8793554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\lowering.cpython-39.pyc 2025-08-14T21:55:10.8798089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\memory.cpython-39.pyc 2025-08-14T21:55:10.8801596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\metrics.cpython-39.pyc 2025-08-14T21:55:10.8805154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_ir.cpython-39.pyc 2025-08-14T21:55:10.8809048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_lowerings.cpython-39.pyc 2025-08-14T21:55:10.8812558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mock_cache.cpython-39.pyc 2025-08-14T21:55:10.8816202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ops_handler.cpython-39.pyc 2025-08-14T21:55:10.8819917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\optimize_indexing.cpython-39.pyc 2025-08-14T21:55:10.8833181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\output_code.cpython-39.pyc 2025-08-14T21:55:10.8836756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\pattern_matcher.cpython-39.pyc 2025-08-14T21:55:10.8840718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\quantized_lowerings.cpython-39.pyc 2025-08-14T21:55:10.8844206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_cache.cpython-39.pyc 2025-08-14T21:55:10.8847877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_gemm_autotune_cache.cpython-39.pyc 2025-08-14T21:55:10.8851613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\scheduler.cpython-39.pyc 2025-08-14T21:55:10.8856011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\select_algorithm.cpython-39.pyc 2025-08-14T21:55:10.8859495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\sizevars.cpython-39.pyc 2025-08-14T21:55:10.8873274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\standalone_compile.cpython-39.pyc 2025-08-14T21:55:10.8876898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\subgraph_lowering.cpython-39.pyc 2025-08-14T21:55:10.8880584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_heuristics.cpython-39.pyc 2025-08-14T21:55:10.8884443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_registry.cpython-39.pyc 2025-08-14T21:55:10.8888421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_case.cpython-39.pyc 2025-08-14T21:55:10.8892021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_operators.cpython-39.pyc 2025-08-14T21:55:10.8895590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\tiling_utils.cpython-39.pyc 2025-08-14T21:55:10.8899342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\triton_bundler.cpython-39.pyc 2025-08-14T21:55:10.8913174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:10.8917291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\virtualized.cpython-39.pyc 2025-08-14T21:55:10.8921127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\wrapper_benchmark.cpython-39.pyc 2025-08-14T21:55:10.8924640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__autotune_main__.cpython-39.pyc 2025-08-14T21:55:10.8928189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.8939222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\closure.py 2025-08-14T21:55:10.8942397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\computation.py 2025-08-14T21:55:10.8945846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\config.py 2025-08-14T21:55:10.8949704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\debug.py 2025-08-14T21:55:10.8953305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\device_context.py 2025-08-14T21:55:10.8966620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\extract_compiled_graph.py 2025-08-14T21:55:10.8970148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ir_cache.py 2025-08-14T21:55:10.8973194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\metrics.py 2025-08-14T21:55:10.8976758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\tensor_factory_functions.py 2025-08-14T21:55:10.8979846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ts_backend.py 2025-08-14T21:55:10.8983118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__init__.py 2025-08-14T21:55:10.8990823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\closure.cpython-39.pyc 2025-08-14T21:55:10.8994498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\computation.cpython-39.pyc 2025-08-14T21:55:10.8997899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\config.cpython-39.pyc 2025-08-14T21:55:10.9012343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\debug.cpython-39.pyc 2025-08-14T21:55:10.9016062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\device_context.cpython-39.pyc 2025-08-14T21:55:10.9019873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\extract_compiled_graph.cpython-39.pyc 2025-08-14T21:55:10.9023375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ir_cache.cpython-39.pyc 2025-08-14T21:55:10.9027040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\metrics.cpython-39.pyc 2025-08-14T21:55:10.9030772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\tensor_factory_functions.cpython-39.pyc 2025-08-14T21:55:10.9034402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ts_backend.cpython-39.pyc 2025-08-14T21:55:10.9038032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9055592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\autograd.py 2025-08-14T21:55:10.9092088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\custom_ops.py 2025-08-14T21:55:10.9095845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_class_registry.py 2025-08-14T21:55:10.9099183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_impl.py 2025-08-14T21:55:10.9107996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_profile.py 2025-08-14T21:55:10.9111254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\infer_schema.py 2025-08-14T21:55:10.9114856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\simple_registry.py 2025-08-14T21:55:10.9118116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\triton.py 2025-08-14T21:55:10.9121277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\utils.py 2025-08-14T21:55:10.9124747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__init__.py 2025-08-14T21:55:10.9131724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\autograd.cpython-39.pyc 2025-08-14T21:55:10.9135234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\custom_ops.cpython-39.pyc 2025-08-14T21:55:10.9138978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_class_registry.cpython-39.pyc 2025-08-14T21:55:10.9152431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_impl.cpython-39.pyc 2025-08-14T21:55:10.9155935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_profile.cpython-39.pyc 2025-08-14T21:55:10.9159310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\infer_schema.cpython-39.pyc 2025-08-14T21:55:10.9162860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\simple_registry.cpython-39.pyc 2025-08-14T21:55:10.9166161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\triton.cpython-39.pyc 2025-08-14T21:55:10.9169568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:10.9173321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9180830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\scribe.py 2025-08-14T21:55:10.9184124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\structured.py 2025-08-14T21:55:10.9187301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_internal.py 2025-08-14T21:55:10.9191163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_registrations.py 2025-08-14T21:55:10.9204342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__init__.py 2025-08-14T21:55:10.9211177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\scribe.cpython-39.pyc 2025-08-14T21:55:10.9214891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\structured.cpython-39.pyc 2025-08-14T21:55:10.9218242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_internal.cpython-39.pyc 2025-08-14T21:55:10.9232696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_registrations.cpython-39.pyc 2025-08-14T21:55:10.9236259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9243602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\fft.py 2025-08-14T21:55:10.9246858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\linalg.py 2025-08-14T21:55:10.9250050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\random.py 2025-08-14T21:55:10.9253460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_binary_ufuncs_impl.py 2025-08-14T21:55:10.9256777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_casting_dicts.py 2025-08-14T21:55:10.9270852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes.py 2025-08-14T21:55:10.9274225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes_impl.py 2025-08-14T21:55:10.9277482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs.py 2025-08-14T21:55:10.9280781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs_impl.py 2025-08-14T21:55:10.9284366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_getlimits.py 2025-08-14T21:55:10.9287635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ndarray.py 2025-08-14T21:55:10.9290914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_normalizations.py 2025-08-14T21:55:10.9294381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_reductions_impl.py 2025-08-14T21:55:10.9297657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ufuncs.py 2025-08-14T21:55:10.9300822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_unary_ufuncs_impl.py 2025-08-14T21:55:10.9304129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_util.py 2025-08-14T21:55:10.9307272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__init__.py 2025-08-14T21:55:10.9313941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\utils.py 2025-08-14T21:55:10.9317512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__init__.py 2025-08-14T21:55:10.9324337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\utils.cpython-39.pyc 2025-08-14T21:55:10.9328256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9335938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\fft.cpython-39.pyc 2025-08-14T21:55:10.9339430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\linalg.cpython-39.pyc 2025-08-14T21:55:10.9342781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\random.cpython-39.pyc 2025-08-14T21:55:10.9357079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_binary_ufuncs_impl.cpython-39.pyc 2025-08-14T21:55:10.9360531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_casting_dicts.cpython-39.pyc 2025-08-14T21:55:10.9364541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes.cpython-39.pyc 2025-08-14T21:55:10.9367951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes_impl.cpython-39.pyc 2025-08-14T21:55:10.9371329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs.cpython-39.pyc 2025-08-14T21:55:10.9375103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs_impl.cpython-39.pyc 2025-08-14T21:55:10.9378639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_getlimits.cpython-39.pyc 2025-08-14T21:55:10.9382038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ndarray.cpython-39.pyc 2025-08-14T21:55:10.9385623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_normalizations.cpython-39.pyc 2025-08-14T21:55:10.9389275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_reductions_impl.cpython-39.pyc 2025-08-14T21:55:10.9392629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ufuncs.cpython-39.pyc 2025-08-14T21:55:10.9396138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_unary_ufuncs_impl.cpython-39.pyc 2025-08-14T21:55:10.9399463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_util.cpython-39.pyc 2025-08-14T21:55:10.9402880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9421024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\context.py 2025-08-14T21:55:10.9424247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\debug_prims.py 2025-08-14T21:55:10.9427723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\executor.py 2025-08-14T21:55:10.9430833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\rng_prims.py 2025-08-14T21:55:10.9434282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__init__.py 2025-08-14T21:55:10.9451996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\context.cpython-39.pyc 2025-08-14T21:55:10.9455379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\debug_prims.cpython-39.pyc 2025-08-14T21:55:10.9458956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\executor.cpython-39.pyc 2025-08-14T21:55:10.9472956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\rng_prims.cpython-39.pyc 2025-08-14T21:55:10.9476709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9484545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\wrappers.py 2025-08-14T21:55:10.9487983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__init__.py 2025-08-14T21:55:10.9495094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\wrappers.cpython-39.pyc 2025-08-14T21:55:10.9498607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9506053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\fft.py 2025-08-14T21:55:10.9509644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\_conversions.py 2025-08-14T21:55:10.9512955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__init__.py 2025-08-14T21:55:10.9520800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__init__.py 2025-08-14T21:55:10.9527417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9534361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__init__.py 2025-08-14T21:55:10.9540895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__init__.py 2025-08-14T21:55:10.9547993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9555764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9573762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__init__.py 2025-08-14T21:55:10.9580539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9589299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\fft.cpython-39.pyc 2025-08-14T21:55:10.9593189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\_conversions.cpython-39.pyc 2025-08-14T21:55:10.9597032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9615946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\cli_function_profiler.py 2025-08-14T21:55:10.9619296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\compile_time_profiler.py 2025-08-14T21:55:10.9622754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__init__.py 2025-08-14T21:55:10.9639029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-14T21:55:10.9642354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\compile_time_profiler.cpython-39.pyc 2025-08-14T21:55:10.9645497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9662650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_impls.py 2025-08-14T21:55:10.9666129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_tensor.py 2025-08-14T21:55:10.9670050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_utils.py 2025-08-14T21:55:10.9683204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\functional_tensor.py 2025-08-14T21:55:10.9686597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\meta_utils.py 2025-08-14T21:55:10.9690280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\schema_check_mode.py 2025-08-14T21:55:10.9693597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\_fake_tensor_utils.py 2025-08-14T21:55:10.9696910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__init__.py 2025-08-14T21:55:10.9704481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_impls.cpython-39.pyc 2025-08-14T21:55:10.9707913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_tensor.cpython-39.pyc 2025-08-14T21:55:10.9711671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_utils.cpython-39.pyc 2025-08-14T21:55:10.9724474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\functional_tensor.cpython-39.pyc 2025-08-14T21:55:10.9727883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\meta_utils.cpython-39.pyc 2025-08-14T21:55:10.9731584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\schema_check_mode.cpython-39.pyc 2025-08-14T21:55:10.9734952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\_fake_tensor_utils.cpython-39.pyc 2025-08-14T21:55:10.9738415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9746600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__init__.py 2025-08-14T21:55:10.9752447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\version.py 2025-08-14T21:55:10.9755803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\_structures.py 2025-08-14T21:55:10.9759193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__init__.py 2025-08-14T21:55:10.9776315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\version.cpython-39.pyc 2025-08-14T21:55:10.9779707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\_structures.cpython-39.pyc 2025-08-14T21:55:10.9783112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9800332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:10.9808278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\functional.cpython-39.pyc 2025-08-14T21:55:10.9811969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\hub.cpython-39.pyc 2025-08-14T21:55:10.9815380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\library.cpython-39.pyc 2025-08-14T21:55:10.9829045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\overrides.cpython-39.pyc 2025-08-14T21:55:10.9833241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\quasirandom.cpython-39.pyc 2025-08-14T21:55:10.9836982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\random.cpython-39.pyc 2025-08-14T21:55:10.9840394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\return_types.cpython-39.pyc 2025-08-14T21:55:10.9844002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:55:10.9847511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\storage.cpython-39.pyc 2025-08-14T21:55:10.9851211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\torch_version.cpython-39.pyc 2025-08-14T21:55:10.9855585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\types.cpython-39.pyc 2025-08-14T21:55:10.9859055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\version.cpython-39.pyc 2025-08-14T21:55:10.9862691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_appdirs.cpython-39.pyc 2025-08-14T21:55:10.9866426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_classes.cpython-39.pyc 2025-08-14T21:55:10.9869784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_compile.cpython-39.pyc 2025-08-14T21:55:10.9873483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_custom_ops.cpython-39.pyc 2025-08-14T21:55:10.9877062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_environment.cpython-39.pyc 2025-08-14T21:55:10.9889862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_guards.cpython-39.pyc 2025-08-14T21:55:10.9893563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_jit_internal.cpython-39.pyc 2025-08-14T21:55:10.9897095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_linalg_utils.cpython-39.pyc 2025-08-14T21:55:10.9900785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lobpcg.cpython-39.pyc 2025-08-14T21:55:10.9904306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lowrank.cpython-39.pyc 2025-08-14T21:55:10.9907929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_meta_registrations.cpython-39.pyc 2025-08-14T21:55:10.9912587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_namedtensor_internals.cpython-39.pyc 2025-08-14T21:55:10.9916157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_ops.cpython-39.pyc 2025-08-14T21:55:10.9929709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_python_dispatcher.cpython-39.pyc 2025-08-14T21:55:10.9933763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_size_docs.cpython-39.pyc 2025-08-14T21:55:10.9937518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_sources.cpython-39.pyc 2025-08-14T21:55:10.9941015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_storage_docs.cpython-39.pyc 2025-08-14T21:55:10.9944659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_streambase.cpython-39.pyc 2025-08-14T21:55:10.9948259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor.cpython-39.pyc 2025-08-14T21:55:10.9952060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_docs.cpython-39.pyc 2025-08-14T21:55:10.9956276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_str.cpython-39.pyc 2025-08-14T21:55:10.9959931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_thread_safe_fork.cpython-39.pyc 2025-08-14T21:55:10.9973167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_torch_docs.cpython-39.pyc 2025-08-14T21:55:10.9978798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:55:10.9982430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils_internal.cpython-39.pyc 2025-08-14T21:55:10.9986043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_VF.cpython-39.pyc 2025-08-14T21:55:10.9989556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_vmap_internals.cpython-39.pyc 2025-08-14T21:55:10.9993308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_weights_only_unpickler.cpython-39.pyc 2025-08-14T21:55:10.9996695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__config__.cpython-39.pyc 2025-08-14T21:55:11.0000418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__future__.cpython-39.pyc 2025-08-14T21:55:11.0023331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:55:11.0031496Z 13440 File(s) copied 2025-08-14T21:55:11.1530717Z ********************************************************************** 2025-08-14T21:55:11.1531182Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-08-14T21:55:11.1531543Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-14T21:55:11.1531846Z ********************************************************************** 2025-08-14T21:55:12.2506686Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-14T21:55:12.2539759Z 2025-08-14T21:55:12.2540199Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-14T21:55:12.2543812Z 2025-08-14T21:55:12.2544196Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-14T21:55:12.2546631Z 2025-08-14T21:55:12.2546949Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-14T21:55:12.2549539Z 2025-08-14T21:55:12.2550165Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T21:55:12.2552400Z 2025-08-14T21:55:12.2552648Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-14T21:55:12.2722459Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-14T21:55:12.2723526Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/35//idtoken/eb633651-a2d8-43a7-b851-b43ceeb8c5b6/6a0b7f8b-f2bc-5dc1-acb3-8beaedce5e17?api-version=2.0 2025-08-14T21:55:12.2724595Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-14T21:55:12.2725020Z ALLUSERSPROFILE=C:\ProgramData 2025-08-14T21:55:12.2725391Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T21:55:12.2725815Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-14T21:55:12.2726124Z AWS_DEFAULT_REGION=us-east-1 2025-08-14T21:55:12.2726361Z AWS_EXECUTION_ENV=EC2 2025-08-14T21:55:12.2726723Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-14T21:55:12.2726974Z CI=true 2025-08-14T21:55:12.2727171Z CommandPromptType=Native 2025-08-14T21:55:12.2727497Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-14T21:55:12.2727843Z COMPUTERNAME=EC2AMAZ-VK08H34 2025-08-14T21:55:12.2728092Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-14T21:55:12.2728466Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:55:12.2728838Z CONDA_DEFAULT_ENV=base 2025-08-14T21:55:12.2729098Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-14T21:55:12.2729498Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:55:12.2729852Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-14T21:55:12.2730096Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-14T21:55:12.2730352Z CONDA_PROMPT_MODIFIER=(base) 2025-08-14T21:55:12.2730645Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-14T21:55:12.2731074Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:55:12.2731474Z CONDA_SHLVL=1 2025-08-14T21:55:12.2731668Z CONTINUE_THROUGH_ERROR=True 2025-08-14T21:55:12.2731999Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T21:55:12.2732686Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-14T21:55:12.2733166Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-14T21:55:12.2733673Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T21:55:12.2734093Z CUDA_VERSION=cpu 2025-08-14T21:55:12.2734341Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-14T21:55:12.2734716Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-14T21:55:12.2735121Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-14T21:55:12.2735593Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-14T21:55:12.2736029Z DISTUTILS_USE_SDK=1 2025-08-14T21:55:12.2736288Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-14T21:55:12.2736593Z EC2LAUNCH_TELEMETRY=1 2025-08-14T21:55:12.2736972Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-14T21:55:12.2739166Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T21:55:12.2741195Z Framework40Version=v4.0 2025-08-14T21:55:12.2741487Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T21:55:12.2741872Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T21:55:12.2742220Z FrameworkVersion=v4.0.30319 2025-08-14T21:55:12.2742466Z FrameworkVersion64=v4.0.30319 2025-08-14T21:55:12.2742718Z GITHUB_ACTION=test 2025-08-14T21:55:12.2742914Z GITHUB_ACTIONS=true 2025-08-14T21:55:12.2743119Z GITHUB_ACTION_REF= 2025-08-14T21:55:12.2743331Z GITHUB_ACTION_REPOSITORY= 2025-08-14T21:55:12.2743575Z GITHUB_ACTOR=pytorchmergebot 2025-08-14T21:55:12.2743821Z GITHUB_ACTOR_ID=97764156 2025-08-14T21:55:12.2744070Z GITHUB_API_URL=https://api.github.com 2025-08-14T21:55:12.2744342Z GITHUB_BASE_REF= 2025-08-14T21:55:12.2744782Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T21:55:12.2745291Z GITHUB_EVENT_NAME=push 2025-08-14T21:55:12.2745638Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-14T21:55:12.2746094Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-14T21:55:12.2746427Z GITHUB_HEAD_REF= 2025-08-14T21:55:12.2746683Z GITHUB_JOB=test 2025-08-14T21:55:12.2747153Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T21:55:12.2747917Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T21:55:12.2748444Z GITHUB_REF=refs/heads/main 2025-08-14T21:55:12.2748675Z GITHUB_REF_NAME=main 2025-08-14T21:55:12.2748899Z GITHUB_REF_PROTECTED=true 2025-08-14T21:55:12.2749123Z GITHUB_REF_TYPE=branch 2025-08-14T21:55:12.2749358Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-14T21:55:12.2749629Z GITHUB_REPOSITORY_ID=65600975 2025-08-14T21:55:12.2749884Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-14T21:55:12.2750143Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-14T21:55:12.2750398Z GITHUB_RETENTION_DAYS=90 2025-08-14T21:55:12.2750619Z GITHUB_RUN_ATTEMPT=1 2025-08-14T21:55:12.2750820Z GITHUB_RUN_ID=16976255045 2025-08-14T21:55:12.2751046Z GITHUB_RUN_NUMBER=140204 2025-08-14T21:55:12.2751280Z GITHUB_SERVER_URL=https://github.com 2025-08-14T21:55:12.2751588Z GITHUB_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:55:12.2752247Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T21:55:12.2753335Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T21:55:12.2754018Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-14T21:55:12.2754298Z GITHUB_WORKFLOW=trunk 2025-08-14T21:55:12.2754719Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-14T21:55:12.2755306Z GITHUB_WORKFLOW_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:55:12.2755899Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:55:12.2756303Z GIT_DEFAULT_BRANCH=main 2025-08-14T21:55:12.2756581Z HOME=C:\Users\runneruser 2025-08-14T21:55:12.2758694Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T21:55:12.2761432Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T21:55:12.2762076Z INSTALL_WINDOWS_SDK=1 2025-08-14T21:55:12.2762437Z JOB_ID=48128743924 2025-08-14T21:55:12.2762919Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:55:12.2764190Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-14T21:55:12.2766447Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-14T21:55:12.2768016Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-14T21:55:12.2768513Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-14T21:55:12.2768896Z NO_TD=False 2025-08-14T21:55:12.2769086Z NO_TEST_TIMEOUT=False 2025-08-14T21:55:12.2769342Z NUMBER_OF_PROCESSORS=16 2025-08-14T21:55:12.2769597Z NUM_TEST_SHARDS=3 2025-08-14T21:55:12.2769813Z OLDPWD=C:/16976255045/build-results 2025-08-14T21:55:12.2770602Z OS=Windows_NT 2025-08-14T21:55:12.2777955Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T21:55:12.2785756Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-14T21:55:12.2786126Z Platform=x64 2025-08-14T21:55:12.2786334Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-14T21:55:12.2786772Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-14T21:55:12.2787223Z PROCESSOR_LEVEL=6 2025-08-14T21:55:12.2787434Z PROCESSOR_REVISION=5507 2025-08-14T21:55:12.2787711Z PROGRAMFILES=C:\Program Files 2025-08-14T21:55:12.2788047Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-14T21:55:12.2788464Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:55:12.2788838Z PROMPT=(base) $P$G 2025-08-14T21:55:12.2789023Z PR_NUMBER= 2025-08-14T21:55:12.2789609Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-14T21:55:12.2790137Z PUBLIC=C:\Users\Public 2025-08-14T21:55:12.2790525Z *** 2025-08-14T21:55:12.2790833Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T21:55:12.2791216Z PYTHON_VERSION=3.9 2025-08-14T21:55:12.2791488Z PYTORCH_FINAL_PACKAGE_DIR=C:/16976255045/build-results/ 2025-08-14T21:55:12.2791888Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\16976255045\build-results\ 2025-08-14T21:55:12.2792337Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-14T21:55:12.2792608Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-14T21:55:12.2792888Z ProgramData=C:\ProgramData 2025-08-14T21:55:12.2793187Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-14T21:55:12.2793477Z ProgramW6432=C:\Program Files 2025-08-14T21:55:12.2793718Z REENABLED_ISSUES= 2025-08-14T21:55:12.2793910Z RUNNER_ARCH=X64 2025-08-14T21:55:12.2794118Z RUNNER_ENVIRONMENT=self-hosted 2025-08-14T21:55:12.2794369Z RUNNER_NAME=i-0bbe1d599543d2365 2025-08-14T21:55:12.2794610Z RUNNER_OS=Windows 2025-08-14T21:55:12.2794829Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-14T21:55:12.2795204Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-14T21:55:12.2795624Z RUNNER_TRACKING_ID=github_60dc4745-ed86-47dd-9fa1-e17bfa10775b 2025-08-14T21:55:12.2796026Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-14T21:55:12.2796592Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:55:12.2797084Z SHA1=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:55:12.2797374Z SHARD_NUMBER=2 2025-08-14T21:55:12.2797568Z SHLVL=2 2025-08-14T21:55:12.2797823Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-14T21:55:12.2798149Z SYSTEMDRIVE=C: 2025-08-14T21:55:12.2798349Z SYSTEMROOT=C:\Windows 2025-08-14T21:55:12.2798584Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:55:12.2798874Z TERM=xterm-256color 2025-08-14T21:55:12.2799065Z TEST_CONFIG=default 2025-08-14T21:55:12.2799331Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:55:12.2799710Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-14T21:55:12.2800046Z TEST_SHOWLOCALS=False 2025-08-14T21:55:12.2800281Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:55:12.2800581Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:55:12.2801001Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:55:12.2801480Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-14T21:55:12.2801847Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-14T21:55:12.2802233Z TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:55:12.2802488Z UCRTVersion=10.0.19041.0 2025-08-14T21:55:12.2802801Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T21:55:12.2803176Z UPDATEFILE=update.finished 2025-08-14T21:55:12.2803431Z USERDOMAIN=EC2AMAZ-VK08H34 2025-08-14T21:55:12.2803661Z USERNAME=runneruser 2025-08-14T21:55:12.2803885Z USERPROFILE=C:\Users\runneruser 2025-08-14T21:55:12.2804122Z USE_CUDA=0 2025-08-14T21:55:12.2804524Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-14T21:55:12.2805126Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-14T21:55:12.2805788Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-08-14T21:55:12.2806551Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-08-14T21:55:12.2807111Z VCToolsVersion=14.38.33130 2025-08-14T21:55:12.2807406Z VC_PRODUCT=BuildTools 2025-08-14T21:55:12.2807630Z VC_VERSION= 2025-08-14T21:55:12.2807813Z VC_YEAR=2022 2025-08-14T21:55:12.2808015Z VERBOSE_ARG='SilentlyContinue' 2025-08-14T21:55:12.2808257Z VERBOSE_TEST_LOGS=False 2025-08-14T21:55:12.2808485Z VisualStudioVersion=17.0 2025-08-14T21:55:12.2808900Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-14T21:55:12.2809362Z VSCMD_ARG_app_plat=Desktop 2025-08-14T21:55:12.2809588Z VSCMD_ARG_HOST_ARCH=x64 2025-08-14T21:55:12.2809805Z VSCMD_ARG_TGT_ARCH=x64 2025-08-14T21:55:12.2810000Z VSCMD_VER=17.8.22 2025-08-14T21:55:12.2810380Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-14T21:55:12.2810777Z VS_VERSION=17.4.1 2025-08-14T21:55:12.2810975Z WINDIR=C:\Windows 2025-08-14T21:55:12.2811530Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-14T21:55:12.2812247Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-14T21:55:12.2812711Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T21:55:12.2813075Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-14T21:55:12.2813508Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-14T21:55:12.2813928Z WindowsSDKVersion=10.0.19041.0\ 2025-08-14T21:55:12.2814428Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-14T21:55:12.2815177Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-14T21:55:12.2815876Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-14T21:55:12.2816432Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-14T21:55:12.2816683Z __DOTNET_ADD_64BIT=1 2025-08-14T21:55:12.2816912Z __DOTNET_PREFERRED_BITNESS=64 2025-08-14T21:55:12.2820181Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-14T21:55:12.2823226Z 2025-08-14T21:55:12.2823428Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-14T21:55:12.2823855Z echo "setup pytorch env failed" 2025-08-14T21:55:12.2824176Z echo 0 2025-08-14T21:55:12.2824387Z exit /b 2025-08-14T21:55:12.2824563Z ) 2025-08-14T21:55:12.2824656Z 2025-08-14T21:55:12.2824811Z (base) C:\actions-runner\_work\pytorch\pytorch>pushd test 2025-08-14T21:55:12.2825121Z 2025-08-14T21:55:12.2825523Z (base) C:\actions-runner\_work\pytorch\pytorch\test>set GFLAGS_EXE="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" 2025-08-14T21:55:12.2826029Z 2025-08-14T21:55:12.2826433Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if "2" == "1" (if exist "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" ( 2025-08-14T21:55:12.2827008Z echo Some smoke tests 2025-08-14T21:55:12.2827389Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe +sls 2025-08-14T21:55:12.2828090Z python C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\run_python_nn_smoketests.py 2025-08-14T21:55:12.2828637Z if ERRORLEVEL 1 goto fail 2025-08-14T21:55:12.2829043Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe -sls 2025-08-14T21:55:12.2829467Z if ERRORLEVEL 1 goto fail 2025-08-14T21:55:12.2829691Z ) ) 2025-08-14T21:55:12.2829782Z 2025-08-14T21:55:12.2830031Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Copying over test times file 2025-08-14T21:55:12.2830519Z Copying over test times file 2025-08-14T21:55:12.2830677Z 2025-08-14T21:55:12.2831303Z (base) C:\actions-runner\_work\pytorch\pytorch\test>robocopy /E "C:\16976255045\build-results\\.additional_ci_files" "C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files" 2025-08-14T21:55:12.2832115Z 2025-08-14T21:55:12.2832273Z ------------------------------------------------------------------------------- 2025-08-14T21:55:12.2837683Z ROBOCOPY :: Robust File Copy for Windows 2025-08-14T21:55:12.2838155Z ------------------------------------------------------------------------------- 2025-08-14T21:55:12.2838461Z 2025-08-14T21:55:12.2838587Z Started : Thursday, August 14, 2025 9:55:12 PM 2025-08-14T21:55:12.2838960Z Source : C:\16976255045\build-results\.additional_ci_files\ 2025-08-14T21:55:12.2839404Z Dest : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-08-14T21:55:12.2839705Z 2025-08-14T21:55:12.2839777Z Files : *.* 2025-08-14T21:55:12.2839959Z 2025-08-14T21:55:12.2840191Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-08-14T21:55:12.2840430Z 2025-08-14T21:55:12.2840578Z ------------------------------------------------------------------------------ 2025-08-14T21:55:12.2840846Z 2025-08-14T21:55:12.2840987Z 2 C:\16976255045\build-results\.additional_ci_files\ 2025-08-14T21:55:12.2841444Z *EXTRA File 78697 td_results.json 2025-08-14T21:55:12.2841745Z New File 3.8 m test-class-times.json 2025-08-14T21:55:12.2842021Z 12% 2025-08-14T21:55:12.2842247Z 25% 2025-08-14T21:55:12.2842407Z 38% 2025-08-14T21:55:12.2842609Z 51% 2025-08-14T21:55:12.2842774Z 64% 2025-08-14T21:55:12.2842920Z 77% 2025-08-14T21:55:12.2843082Z 90% 2025-08-14T21:55:12.2843227Z 100% 2025-08-14T21:55:12.2843417Z New File 1.0 m test-times.json 2025-08-14T21:55:12.2843674Z 23% 2025-08-14T21:55:12.2843826Z 47% 2025-08-14T21:55:12.2843982Z 71% 2025-08-14T21:55:12.2844130Z 94% 2025-08-14T21:55:12.2844285Z 100% 2025-08-14T21:55:12.2844373Z 2025-08-14T21:55:12.2844519Z ------------------------------------------------------------------------------ 2025-08-14T21:55:12.2844786Z 2025-08-14T21:55:12.2844931Z Total Copied Skipped Mismatch FAILED Extras 2025-08-14T21:55:12.2845295Z Dirs : 1 0 1 0 0 0 2025-08-14T21:55:12.2845631Z Files : 2 2 0 0 0 1 2025-08-14T21:55:12.2845979Z Bytes : 4.90 m 4.90 m 0 0 0 76.8 k 2025-08-14T21:55:12.2846483Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-08-14T21:55:12.2846718Z 2025-08-14T21:55:12.2846734Z 2025-08-14T21:55:12.2846825Z Speed : 734876142 Bytes/sec. 2025-08-14T21:55:12.2847119Z Speed : 42049.950 MegaBytes/min. 2025-08-14T21:55:12.2847435Z Ended : Thursday, August 14, 2025 9:55:12 PM 2025-08-14T21:55:12.2847643Z 2025-08-14T21:55:12.2847647Z 2025-08-14T21:55:12.2847850Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Run nn tests 2025-08-14T21:55:12.2848265Z Run nn tests 2025-08-14T21:55:12.2848375Z 2025-08-14T21:55:12.2848918Z (base) C:\actions-runner\_work\pytorch\pytorch\test>python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "2" "3" --verbose 2025-08-14T21:55:34.5298608Z Found test times from artifacts 2025-08-14T21:55:34.6090960Z Found test times from artifacts 2025-08-14T21:55:34.6117035Z Running all tests 2025-08-14T21:55:34.6769457Z Running parallel tests on 3 processes 2025-08-14T21:55:34.6785517Z Name: tests to run (est. time: 93.64min) 2025-08-14T21:55:34.6785859Z Serial tests (0): 2025-08-14T21:55:34.6786065Z Parallel tests (152): 2025-08-14T21:55:34.6786317Z inductor/test_kernel_benchmark 1/1 2025-08-14T21:55:34.6786699Z inductor/test_inplace_padding 1/1 2025-08-14T21:55:34.6786984Z export/test_torchbind 1/1 2025-08-14T21:55:34.6787218Z dynamo/test_pgo 1/1 2025-08-14T21:55:34.6787439Z test_dataloader 2/2 2025-08-14T21:55:34.6787651Z test_sparse 1/2 2025-08-14T21:55:34.6787841Z test_sparse 2/2 2025-08-14T21:55:34.6788092Z inductor/test_torchinductor_dynamic_shapes 1/1 2025-08-14T21:55:34.6788412Z inductor/test_cpu_repro 1/1 2025-08-14T21:55:34.6788683Z dynamo/test_dynamic_shapes 1/1 2025-08-14T21:55:34.6788945Z inductor/test_pattern_matcher 1/1 2025-08-14T21:55:34.6789221Z inductor/test_foreach 1/1 2025-08-14T21:55:34.6789471Z inductor/test_triton_wrapper 1/1 2025-08-14T21:55:34.6789762Z inductor/test_select_algorithm 1/1 2025-08-14T21:55:34.6790036Z inductor/test_fused_attention 1/1 2025-08-14T21:55:34.6798953Z inductor/test_split_cat_fx_passes 1/1 2025-08-14T21:55:34.6799383Z inductor/test_custom_lowering 1/1 2025-08-14T21:55:34.6799670Z dynamo/test_after_aot 1/1 2025-08-14T21:55:34.6799946Z inductor/test_binary_folding 1/1 2025-08-14T21:55:34.6800228Z dynamo/test_cudagraphs 1/1 2025-08-14T21:55:34.6800496Z dynamo/test_ctx_manager 1/1 2025-08-14T21:55:34.6800763Z inductor/test_aot_inductor_arrayref 1/1 2025-08-14T21:55:34.6801072Z inductor/test_triton_kernels 1/1 2025-08-14T21:55:34.6801364Z inductor/test_aot_inductor_custom_ops 1/1 2025-08-14T21:55:34.6801823Z inductor/test_unbacked_symints 1/1 2025-08-14T21:55:34.6802099Z inductor/test_alignment 1/1 2025-08-14T21:55:34.6802367Z inductor/test_cpp_wrapper_hipify 1/1 2025-08-14T21:55:34.6802671Z dynamo/test_deque_reconstruct 1/1 2025-08-14T21:55:34.6803033Z inductor/test_cooperative_reductions 1/1 2025-08-14T21:55:34.6803346Z inductor/test_ck_backend 1/1 2025-08-14T21:55:34.6803619Z inductor/test_op_completeness 1/1 2025-08-14T21:55:34.6803887Z inductor/test_fx_fusion 1/1 2025-08-14T21:55:34.6804145Z export/test_export_strict 1/1 2025-08-14T21:55:34.6804410Z export/test_unflatten_training_ir 1/1 2025-08-14T21:55:34.6804724Z dynamo/test_skip_guard_eval_unsafe 1/1 2025-08-14T21:55:34.6805001Z dynamo/test_interop 1/1 2025-08-14T21:55:34.6805250Z dynamo/test_frame_init 1/1 2025-08-14T21:55:34.6805495Z export/test_serdes 1/1 2025-08-14T21:55:34.6805752Z inductor/test_move_constructors_to_cuda 1/1 2025-08-14T21:55:34.6806071Z inductor/test_aot_inductor_package 1/1 2025-08-14T21:55:34.6806361Z inductor/test_gpu_cpp_wrapper 1/1 2025-08-14T21:55:34.6806652Z inductor/test_kernel_optimization 1/1 2025-08-14T21:55:34.6806945Z inductor/test_cudacodecache 1/1 2025-08-14T21:55:34.6807436Z dynamo/test_pre_dispatch 1/1 2025-08-14T21:55:34.6807693Z dynamo/test_metrics_context 1/1 2025-08-14T21:55:34.6807973Z dynamo/test_graph_region_tracker 1/1 2025-08-14T21:55:34.6808259Z inductor/test_best_config 1/1 2025-08-14T21:55:34.6808526Z inductor/test_quantization 1/1 2025-08-14T21:55:34.6808794Z inductor/test_xpu_basic 1/1 2025-08-14T21:55:34.6809028Z dynamo/test_list 1/1 2025-08-14T21:55:34.6809257Z dynamo/test_utils 1/1 2025-08-14T21:55:34.6809504Z inductor/test_decompose_mem_bound_mm 1/1 2025-08-14T21:55:34.6809806Z dynamo/test_fx_graph_runnable 1/1 2025-08-14T21:55:34.6810068Z dynamo/test_config 1/1 2025-08-14T21:55:34.6810310Z dynamo/test_reconstruct 1/1 2025-08-14T21:55:34.6810581Z inductor/test_graph_transform_observer 1/1 2025-08-14T21:55:34.6810973Z dynamo/test_sources 1/1 2025-08-14T21:55:34.6811235Z dynamo/test_flat_apply 1/1 2025-08-14T21:55:34.6811499Z inductor/test_scatter_optimization 1/1 2025-08-14T21:55:34.6811817Z dynamo/test_decorators 1/1 2025-08-14T21:55:34.6812072Z export/test_nativert 1/1 2025-08-14T21:55:34.6812342Z dynamo/test_verify_correctness 1/1 2025-08-14T21:55:34.6812613Z dynamo/test_sets 1/1 2025-08-14T21:55:34.6812854Z dynamo/test_deviceguard 1/1 2025-08-14T21:55:34.6813113Z dynamo/test_python_dispatcher 1/1 2025-08-14T21:55:34.6813406Z export/test_experimental 1/1 2025-08-14T21:55:34.6813667Z dynamo/test_error_messages 1/1 2025-08-14T21:55:34.6813939Z dynamo/test_exceptions 1/1 2025-08-14T21:55:34.6814211Z dynamo/test_precompile_context 1/1 2025-08-14T21:55:34.6814491Z dynamo/test_structured_trace 1/1 2025-08-14T21:55:34.6814772Z dynamo/test_minifier 1/1 2025-08-14T21:55:34.6815018Z dynamo/test_hooks 1/1 2025-08-14T21:55:34.6815255Z dynamo/test_subclasses 1/1 2025-08-14T21:55:34.6815495Z export/test_sparse 2/2 2025-08-14T21:55:34.6815747Z test_appending_byte_serializer 1/1 2025-08-14T21:55:34.6816012Z test_proxy_tensor 2/2 2025-08-14T21:55:34.6816254Z test_mkldnn_verbose 1/1 2025-08-14T21:55:34.6816494Z test_utils_config_module 1/1 2025-08-14T21:55:34.6816762Z test_functionalization 1/1 2025-08-14T21:55:34.6817055Z test_rename_privateuse1_to_existing_device 1/1 2025-08-14T21:55:34.6817360Z test_transformers 1/2 2025-08-14T21:55:34.6817589Z test_transformers 2/2 2025-08-14T21:55:34.6817806Z test_nestedtensor 2/4 2025-08-14T21:55:34.6818035Z test_namedtensor 1/1 2025-08-14T21:55:34.6818261Z torch_np/test_ufuncs_basic 1/1 2025-08-14T21:55:34.6818516Z test_meta 1/5 2025-08-14T21:55:34.6818702Z test_meta 3/5 2025-08-14T21:55:34.6818896Z test_meta 4/5 2025-08-14T21:55:34.6819087Z test_jiterator 1/1 2025-08-14T21:55:34.6819394Z test_decomp 2/17 2025-08-14T21:55:34.6819594Z test_decomp 3/17 2025-08-14T21:55:34.6819804Z test_decomp 5/17 2025-08-14T21:55:34.6820010Z test_decomp 8/17 2025-08-14T21:55:34.6820206Z test_decomp 10/17 2025-08-14T21:55:34.6820435Z test_decomp 12/17 2025-08-14T21:55:34.6820638Z test_decomp 15/17 2025-08-14T21:55:34.6820851Z test_binary_ufuncs 1/1 2025-08-14T21:55:34.6821170Z test_matmul_cuda 1/1 2025-08-14T21:55:34.6821404Z test_weak 1/1 2025-08-14T21:55:34.6821616Z functorch/test_logging 1/1 2025-08-14T21:55:34.6821877Z test_logging 1/1 2025-08-14T21:55:34.6822084Z test_out_dtype_op 1/1 2025-08-14T21:55:34.6822310Z test_complex 1/1 2025-08-14T21:55:34.6822542Z torch_np/numpy_tests/core/test_einsum 1/1 2025-08-14T21:55:34.6822829Z test_ops_jit 1/3 2025-08-14T21:55:34.6823044Z test_ops_gradients 2/2 2025-08-14T21:55:34.6823282Z test_fx_reinplace_pass 1/1 2025-08-14T21:55:34.6823543Z nn/test_multihead_attention 1/1 2025-08-14T21:55:34.6823851Z functorch/test_aot_joint_with_descriptors 1/1 2025-08-14T21:55:34.6824168Z test_pruning_op 1/1 2025-08-14T21:55:34.6824399Z lazy/test_functionalization 1/1 2025-08-14T21:55:34.6824759Z functorch/test_ac 1/1 2025-08-14T21:55:34.6825090Z test_ops_fwd_gradients 1/2 2025-08-14T21:55:34.6825346Z test_ops_fwd_gradients 2/2 2025-08-14T21:55:34.6825580Z test_ops 7/9 2025-08-14T21:55:34.6825798Z test_ops 8/9 2025-08-14T21:55:34.6826017Z optim/test_lrscheduler 1/1 2025-08-14T21:55:34.6826269Z test_numba_integration 1/1 2025-08-14T21:55:34.6826551Z torch_np/numpy_tests/core/test_numeric 1/1 2025-08-14T21:55:34.6826841Z test_sympy_utils 1/1 2025-08-14T21:55:34.6827086Z torch_np/test_indexing 1/1 2025-08-14T21:55:34.6827366Z torch_np/numpy_tests/lib/test_function_base 1/1 2025-08-14T21:55:34.6827674Z test_jit 1/1 2025-08-14T21:55:34.6827874Z nn/test_packed_sequence 1/1 2025-08-14T21:55:34.6828139Z functorch/test_ops 1/8 2025-08-14T21:55:34.6828374Z functorch/test_ops 6/8 2025-08-14T21:55:34.6828603Z functorch/test_ops 7/8 2025-08-14T21:55:34.6828843Z functorch/test_aotdispatch 2/7 2025-08-14T21:55:34.6829108Z functorch/test_aotdispatch 7/7 2025-08-14T21:55:34.6829375Z test_schema_check 1/1 2025-08-14T21:55:34.6829591Z test_datapipe 1/1 2025-08-14T21:55:34.6829814Z test_bundled_inputs 1/1 2025-08-14T21:55:34.6830060Z profiler/test_execution_trace 1/1 2025-08-14T21:55:34.6830337Z lazy/test_generator 1/1 2025-08-14T21:55:34.6830592Z torch_np/numpy_tests/core/test_indexing 1/1 2025-08-14T21:55:34.6830886Z test_maskedtensor 1/1 2025-08-14T21:55:34.6831110Z test_tensorboard 1/1 2025-08-14T21:55:34.6831368Z torch_np/numpy_tests/lib/test_type_check 1/1 2025-08-14T21:55:34.6831687Z lazy/test_ts_opinfo 1/1 2025-08-14T21:55:34.6831912Z test_mkldnn_fusion 1/1 2025-08-14T21:55:34.6832176Z benchmark_utils/test_benchmark_utils 1/1 2025-08-14T21:55:34.6832449Z test_linalg 1/1 2025-08-14T21:55:34.6832649Z test_futures 1/1 2025-08-14T21:55:34.6832891Z torch_np/numpy_tests/lib/test_histograms 1/1 2025-08-14T21:55:34.6833186Z optim/test_optim 1/1 2025-08-14T21:55:34.6833418Z nn/test_embedding 1/1 2025-08-14T21:55:34.6833632Z nn/test_dropout 1/1 2025-08-14T21:55:34.6833845Z test_autograd 1/1 2025-08-14T21:55:34.6834083Z torch_np/numpy_tests/core/test_scalarmath 1/1 2025-08-14T21:55:34.6834390Z test_functional_optim 1/1 2025-08-14T21:55:34.6834625Z test_vulkan 1/1 2025-08-14T21:55:34.6834831Z functorch/test_vmap 1/2 2025-08-14T21:55:34.6835079Z Name: excluded (est. time: 0.0min) 2025-08-14T21:55:34.6835326Z Serial tests (0): 2025-08-14T21:55:34.6835528Z Parallel tests (0): 2025-08-14T21:55:34.6839696Z Running inductor/test_kernel_benchmark 1/1 ... [2025-08-14 21:55:34.673236] 2025-08-14T21:55:34.6840122Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:34.7139201Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_benchmark.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:34.710174] 2025-08-14T21:55:34.7140982Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-14T21:55:34.7141770Z Ignoring disabled issues: [''] 2025-08-14T21:55:53.5385619Z 2025-08-14T21:55:53.5386650Z inductor/test_kernel_benchmark 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_benchmark_1.1_fe768c89888522db_.log 2025-08-14T21:55:53.5387367Z 2025-08-14T21:55:53.5392957Z Running inductor/test_inplace_padding 1/1 ... [2025-08-14 21:55:53.538986] 2025-08-14T21:55:53.5393386Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:53.5400669Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplace_padding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:53.539570] 2025-08-14T21:55:53.5402084Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T21:55:53.5402526Z Uploading artifacts took 0.00 seconds 2025-08-14T21:56:03.2878990Z 2025-08-14T21:56:03.2880182Z inductor/test_inplace_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplace_padding_1.1_f29a03429bdce156_.log 2025-08-14T21:56:03.2880880Z 2025-08-14T21:56:03.2884526Z Running export/test_torchbind 1/1 ... [2025-08-14 21:56:03.287780] 2025-08-14T21:56:03.2884923Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:03.2890972Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_torchbind.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:03.288924] 2025-08-14T21:56:13.6122528Z 2025-08-14T21:56:13.6123393Z export/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_torchbind_1.1_857849b89aa61f85_.log 2025-08-14T21:56:13.6124621Z Running 0 items in this shard: 2025-08-14T21:56:13.6124860Z 2025-08-14T21:56:13.6129986Z Running dynamo/test_pgo 1/1 ... [2025-08-14 21:56:13.611680] 2025-08-14T21:56:13.6130361Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:13.6136239Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pgo.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:13.611680] 2025-08-14T21:56:17.9177128Z 2025-08-14T21:56:17.9178196Z dynamo/test_pgo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pgo_1.1_3676066a992ec018_.log 2025-08-14T21:56:17.9178838Z 2025-08-14T21:56:17.9182875Z Running test_dataloader 2/2 ... [2025-08-14 21:56:17.917824] 2025-08-14T21:56:17.9183262Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:17.9189334Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:17.918415] 2025-08-14T21:56:22.9956582Z 2025-08-14T21:56:22.9957661Z test_dataloader 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_2.2_914a4cddb3f49551_.log 2025-08-14T21:56:22.9958364Z Running 0 items in this shard: 2025-08-14T21:56:22.9958551Z 2025-08-14T21:56:22.9962660Z Running test_sparse 1/2 ... [2025-08-14 21:56:22.996121] 2025-08-14T21:56:22.9963164Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:22.9968957Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:22.996695] 2025-08-14T21:56:31.7686223Z 2025-08-14T21:56:31.7687098Z test_sparse 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_1.2_8b8b8b3a8ab08b1e_.log 2025-08-14T21:56:31.7687747Z Running 0 items in this shard: 2025-08-14T21:56:31.7687920Z 2025-08-14T21:56:31.7692256Z Running test_sparse 2/2 ... [2025-08-14 21:56:31.769092] 2025-08-14T21:56:31.7692600Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:31.7698371Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:31.769092] 2025-08-14T21:56:38.4353605Z 2025-08-14T21:56:38.4355398Z test_sparse 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_2.2_50146f3093780e14_.log 2025-08-14T21:56:38.4356535Z Running 0 items in this shard: 2025-08-14T21:56:38.4356718Z 2025-08-14T21:56:38.4359719Z Running inductor/test_torchinductor_dynamic_shapes 1/1 ... [2025-08-14 21:56:38.426303] 2025-08-14T21:56:38.4360214Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:38.4367403Z 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-08-14 21:56:38.436404] 2025-08-14T21:56:48.1596377Z 2025-08-14T21:56:48.1597578Z 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_29d4132d1bf3488d_.log 2025-08-14T21:56:48.1598409Z 2025-08-14T21:56:48.1602188Z Running inductor/test_cpu_repro 1/1 ... [2025-08-14 21:56:48.159958] 2025-08-14T21:56:48.1602583Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:48.1608872Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_repro.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:48.160530] 2025-08-14T21:56:57.7212698Z 2025-08-14T21:56:57.7213572Z inductor/test_cpu_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_repro_1.1_728f4cc34e08b149_.log 2025-08-14T21:56:57.7214211Z 2025-08-14T21:56:57.7218249Z Running dynamo/test_dynamic_shapes 1/1 ... [2025-08-14 21:56:57.720126] 2025-08-14T21:56:57.7218685Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:57.7224575Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dynamic_shapes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:57.720126] 2025-08-14T21:57:08.9469771Z 2025-08-14T21:57:08.9470924Z dynamo/test_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dynamic_shapes_1.1_8916e8c36ce6562a_.log 2025-08-14T21:57:08.9471598Z 2025-08-14T21:57:08.9476883Z Running inductor/test_pattern_matcher 1/1 ... [2025-08-14 21:57:08.947250] 2025-08-14T21:57:08.9477341Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:08.9484135Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pattern_matcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:08.947832] 2025-08-14T21:57:18.3808209Z 2025-08-14T21:57:18.3809163Z inductor/test_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pattern_matcher_1.1_1758f81dfb06add0_.log 2025-08-14T21:57:18.3809873Z 2025-08-14T21:57:18.3813868Z Running inductor/test_foreach 1/1 ... [2025-08-14 21:57:18.376849] 2025-08-14T21:57:18.3814261Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:18.3826831Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_foreach.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:18.376849] 2025-08-14T21:57:28.4592224Z 2025-08-14T21:57:28.4593301Z inductor/test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_foreach_1.1_12ae317d7ce331ac_.log 2025-08-14T21:57:28.4594030Z 2025-08-14T21:57:28.4598192Z Running inductor/test_triton_wrapper 1/1 ... [2025-08-14 21:57:28.459520] 2025-08-14T21:57:28.4598938Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:28.4604698Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_wrapper.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:28.460166] 2025-08-14T21:57:37.8614508Z 2025-08-14T21:57:37.8615654Z inductor/test_triton_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_wrapper_1.1_c31e768f6f2bd876_.log 2025-08-14T21:57:37.8616353Z 2025-08-14T21:57:37.8620325Z Running inductor/test_select_algorithm 1/1 ... [2025-08-14 21:57:37.860180] 2025-08-14T21:57:37.8620824Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:37.8626422Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_select_algorithm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:37.860180] 2025-08-14T21:57:47.4030068Z 2025-08-14T21:57:47.4031025Z inductor/test_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_select_algorithm_1.1_c0e96ad1eee5b1fd_.log 2025-08-14T21:57:47.4039491Z 2025-08-14T21:57:47.4039734Z Running inductor/test_fused_attention 1/1 ... [2025-08-14 21:57:47.403539] 2025-08-14T21:57:47.4040160Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:47.4042958Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fused_attention.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:47.403850] 2025-08-14T21:57:56.8969878Z 2025-08-14T21:57:56.8970796Z inductor/test_fused_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fused_attention_1.1_e3d85da369855f10_.log 2025-08-14T21:57:56.8971521Z 2025-08-14T21:57:56.8975739Z Running inductor/test_split_cat_fx_passes 1/1 ... [2025-08-14 21:57:56.894906] 2025-08-14T21:57:56.8976188Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:56.8982100Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:56.897986] 2025-08-14T21:58:06.4140402Z 2025-08-14T21:58:06.4142408Z 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_f3a84ab7120aaeb4_.log 2025-08-14T21:58:06.4143326Z 2025-08-14T21:58:06.4146345Z Running inductor/test_custom_lowering 1/1 ... [2025-08-14 21:58:06.414192] 2025-08-14T21:58:06.4146796Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:06.4153355Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_lowering.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:06.414767] 2025-08-14T21:58:15.7222538Z 2025-08-14T21:58:15.7223480Z inductor/test_custom_lowering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_lowering_1.1_53bd0147a51e3125_.log 2025-08-14T21:58:15.7224201Z 2025-08-14T21:58:15.7229460Z Running dynamo/test_after_aot 1/1 ... [2025-08-14 21:58:15.722617] 2025-08-14T21:58:15.7229879Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:15.7237017Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_after_aot.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:15.723200] 2025-08-14T21:58:20.0376446Z 2025-08-14T21:58:20.0377297Z dynamo/test_after_aot 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_after_aot_1.1_74c9731053cf9906_.log 2025-08-14T21:58:20.0377935Z 2025-08-14T21:58:20.0382728Z Running inductor/test_binary_folding 1/1 ... [2025-08-14 21:58:20.038076] 2025-08-14T21:58:20.0383203Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:20.0388724Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_binary_folding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:20.038646] 2025-08-14T21:58:29.8100671Z 2025-08-14T21:58:29.8101837Z inductor/test_binary_folding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_binary_folding_1.1_f32dbd442e88d884_.log 2025-08-14T21:58:29.8102636Z 2025-08-14T21:58:29.8107591Z Running dynamo/test_cudagraphs 1/1 ... [2025-08-14 21:58:29.810255] 2025-08-14T21:58:29.8107992Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:29.8128242Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:29.810255] 2025-08-14T21:58:34.1335816Z 2025-08-14T21:58:34.1337550Z dynamo/test_cudagraphs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_1.1_9f44259d925f5cef_.log 2025-08-14T21:58:34.1338246Z 2025-08-14T21:58:34.1343818Z Running dynamo/test_ctx_manager 1/1 ... [2025-08-14 21:58:34.134191] 2025-08-14T21:58:34.1344255Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:34.1351584Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_ctx_manager.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:34.134785] 2025-08-14T21:58:43.7105699Z 2025-08-14T21:58:43.7106579Z dynamo/test_ctx_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_ctx_manager_1.1_014a54e01c3f75d6_.log 2025-08-14T21:58:43.7107248Z 2025-08-14T21:58:43.7111418Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-08-14 21:58:43.709744] 2025-08-14T21:58:43.7111877Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:43.7117887Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_arrayref.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:43.711359] 2025-08-14T21:58:47.8421898Z 2025-08-14T21:58:47.8422886Z 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_a9217fa2c387580d_.log 2025-08-14T21:58:47.8423628Z 2025-08-14T21:58:47.8427793Z Running inductor/test_triton_kernels 1/1 ... [2025-08-14 21:58:47.834044] 2025-08-14T21:58:47.8428216Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:47.8434053Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_kernels.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:47.834044] 2025-08-14T21:58:57.4842870Z 2025-08-14T21:58:57.4844035Z inductor/test_triton_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_kernels_1.1_7ae9dda9d5be226c_.log 2025-08-14T21:58:57.4844936Z 2025-08-14T21:58:57.4848858Z Running inductor/test_aot_inductor_custom_ops 1/1 ... [2025-08-14 21:58:57.484457] 2025-08-14T21:58:57.4849319Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:57.4855353Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_custom_ops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:57.485046] 2025-08-14T21:59:06.9497275Z 2025-08-14T21:59:06.9498421Z inductor/test_aot_inductor_custom_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_custom_ops_1.1_5127e8e22e672b4d_.log 2025-08-14T21:59:06.9499212Z 2025-08-14T21:59:06.9503389Z Running inductor/test_unbacked_symints 1/1 ... [2025-08-14 21:59:06.950268] 2025-08-14T21:59:06.9503951Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:06.9510365Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:06.950885] 2025-08-14T21:59:16.5155659Z 2025-08-14T21:59:16.5156792Z 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_1ab5f59ec7d1173f_.log 2025-08-14T21:59:16.5157515Z 2025-08-14T21:59:16.5161455Z Running inductor/test_alignment 1/1 ... [2025-08-14 21:59:16.514520] 2025-08-14T21:59:16.5161937Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:16.5167339Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_alignment.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:16.514520] 2025-08-14T21:59:26.2616763Z 2025-08-14T21:59:26.2617669Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_6d9db4d3bc5bbe66_.log 2025-08-14T21:59:26.2618316Z 2025-08-14T21:59:26.2622534Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-08-14 21:59:26.262175] 2025-08-14T21:59:26.2622985Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:26.2628949Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:26.262224] 2025-08-14T21:59:30.3347965Z 2025-08-14T21:59:30.3348975Z 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_e5ade948ecf977c6_.log 2025-08-14T21:59:30.3349762Z 2025-08-14T21:59:30.3355994Z Running dynamo/test_deque_reconstruct 1/1 ... [2025-08-14 21:59:30.335489] 2025-08-14T21:59:30.3356433Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:30.3363605Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_deque_reconstruct.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:30.336083] 2025-08-14T21:59:34.3856831Z 2025-08-14T21:59:34.3858000Z dynamo/test_deque_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_deque_reconstruct_1.1_b9d49042760b9e5d_.log 2025-08-14T21:59:34.3858729Z 2025-08-14T21:59:34.3862391Z Running inductor/test_cooperative_reductions 1/1 ... [2025-08-14 21:59:34.377504] 2025-08-14T21:59:34.3863169Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:34.3868744Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:34.386550] 2025-08-14T21:59:43.8980405Z 2025-08-14T21:59:43.8981401Z 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_81d19762bd7b58c4_.log 2025-08-14T21:59:43.8982152Z 2025-08-14T21:59:43.8985991Z Running inductor/test_ck_backend 1/1 ... [2025-08-14 21:59:43.895678] 2025-08-14T21:59:43.8986417Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:43.8998694Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ck_backend.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:43.895678] 2025-08-14T21:59:53.4601246Z 2025-08-14T21:59:53.4602130Z inductor/test_ck_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ck_backend_1.1_477383bcc34f399f_.log 2025-08-14T21:59:53.4602798Z 2025-08-14T21:59:53.4606841Z Running inductor/test_op_completeness 1/1 ... [2025-08-14 21:59:53.456501] 2025-08-14T21:59:53.4607285Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:53.4613359Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_completeness.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:53.456501] 2025-08-14T21:59:58.1785963Z 2025-08-14T21:59:58.1786930Z inductor/test_op_completeness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_completeness_1.1_9f27e840e59c34fe_.log 2025-08-14T21:59:58.1787697Z 2025-08-14T21:59:58.1791833Z Running inductor/test_fx_fusion 1/1 ... [2025-08-14 21:59:58.178397] 2025-08-14T21:59:58.1792251Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:58.1798114Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fx_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-08-14 21:59:58.178397] 2025-08-14T22:00:03.4598454Z 2025-08-14T22:00:03.4599352Z inductor/test_fx_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fx_fusion_1.1_f0c542b7241dfa96_.log 2025-08-14T22:00:03.4600161Z 2025-08-14T22:00:03.4604118Z Running export/test_export_strict 1/1 ... [2025-08-14 22:00:03.451110] 2025-08-14T22:00:03.4604558Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:03.4610284Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_strict.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:03.451110] 2025-08-14T22:00:13.0373089Z 2025-08-14T22:00:13.0373976Z export/test_export_strict 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_strict_1.1_8884719632878f0d_.log 2025-08-14T22:00:13.0374654Z 2025-08-14T22:00:13.0379479Z Running export/test_unflatten_training_ir 1/1 ... [2025-08-14 22:00:13.031823] 2025-08-14T22:00:13.0379943Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:13.0386206Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_unflatten_training_ir.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:13.031823] 2025-08-14T22:00:17.1576351Z 2025-08-14T22:00:17.1577332Z export/test_unflatten_training_ir 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_unflatten_training_ir_1.1_e1729eac1e8fdeef_.log 2025-08-14T22:00:17.1578063Z 2025-08-14T22:00:17.1581947Z Running dynamo/test_skip_guard_eval_unsafe 1/1 ... [2025-08-14 22:00:17.156114] 2025-08-14T22:00:17.1582405Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:17.1588397Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_guard_eval_unsafe.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:17.156114] 2025-08-14T22:00:21.6294105Z 2025-08-14T22:00:21.6295145Z dynamo/test_skip_guard_eval_unsafe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_guard_eval_unsafe_1.1_3b060b852249070d_.log 2025-08-14T22:00:21.6295900Z 2025-08-14T22:00:21.6296076Z Running dynamo/test_interop 1/1 ... [2025-08-14 22:00:21.627626] 2025-08-14T22:00:21.6296466Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:21.6297488Z 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-08-14 22:00:21.628247] 2025-08-14T22:00:25.9324602Z 2025-08-14T22:00:25.9325660Z dynamo/test_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_interop_1.1_bd59d061878f82c1_.log 2025-08-14T22:00:25.9326396Z 2025-08-14T22:00:25.9330195Z Running dynamo/test_frame_init 1/1 ... [2025-08-14 22:00:25.932629] 2025-08-14T22:00:25.9330600Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:25.9336523Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_frame_init.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:25.933200] 2025-08-14T22:00:30.1034549Z 2025-08-14T22:00:30.1035639Z dynamo/test_frame_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_frame_init_1.1_11b191daf1c0cba6_.log 2025-08-14T22:00:30.1036277Z 2025-08-14T22:00:30.1040001Z Running export/test_serdes 1/1 ... [2025-08-14 22:00:30.093106] 2025-08-14T22:00:30.1040391Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:30.1046145Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_serdes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:30.093106] 2025-08-14T22:00:39.4382589Z 2025-08-14T22:00:39.4383501Z export/test_serdes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_serdes_1.1_8c9b261455ec5f82_.log 2025-08-14T22:00:39.4384169Z 2025-08-14T22:00:39.4389037Z Running inductor/test_move_constructors_to_cuda 1/1 ... [2025-08-14 22:00:39.438826] 2025-08-14T22:00:39.4389568Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:39.4396286Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_move_constructors_to_cuda.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:39.439448] 2025-08-14T22:00:48.9516260Z 2025-08-14T22:00:48.9517517Z inductor/test_move_constructors_to_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_move_constructors_to_cuda_1.1_eff6c04b74c837e6_.log 2025-08-14T22:00:48.9518367Z 2025-08-14T22:00:48.9523775Z Running inductor/test_aot_inductor_package 1/1 ... [2025-08-14 22:00:48.952008] 2025-08-14T22:00:48.9524240Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:48.9530230Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_package.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:48.952008] 2025-08-14T22:00:58.6562876Z 2025-08-14T22:00:58.6563824Z inductor/test_aot_inductor_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_package_1.1_95a00c01ad94f83d_.log 2025-08-14T22:00:58.6564583Z 2025-08-14T22:00:58.6570156Z Running inductor/test_gpu_cpp_wrapper 1/1 ... [2025-08-14 22:00:58.656588] 2025-08-14T22:00:58.6570616Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:58.6577571Z 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-08-14 22:00:58.657169] 2025-08-14T22:01:08.6609034Z 2025-08-14T22:01:08.6610110Z 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_e4c4dc33226923f0_.log 2025-08-14T22:01:08.6610812Z 2025-08-14T22:01:08.6615257Z Running inductor/test_kernel_optimization 1/1 ... [2025-08-14 22:01:08.661004] 2025-08-14T22:01:08.6615866Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:08.6621638Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_optimization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:08.661576] 2025-08-14T22:01:18.0921071Z 2025-08-14T22:01:18.0922024Z inductor/test_kernel_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_optimization_1.1_58a9210a33cc5bd5_.log 2025-08-14T22:01:18.0922777Z 2025-08-14T22:01:18.0926650Z Running inductor/test_cudacodecache 1/1 ... [2025-08-14 22:01:18.091363] 2025-08-14T22:01:18.0927088Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:18.0932994Z 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-08-14 22:01:18.091363] 2025-08-14T22:01:27.4991180Z 2025-08-14T22:01:27.4992281Z inductor/test_cudacodecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudacodecache_1.1_7d7543375de3c770_.log 2025-08-14T22:01:27.4993006Z 2025-08-14T22:01:27.4997252Z Running dynamo/test_pre_dispatch 1/1 ... [2025-08-14 22:01:27.498119] 2025-08-14T22:01:27.4997751Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:27.5003198Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pre_dispatch.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:27.499724] 2025-08-14T22:01:31.7600506Z 2025-08-14T22:01:31.7601393Z dynamo/test_pre_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pre_dispatch_1.1_3e9151a209795e20_.log 2025-08-14T22:01:31.7602117Z 2025-08-14T22:01:31.7606349Z Running dynamo/test_metrics_context 1/1 ... [2025-08-14 22:01:31.760171] 2025-08-14T22:01:31.7606770Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:31.7613195Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_metrics_context.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:31.760741] 2025-08-14T22:01:35.7799326Z 2025-08-14T22:01:35.7800483Z dynamo/test_metrics_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_metrics_context_1.1_273b083bd268e679_.log 2025-08-14T22:01:35.7801165Z 2025-08-14T22:01:35.7805042Z Running dynamo/test_graph_region_tracker 1/1 ... [2025-08-14 22:01:35.780168] 2025-08-14T22:01:35.7805485Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:35.7817880Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_graph_region_tracker.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:35.781311] 2025-08-14T22:01:40.3125907Z 2025-08-14T22:01:40.3126901Z dynamo/test_graph_region_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_graph_region_tracker_1.1_5f477a32b627c7e2_.log 2025-08-14T22:01:40.3127613Z 2025-08-14T22:01:40.3131639Z Running inductor/test_best_config 1/1 ... [2025-08-14 22:01:40.306930] 2025-08-14T22:01:40.3132059Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:40.3138196Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_best_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:40.306930] 2025-08-14T22:01:50.1883039Z 2025-08-14T22:01:50.1883968Z inductor/test_best_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_best_config_1.1_2f07a7eb38a988d7_.log 2025-08-14T22:01:50.1884662Z 2025-08-14T22:01:50.1889084Z Running inductor/test_quantization 1/1 ... [2025-08-14 22:01:50.186194] 2025-08-14T22:01:50.1889546Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:50.1895305Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_quantization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:50.186194] 2025-08-14T22:01:59.6747202Z 2025-08-14T22:01:59.6748210Z inductor/test_quantization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_quantization_1.1_ca51b116bad51189_.log 2025-08-14T22:01:59.6749040Z 2025-08-14T22:01:59.6752933Z Running inductor/test_xpu_basic 1/1 ... [2025-08-14 22:01:59.675004] 2025-08-14T22:01:59.6753361Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:59.6759380Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_xpu_basic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:59.675581] 2025-08-14T22:02:09.4279889Z 2025-08-14T22:02:09.4280946Z inductor/test_xpu_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_xpu_basic_1.1_f626f970584cac90_.log 2025-08-14T22:02:09.4281640Z 2025-08-14T22:02:09.4285747Z Running dynamo/test_list 1/1 ... [2025-08-14 22:02:09.425312] 2025-08-14T22:02:09.4286208Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:09.4291836Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_list.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:09.425312] 2025-08-14T22:02:13.7787882Z 2025-08-14T22:02:13.7788949Z dynamo/test_list 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_list_1.1_b11661274d24c92f_.log 2025-08-14T22:02:13.7789556Z 2025-08-14T22:02:13.7794055Z Running dynamo/test_utils 1/1 ... [2025-08-14 22:02:13.771830] 2025-08-14T22:02:13.7794516Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:13.7799853Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:13.771830] 2025-08-14T22:02:18.1299576Z 2025-08-14T22:02:18.1300602Z dynamo/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_utils_1.1_201e57f2e488e68b_.log 2025-08-14T22:02:18.1301238Z 2025-08-14T22:02:18.1305229Z Running inductor/test_decompose_mem_bound_mm 1/1 ... [2025-08-14 22:02:18.129533] 2025-08-14T22:02:18.1305741Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:18.1311893Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_decompose_mem_bound_mm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:18.129533] 2025-08-14T22:02:27.6784406Z 2025-08-14T22:02:27.6785690Z inductor/test_decompose_mem_bound_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_decompose_mem_bound_mm_1.1_9502e83993072efb_.log 2025-08-14T22:02:27.6786448Z 2025-08-14T22:02:27.6790148Z Running dynamo/test_fx_graph_runnable 1/1 ... [2025-08-14 22:02:27.678736] 2025-08-14T22:02:27.6790653Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:27.6796509Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_graph_runnable.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:27.678736] 2025-08-14T22:02:37.5907263Z 2025-08-14T22:02:37.5908500Z dynamo/test_fx_graph_runnable 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_graph_runnable_1.1_014d0a8d0cf57e83_.log 2025-08-14T22:02:37.5909209Z 2025-08-14T22:02:37.5912991Z Running dynamo/test_config 1/1 ... [2025-08-14 22:02:37.590779] 2025-08-14T22:02:37.5913501Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:37.5919440Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:37.591380] 2025-08-14T22:02:41.9824765Z 2025-08-14T22:02:41.9825946Z dynamo/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_config_1.1_b13aa30c533c5807_.log 2025-08-14T22:02:41.9826600Z 2025-08-14T22:02:41.9830265Z Running dynamo/test_reconstruct 1/1 ... [2025-08-14 22:02:41.979093] 2025-08-14T22:02:41.9830697Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:41.9837564Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reconstruct.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:41.983141] 2025-08-14T22:02:51.8133787Z 2025-08-14T22:02:51.8135152Z dynamo/test_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reconstruct_1.1_df3b2c3109c80cf1_.log 2025-08-14T22:02:51.8135875Z 2025-08-14T22:02:51.8141743Z Running inductor/test_graph_transform_observer 1/1 ... [2025-08-14 22:02:51.813988] 2025-08-14T22:02:51.8142562Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:51.8158159Z 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-08-14 22:02:51.815602] 2025-08-14T22:03:01.2894467Z 2025-08-14T22:03:01.2896014Z 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_9e9bb8fbe608cc83_.log 2025-08-14T22:03:01.2897085Z 2025-08-14T22:03:01.2900338Z Running dynamo/test_sources 1/1 ... [2025-08-14 22:03:01.289774] 2025-08-14T22:03:01.2900798Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:01.2906966Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sources.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:01.290346] 2025-08-14T22:03:05.4422276Z 2025-08-14T22:03:05.4423266Z dynamo/test_sources 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sources_1.1_2b3ad2c13ced0f33_.log 2025-08-14T22:03:05.4423897Z 2025-08-14T22:03:05.4427807Z Running dynamo/test_flat_apply 1/1 ... [2025-08-14 22:03:05.440504] 2025-08-14T22:03:05.4428229Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:05.4434081Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_flat_apply.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:05.440504] 2025-08-14T22:03:09.9909664Z 2025-08-14T22:03:09.9910730Z dynamo/test_flat_apply 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_flat_apply_1.1_a76228d744b44c2b_.log 2025-08-14T22:03:09.9911419Z 2025-08-14T22:03:09.9915752Z Running inductor/test_scatter_optimization 1/1 ... [2025-08-14 22:03:09.990993] 2025-08-14T22:03:09.9916260Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:09.9922735Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_scatter_optimization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:09.992094] 2025-08-14T22:03:19.6713250Z 2025-08-14T22:03:19.6714245Z inductor/test_scatter_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_scatter_optimization_1.1_948b30dc682afe51_.log 2025-08-14T22:03:19.6715158Z 2025-08-14T22:03:19.6719422Z Running dynamo/test_decorators 1/1 ... [2025-08-14 22:03:19.671613] 2025-08-14T22:03:19.6719915Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:19.6725333Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_decorators.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:19.671613] 2025-08-14T22:03:24.1668341Z 2025-08-14T22:03:24.1669471Z dynamo/test_decorators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_decorators_1.1_4720f9837ccfc9d7_.log 2025-08-14T22:03:24.1670128Z 2025-08-14T22:03:24.1673924Z Running export/test_nativert 1/1 ... [2025-08-14 22:03:24.158954] 2025-08-14T22:03:24.1674339Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:24.1680539Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_nativert.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:24.158954] 2025-08-14T22:03:33.6665730Z 2025-08-14T22:03:33.6666614Z export/test_nativert 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_nativert_1.1_58c2f8c42f94aea8_.log 2025-08-14T22:03:33.6667250Z 2025-08-14T22:03:33.6671533Z Running dynamo/test_verify_correctness 1/1 ... [2025-08-14 22:03:33.664491] 2025-08-14T22:03:33.6677117Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:33.6678207Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_verify_correctness.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:33.664491] 2025-08-14T22:03:37.9608150Z 2025-08-14T22:03:37.9609263Z dynamo/test_verify_correctness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_verify_correctness_1.1_d8a60f105690fbbf_.log 2025-08-14T22:03:37.9610095Z 2025-08-14T22:03:37.9613831Z Running dynamo/test_sets 1/1 ... [2025-08-14 22:03:37.960989] 2025-08-14T22:03:37.9614258Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:37.9627043Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sets.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:37.962176] 2025-08-14T22:03:42.6484495Z 2025-08-14T22:03:42.6485372Z dynamo/test_sets 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sets_1.1_2adfd6f32027166b_.log 2025-08-14T22:03:42.6485993Z 2025-08-14T22:03:42.6492244Z Running dynamo/test_deviceguard 1/1 ... [2025-08-14 22:03:42.649103] 2025-08-14T22:03:42.6492671Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:42.6499924Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_deviceguard.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:42.649697] 2025-08-14T22:03:47.3075635Z 2025-08-14T22:03:47.3076606Z dynamo/test_deviceguard 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_deviceguard_1.1_6b3273a42f118892_.log 2025-08-14T22:03:47.3077272Z 2025-08-14T22:03:47.3081186Z Running dynamo/test_python_dispatcher 1/1 ... [2025-08-14 22:03:47.306324] 2025-08-14T22:03:47.3081666Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:47.3087533Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_dispatcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:47.306324] 2025-08-14T22:03:51.9869803Z 2025-08-14T22:03:51.9871014Z dynamo/test_python_dispatcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_dispatcher_1.1_1f2453ac61b7a658_.log 2025-08-14T22:03:51.9871750Z 2025-08-14T22:03:51.9875655Z Running export/test_experimental 1/1 ... [2025-08-14 22:03:51.983963] 2025-08-14T22:03:51.9876117Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:51.9881959Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_experimental.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:51.987542] 2025-08-14T22:03:56.3008538Z 2025-08-14T22:03:56.3009448Z export/test_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_experimental_1.1_4e918abeba5d1154_.log 2025-08-14T22:03:56.3010296Z 2025-08-14T22:03:56.3014659Z Running dynamo/test_error_messages 1/1 ... [2025-08-14 22:03:56.300255] 2025-08-14T22:03:56.3015135Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:56.3022066Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_error_messages.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:56.301850] 2025-08-14T22:04:00.7087013Z 2025-08-14T22:04:00.7087910Z dynamo/test_error_messages 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_error_messages_1.1_12b600fa4d255960_.log 2025-08-14T22:04:00.7088602Z 2025-08-14T22:04:00.7092921Z Running dynamo/test_exceptions 1/1 ... [2025-08-14 22:04:00.709002] 2025-08-14T22:04:00.7093365Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:00.7099498Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exceptions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:00.709573] 2025-08-14T22:04:05.1422784Z 2025-08-14T22:04:05.1423965Z dynamo/test_exceptions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exceptions_1.1_0f3c30093beb911f_.log 2025-08-14T22:04:05.1424628Z 2025-08-14T22:04:05.1428532Z Running dynamo/test_precompile_context 1/1 ... [2025-08-14 22:04:05.142343] 2025-08-14T22:04:05.1429036Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:05.1435226Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_precompile_context.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:05.142941] 2025-08-14T22:04:14.7061121Z 2025-08-14T22:04:14.7062167Z dynamo/test_precompile_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_precompile_context_1.1_11480d85e7f33bed_.log 2025-08-14T22:04:14.7062882Z 2025-08-14T22:04:14.7068981Z Running dynamo/test_structured_trace 1/1 ... [2025-08-14 22:04:14.706729] 2025-08-14T22:04:14.7069434Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:14.7083541Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_structured_trace.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:14.707915] 2025-08-14T22:04:24.6174435Z 2025-08-14T22:04:24.6175512Z dynamo/test_structured_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_structured_trace_1.1_c6eba784f9afbe00_.log 2025-08-14T22:04:24.6176368Z 2025-08-14T22:04:24.6180013Z Running dynamo/test_minifier 1/1 ... [2025-08-14 22:04:24.602518] 2025-08-14T22:04:24.6180460Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:24.6187691Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_minifier.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:24.618245] 2025-08-14T22:04:29.1466672Z 2025-08-14T22:04:29.1467587Z dynamo/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_minifier_1.1_fae9c219c47577c6_.log 2025-08-14T22:04:29.1468229Z 2025-08-14T22:04:29.1472450Z Running dynamo/test_hooks 1/1 ... [2025-08-14 22:04:29.132036] 2025-08-14T22:04:29.1472872Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:29.1480138Z 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-08-14 22:04:29.147757] 2025-08-14T22:04:33.4303223Z 2025-08-14T22:04:33.4309556Z dynamo/test_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_hooks_1.1_64f44b1ceb85260b_.log 2025-08-14T22:04:33.4310160Z 2025-08-14T22:04:33.4310390Z Running dynamo/test_subclasses 1/1 ... [2025-08-14 22:04:33.423929] 2025-08-14T22:04:33.4310815Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:33.4315257Z 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-08-14 22:04:33.423929] 2025-08-14T22:04:43.1428311Z 2025-08-14T22:04:43.1429382Z dynamo/test_subclasses 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_subclasses_1.1_3ede4e0bedaa06b5_.log 2025-08-14T22:04:43.1430074Z 2025-08-14T22:04:43.1436262Z Running export/test_sparse 2/2 ... [2025-08-14 22:04:43.143450] 2025-08-14T22:04:43.1436700Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:43.1443965Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:43.144044] 2025-08-14T22:04:47.3936710Z 2025-08-14T22:04:47.3937829Z export/test_sparse 2/2 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_2.2_eec01a74c7ef446b_.log 2025-08-14T22:04:47.3938584Z Running 0 items in this shard: 2025-08-14T22:04:47.3942437Z 2025-08-14T22:04:47.3942676Z Running test_appending_byte_serializer 1/1 ... [2025-08-14 22:04:47.392907] 2025-08-14T22:04:47.3943174Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:47.3948898Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_appending_byte_serializer.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:47.392907] 2025-08-14T22:04:51.4688350Z 2025-08-14T22:04:51.4689310Z test_appending_byte_serializer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_appending_byte_serializer_1.1_30a80ad80f75c36a_.log 2025-08-14T22:04:51.4690012Z 2025-08-14T22:04:51.4693934Z Running test_proxy_tensor 2/2 ... [2025-08-14 22:04:51.467910] 2025-08-14T22:04:51.4694327Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:51.4700406Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_proxy_tensor.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:51.467910] 2025-08-14T22:04:58.6741039Z 2025-08-14T22:04:58.6742064Z test_proxy_tensor 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_proxy_tensor_2.2_a536fdd334dd02ad_.log 2025-08-14T22:04:58.6742808Z Running 0 items in this shard: 2025-08-14T22:04:58.6746567Z 2025-08-14T22:04:58.6746783Z Running test_mkldnn_verbose 1/1 ... [2025-08-14 22:04:58.674555] 2025-08-14T22:04:58.6747210Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:58.6754222Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn_verbose.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:58.675132] 2025-08-14T22:05:03.0789636Z 2025-08-14T22:05:03.0790950Z test_mkldnn_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_verbose_1.1_172482fecc2823f7_.log 2025-08-14T22:05:03.0791799Z Running 0 items in this shard: 2025-08-14T22:05:03.0791986Z 2025-08-14T22:05:03.0795490Z Running test_utils_config_module 1/1 ... [2025-08-14 22:05:03.077426] 2025-08-14T22:05:03.0795914Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:03.0801609Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils_config_module.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:03.077426] 2025-08-14T22:05:07.3618696Z 2025-08-14T22:05:07.3619703Z test_utils_config_module 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_config_module_1.1_b38aa52628220671_.log 2025-08-14T22:05:07.3620489Z Running 0 items in this shard: 2025-08-14T22:05:07.3620701Z 2025-08-14T22:05:07.3624560Z Running test_functionalization 1/1 ... [2025-08-14 22:05:07.359650] 2025-08-14T22:05:07.3625040Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:07.3630793Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:07.359650] 2025-08-14T22:05:11.6570661Z 2025-08-14T22:05:11.6571732Z test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_1.1_ee6566a83738d44c_.log 2025-08-14T22:05:11.6572538Z Running 0 items in this shard: 2025-08-14T22:05:11.6572730Z 2025-08-14T22:05:11.6576589Z Running test_rename_privateuse1_to_existing_device 1/1 ... [2025-08-14 22:05:11.652945] 2025-08-14T22:05:11.6577101Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:11.6582751Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_rename_privateuse1_to_existing_device.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:11.652945] 2025-08-14T22:05:15.9896435Z 2025-08-14T22:05:15.9897689Z test_rename_privateuse1_to_existing_device 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_rename_privateuse1_to_existing_device_1.1_035f3506d913253d_.log 2025-08-14T22:05:15.9898593Z Running 0 items in this shard: 2025-08-14T22:05:15.9898800Z 2025-08-14T22:05:15.9904778Z Running test_transformers 1/2 ... [2025-08-14 22:05:15.990259] 2025-08-14T22:05:15.9905183Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:15.9912164Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:15.990853] 2025-08-14T22:05:22.8312460Z 2025-08-14T22:05:22.8313564Z test_transformers 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_1.2_3a66bf8642ea6dc9_.log 2025-08-14T22:05:22.8314319Z Running 0 items in this shard: 2025-08-14T22:05:22.8314508Z 2025-08-14T22:05:22.8318313Z Running test_transformers 2/2 ... [2025-08-14 22:05:22.829150] 2025-08-14T22:05:22.8318740Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:22.8324483Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:22.829150] 2025-08-14T22:05:29.6925982Z 2025-08-14T22:05:29.6927448Z test_transformers 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_2.2_7e4f2d9f0bc2461e_.log 2025-08-14T22:05:29.6929109Z Running 0 items in this shard: 2025-08-14T22:05:29.6929379Z 2025-08-14T22:05:29.6932934Z Running test_nestedtensor 2/4 ... [2025-08-14 22:05:29.693183] 2025-08-14T22:05:29.6933483Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:29.6939571Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'serial', '--shard-id=2', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:29.693727] 2025-08-14T22:05:36.3671485Z 2025-08-14T22:05:36.3672339Z test_nestedtensor 2/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_2.4_a8d035fbbfe9915a_.log 2025-08-14T22:05:36.3673107Z Running 0 items in this shard: 2025-08-14T22:05:36.3673291Z 2025-08-14T22:05:36.3677541Z Running test_namedtensor 1/1 ... [2025-08-14 22:05:36.367383] 2025-08-14T22:05:36.3677938Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:36.3691101Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_namedtensor.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:36.368525] 2025-08-14T22:05:41.0726148Z 2025-08-14T22:05:41.0727205Z test_namedtensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_namedtensor_1.1_4c73b67e6cf2de95_.log 2025-08-14T22:05:41.0728019Z Running 0 items in this shard: 2025-08-14T22:05:41.0728282Z 2025-08-14T22:05:41.0733940Z Running torch_np/test_ufuncs_basic 1/1 ... [2025-08-14 22:05:41.072814] 2025-08-14T22:05:41.0734432Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:41.0739981Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_ufuncs_basic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:41.072814] 2025-08-14T22:05:45.3138609Z 2025-08-14T22:05:45.3139536Z torch_np/test_ufuncs_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_ufuncs_basic_1.1_41a917a433824333_.log 2025-08-14T22:05:45.3140404Z Running 0 items in this shard: 2025-08-14T22:05:45.3140597Z 2025-08-14T22:05:45.3144416Z Running test_meta 1/5 ... [2025-08-14 22:05:45.303803] 2025-08-14T22:05:45.3144817Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:45.3150575Z 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-08-14 22:05:45.303803] 2025-08-14T22:06:00.3283593Z 2025-08-14T22:06:00.3284392Z test_meta 1/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_1.5_0550c263aad8790e_.log 2025-08-14T22:06:00.3285081Z Running 0 items in this shard: 2025-08-14T22:06:00.3285271Z 2025-08-14T22:06:00.3290911Z Running test_meta 3/5 ... [2025-08-14 22:06:00.328726] 2025-08-14T22:06:00.3291317Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:00.3298472Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=3', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:00.329306] 2025-08-14T22:06:15.4849519Z 2025-08-14T22:06:15.4850298Z test_meta 3/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_3.5_1b6f3471718ffc6a_.log 2025-08-14T22:06:15.4850995Z Running 0 items in this shard: 2025-08-14T22:06:15.4851186Z 2025-08-14T22:06:15.4857146Z Running test_meta 4/5 ... [2025-08-14 22:06:15.485406] 2025-08-14T22:06:15.4857686Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:15.4863607Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=4', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:15.485406] 2025-08-14T22:06:30.9220469Z 2025-08-14T22:06:30.9221273Z test_meta 4/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_4.5_524742e30f1102f4_.log 2025-08-14T22:06:30.9221920Z Running 0 items in this shard: 2025-08-14T22:06:30.9222134Z 2025-08-14T22:06:30.9226345Z Running test_jiterator 1/1 ... [2025-08-14 22:06:30.918315] 2025-08-14T22:06:30.9226755Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:30.9232535Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jiterator.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:30.918315] 2025-08-14T22:06:35.6098852Z 2025-08-14T22:06:35.6099608Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_4031e5aedee0e2df_.log 2025-08-14T22:06:35.6100308Z Running 0 items in this shard: 2025-08-14T22:06:35.6100523Z 2025-08-14T22:06:35.6104543Z Running test_decomp 2/17 ... [2025-08-14 22:06:35.609148] 2025-08-14T22:06:35.6104951Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:35.6110705Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=2', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:35.609148] 2025-08-14T22:06:43.7450158Z 2025-08-14T22:06:43.7451203Z test_decomp 2/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_2.17_3d3c48228b4a9059_.log 2025-08-14T22:06:43.7451930Z Running 0 items in this shard: 2025-08-14T22:06:43.7452117Z 2025-08-14T22:06:43.7456602Z Running test_decomp 3/17 ... [2025-08-14 22:06:43.745456] 2025-08-14T22:06:43.7458339Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:43.7462528Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=3', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:43.745456] 2025-08-14T22:06:51.8969365Z 2025-08-14T22:06:51.8970233Z test_decomp 3/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_3.17_6b311695db630b97_.log 2025-08-14T22:06:51.8971092Z Running 0 items in this shard: 2025-08-14T22:06:51.8971280Z 2025-08-14T22:06:51.8975209Z Running test_decomp 5/17 ... [2025-08-14 22:06:51.896870] 2025-08-14T22:06:51.8975597Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:51.8981613Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=5', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:51.897979] 2025-08-14T22:06:59.9932696Z 2025-08-14T22:06:59.9933891Z test_decomp 5/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_5.17_486a5cd40996f469_.log 2025-08-14T22:06:59.9934594Z Running 0 items in this shard: 2025-08-14T22:06:59.9934787Z 2025-08-14T22:06:59.9939149Z Running test_decomp 8/17 ... [2025-08-14 22:06:59.993272] 2025-08-14T22:06:59.9939557Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:59.9946880Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=8', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:59.994427] 2025-08-14T22:07:08.1790903Z 2025-08-14T22:07:08.1791692Z test_decomp 8/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_8.17_f169d9181aa67b81_.log 2025-08-14T22:07:08.1792392Z Running 0 items in this shard: 2025-08-14T22:07:08.1792577Z 2025-08-14T22:07:08.1796712Z Running test_decomp 10/17 ... [2025-08-14 22:07:08.177445] 2025-08-14T22:07:08.1797115Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:08.1802917Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=10', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:08.177445] 2025-08-14T22:07:16.2258599Z 2025-08-14T22:07:16.2259547Z test_decomp 10/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_10.17_b6dfca12ecfd589c_.log 2025-08-14T22:07:16.2260350Z Running 0 items in this shard: 2025-08-14T22:07:16.2264880Z 2025-08-14T22:07:16.2265052Z Running test_decomp 12/17 ... [2025-08-14 22:07:16.226431] 2025-08-14T22:07:16.2265478Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:16.2272231Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=12', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:16.227051] 2025-08-14T22:07:24.3135127Z 2025-08-14T22:07:24.3136408Z test_decomp 12/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_12.17_aec413e2db3edab5_.log 2025-08-14T22:07:24.3137481Z Running 0 items in this shard: 2025-08-14T22:07:24.3137690Z 2025-08-14T22:07:24.3142318Z Running test_decomp 15/17 ... [2025-08-14 22:07:24.313858] 2025-08-14T22:07:24.3142726Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:24.3149774Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=15', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:24.314438] 2025-08-14T22:07:32.3947574Z 2025-08-14T22:07:32.3948425Z test_decomp 15/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_15.17_c34f02dc656e8a82_.log 2025-08-14T22:07:32.3949113Z Running 0 items in this shard: 2025-08-14T22:07:32.3949334Z 2025-08-14T22:07:32.3953386Z Running test_binary_ufuncs 1/1 ... [2025-08-14 22:07:32.388928] 2025-08-14T22:07:32.3953789Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:32.3959891Z 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-08-14 22:07:32.388928] 2025-08-14T22:07:40.8412489Z 2025-08-14T22:07:40.8413695Z test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_binary_ufuncs_1.1_590e66437534c4fe_.log 2025-08-14T22:07:40.8414445Z Running 0 items in this shard: 2025-08-14T22:07:40.8414634Z 2025-08-14T22:07:40.8418188Z Running test_matmul_cuda 1/1 ... [2025-08-14 22:07:40.839907] 2025-08-14T22:07:40.8418616Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:40.8424397Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_matmul_cuda.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:40.839907] 2025-08-14T22:07:45.4119730Z 2025-08-14T22:07:45.4120566Z test_matmul_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_matmul_cuda_1.1_8f8636cf3d220f94_.log 2025-08-14T22:07:45.4121605Z Running 0 items in this shard: 2025-08-14T22:07:45.4121793Z 2025-08-14T22:07:45.4125532Z Running test_weak 1/1 ... [2025-08-14 22:07:45.411715] 2025-08-14T22:07:45.4125897Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:45.4133535Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_weak.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:45.412840] 2025-08-14T22:07:49.6864110Z 2025-08-14T22:07:49.6864952Z test_weak 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_weak_1.1_ab4a40b8b3bf53b4_.log 2025-08-14T22:07:49.6865741Z Running 0 items in this shard: 2025-08-14T22:07:49.6865933Z 2025-08-14T22:07:49.6873147Z Running functorch/test_logging 1/1 ... [2025-08-14 22:07:49.687110] 2025-08-14T22:07:49.6873672Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:49.6887857Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_logging.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:49.688358] 2025-08-14T22:07:54.1454502Z 2025-08-14T22:07:54.1455414Z functorch/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_logging_1.1_7a50553bdd1f8765_.log 2025-08-14T22:07:54.1456219Z Running 0 items in this shard: 2025-08-14T22:07:54.1456409Z 2025-08-14T22:07:54.1461694Z Running test_logging 1/1 ... [2025-08-14 22:07:54.145819] 2025-08-14T22:07:54.1462100Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:54.1469195Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_logging.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:54.146400] 2025-08-14T22:07:58.3697835Z 2025-08-14T22:07:58.3698877Z test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_logging_1.1_5cc996c66187b55f_.log 2025-08-14T22:07:58.3699555Z Running 0 items in this shard: 2025-08-14T22:07:58.3699769Z 2025-08-14T22:07:58.3703895Z Running test_out_dtype_op 1/1 ... [2025-08-14 22:07:58.363534] 2025-08-14T22:07:58.3704325Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:58.3709754Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_out_dtype_op.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:58.363534] 2025-08-14T22:08:03.1877895Z 2025-08-14T22:08:03.1879227Z test_out_dtype_op 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_out_dtype_op_1.1_0a5c88f6ef4fbd69_.log 2025-08-14T22:08:03.1880335Z Running 0 items in this shard: 2025-08-14T22:08:03.1880547Z 2025-08-14T22:08:03.1883842Z Running test_complex 1/1 ... [2025-08-14 22:08:03.183489] 2025-08-14T22:08:03.1884304Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:03.1890241Z 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-08-14 22:08:03.183489] 2025-08-14T22:08:07.7160961Z 2025-08-14T22:08:07.7161804Z test_complex 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_complex_1.1_a936b0f208dc68cc_.log 2025-08-14T22:08:07.7162527Z Running 0 items in this shard: 2025-08-14T22:08:07.7162723Z 2025-08-14T22:08:07.7167159Z Running torch_np/numpy_tests/core/test_einsum 1/1 ... [2025-08-14 22:08:07.713303] 2025-08-14T22:08:07.7167946Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:07.7173505Z 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-08-14 22:08:07.713303] 2025-08-14T22:08:11.9816601Z 2025-08-14T22:08:11.9817605Z 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_fcd1a1ecc5c5c5e8_.log 2025-08-14T22:08:11.9818512Z Running 0 items in this shard: 2025-08-14T22:08:11.9818705Z 2025-08-14T22:08:11.9822625Z Running test_ops_jit 1/3 ... [2025-08-14 22:08:11.981332] 2025-08-14T22:08:11.9823055Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:11.9828969Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'serial', '--shard-id=1', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:11.981332] 2025-08-14T22:08:18.0296555Z 2025-08-14T22:08:18.0297340Z test_ops_jit 1/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_1.3_1963525a308c84af_.log 2025-08-14T22:08:18.0298034Z Running 0 items in this shard: 2025-08-14T22:08:18.0298225Z 2025-08-14T22:08:18.0302569Z Running test_ops_gradients 2/2 ... [2025-08-14 22:08:18.029325] 2025-08-14T22:08:18.0302979Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:18.0310187Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:18.030418] 2025-08-14T22:08:25.2355302Z 2025-08-14T22:08:25.2356220Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_025266d23655a6f5_.log 2025-08-14T22:08:25.2356943Z Running 0 items in this shard: 2025-08-14T22:08:25.2357155Z 2025-08-14T22:08:25.2362568Z Running test_fx_reinplace_pass 1/1 ... [2025-08-14 22:08:25.235816] 2025-08-14T22:08:25.2363010Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:25.2370185Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_reinplace_pass.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:25.236420] 2025-08-14T22:08:29.5644578Z 2025-08-14T22:08:29.5645524Z test_fx_reinplace_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_reinplace_pass_1.1_0602e0998dca102c_.log 2025-08-14T22:08:29.5646299Z Running 0 items in this shard: 2025-08-14T22:08:29.5646491Z 2025-08-14T22:08:29.5650481Z Running nn/test_multihead_attention 1/1 ... [2025-08-14 22:08:29.550956] 2025-08-14T22:08:29.5650949Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:29.5656926Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_multihead_attention.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:29.550956] 2025-08-14T22:08:34.1975472Z 2025-08-14T22:08:34.1976434Z nn/test_multihead_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_multihead_attention_1.1_a3b69bf19f7479bf_.log 2025-08-14T22:08:34.1977327Z Running 0 items in this shard: 2025-08-14T22:08:34.1977553Z 2025-08-14T22:08:34.1981663Z Running functorch/test_aot_joint_with_descriptors 1/1 ... [2025-08-14 22:08:34.197698] 2025-08-14T22:08:34.1987201Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:34.1988715Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aot_joint_with_descriptors.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:34.198270] 2025-08-14T22:08:38.6295233Z 2025-08-14T22:08:38.6296539Z functorch/test_aot_joint_with_descriptors 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aot_joint_with_descriptors_1.1_90e84e4349b68ae6_.log 2025-08-14T22:08:38.6297450Z Running 0 items in this shard: 2025-08-14T22:08:38.6297679Z 2025-08-14T22:08:38.6301123Z Running test_pruning_op 1/1 ... [2025-08-14 22:08:38.629821] 2025-08-14T22:08:38.6301539Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:38.6307658Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_pruning_op.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:38.630396] 2025-08-14T22:08:42.9350543Z 2025-08-14T22:08:42.9351692Z test_pruning_op 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_pruning_op_1.1_e47382bcc81c327e_.log 2025-08-14T22:08:42.9352419Z Running 0 items in this shard: 2025-08-14T22:08:42.9356293Z 2025-08-14T22:08:42.9356532Z Running lazy/test_functionalization 1/1 ... [2025-08-14 22:08:42.935397] 2025-08-14T22:08:42.9357022Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:42.9362773Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_functionalization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:42.935397] 2025-08-14T22:08:47.1341775Z 2025-08-14T22:08:47.1342796Z lazy/test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_functionalization_1.1_730c5d6f9cfa8ae0_.log 2025-08-14T22:08:47.1343650Z Running 0 items in this shard: 2025-08-14T22:08:47.1343843Z 2025-08-14T22:08:47.1347813Z Running functorch/test_ac 1/1 ... [2025-08-14 22:08:47.134477] 2025-08-14T22:08:47.1348233Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:47.1354124Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:47.135090] 2025-08-14T22:08:56.6176882Z 2025-08-14T22:08:56.6178066Z functorch/test_ac 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_1.1_2027320f3b7ce5bd_.log 2025-08-14T22:08:56.6178872Z 2025-08-14T22:08:56.6182783Z Running test_ops_fwd_gradients 1/2 ... [2025-08-14 22:08:56.617346] 2025-08-14T22:08:56.6183259Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:56.6188719Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:56.617346] 2025-08-14T22:09:02.9798821Z 2025-08-14T22:09:02.9799729Z test_ops_fwd_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_1.2_213887e08ee761ce_.log 2025-08-14T22:09:02.9800480Z Running 0 items in this shard: 2025-08-14T22:09:02.9800689Z 2025-08-14T22:09:02.9806104Z Running test_ops_fwd_gradients 2/2 ... [2025-08-14 22:09:02.980142] 2025-08-14T22:09:02.9806535Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:02.9815037Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:02.981316] 2025-08-14T22:09:09.3689563Z 2025-08-14T22:09:09.3690623Z test_ops_fwd_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_2.2_c08123e4adfb7d9e_.log 2025-08-14T22:09:09.3691422Z Running 0 items in this shard: 2025-08-14T22:09:09.3691615Z 2025-08-14T22:09:09.3695738Z Running test_ops 7/9 ... [2025-08-14 22:09:09.364855] 2025-08-14T22:09:09.3696182Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:09.3701704Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=7', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:09.364855] 2025-08-14T22:09:27.9767340Z 2025-08-14T22:09:27.9767991Z test_ops 7/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_7.9_6bf7953dfc5eafc6_.log 2025-08-14T22:09:27.9768628Z Running 0 items in this shard: 2025-08-14T22:09:27.9768850Z 2025-08-14T22:09:27.9773460Z Running test_ops 8/9 ... [2025-08-14 22:09:27.977001] 2025-08-14T22:09:27.9773862Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:27.9779860Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=8', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:27.977574] 2025-08-14T22:09:46.6632831Z 2025-08-14T22:09:46.6633756Z test_ops 8/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_8.9_f1b3f4f2add6fe45_.log 2025-08-14T22:09:46.6634436Z Running 0 items in this shard: 2025-08-14T22:09:46.6634654Z 2025-08-14T22:09:46.6638964Z Running optim/test_lrscheduler 1/1 ... [2025-08-14 22:09:46.663799] 2025-08-14T22:09:46.6639436Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:46.6645307Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_lrscheduler.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:46.664369] 2025-08-14T22:09:51.1178716Z 2025-08-14T22:09:51.1179618Z optim/test_lrscheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_lrscheduler_1.1_54fef85e1af4dba3_.log 2025-08-14T22:09:51.1180275Z 2025-08-14T22:09:51.1184474Z Running test_numba_integration 1/1 ... [2025-08-14 22:09:51.113567] 2025-08-14T22:09:51.1185066Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:51.1190794Z 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-08-14 22:09:51.113567] 2025-08-14T22:09:55.7041674Z 2025-08-14T22:09:55.7042609Z test_numba_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numba_integration_1.1_8e7d8f47986bda34_.log 2025-08-14T22:09:55.7043378Z Running 0 items in this shard: 2025-08-14T22:09:55.7043564Z 2025-08-14T22:09:55.7048111Z Running torch_np/numpy_tests/core/test_numeric 1/1 ... [2025-08-14 22:09:55.700426] 2025-08-14T22:09:55.7048650Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:55.7054097Z 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-08-14 22:09:55.700426] 2025-08-14T22:10:00.0498858Z 2025-08-14T22:10:00.0500186Z 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_9fdd95557a8d81dc_.log 2025-08-14T22:10:00.0501091Z Running 0 items in this shard: 2025-08-14T22:10:00.0501276Z 2025-08-14T22:10:00.0505114Z Running test_sympy_utils 1/1 ... [2025-08-14 22:10:00.050228] 2025-08-14T22:10:00.0505535Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:00.0511772Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sympy_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:00.050825] 2025-08-14T22:10:04.9220054Z 2025-08-14T22:10:04.9220887Z test_sympy_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sympy_utils_1.1_16203cf5ec2777e7_.log 2025-08-14T22:10:04.9222651Z Running 0 items in this shard: 2025-08-14T22:10:04.9222860Z 2025-08-14T22:10:04.9226190Z Running torch_np/test_indexing 1/1 ... [2025-08-14 22:10:04.922176] 2025-08-14T22:10:04.9226628Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:04.9232654Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_indexing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:04.922757] 2025-08-14T22:10:09.2406889Z 2025-08-14T22:10:09.2407785Z torch_np/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_indexing_1.1_34178deba51eb7da_.log 2025-08-14T22:10:09.2408604Z Running 0 items in this shard: 2025-08-14T22:10:09.2408796Z 2025-08-14T22:10:09.2413011Z Running torch_np/numpy_tests/lib/test_function_base 1/1 ... [2025-08-14 22:10:09.241014] 2025-08-14T22:10:09.2413556Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:09.2419441Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_function_base.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:09.241587] 2025-08-14T22:10:13.7534711Z 2025-08-14T22:10:13.7535815Z torch_np/numpy_tests/lib/test_function_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_function_base_1.1_5191a4c5fbf29c4b_.log 2025-08-14T22:10:13.7536766Z Running 0 items in this shard: 2025-08-14T22:10:13.7536954Z 2025-08-14T22:10:13.7540540Z Running test_jit 1/1 ... [2025-08-14 22:10:13.752928] 2025-08-14T22:10:13.7541046Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:13.7546873Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:13.754557] 2025-08-14T22:10:20.9145001Z 2025-08-14T22:10:20.9145792Z test_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_1.1_9007ae9049302818_.log 2025-08-14T22:10:20.9146395Z Running 0 items in this shard: 2025-08-14T22:10:20.9146589Z 2025-08-14T22:10:20.9151146Z Running nn/test_packed_sequence 1/1 ... [2025-08-14 22:10:20.910499] 2025-08-14T22:10:20.9151543Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:20.9157296Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_packed_sequence.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:20.910499] 2025-08-14T22:10:25.2017936Z 2025-08-14T22:10:25.2019044Z nn/test_packed_sequence 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_packed_sequence_1.1_273f4ce617df4d1f_.log 2025-08-14T22:10:25.2019862Z Running 0 items in this shard: 2025-08-14T22:10:25.2020036Z 2025-08-14T22:10:25.2025009Z Running functorch/test_ops 1/8 ... [2025-08-14 22:10:25.202177] 2025-08-14T22:10:25.2025395Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:25.2032506Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=1', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:25.202760] 2025-08-14T22:10:34.2103749Z 2025-08-14T22:10:34.2104706Z functorch/test_ops 1/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_1.8_11a3003b291355f7_.log 2025-08-14T22:10:34.2105450Z Running 0 items in this shard: 2025-08-14T22:10:34.2105674Z 2025-08-14T22:10:34.2109730Z Running functorch/test_ops 6/8 ... [2025-08-14 22:10:34.205751] 2025-08-14T22:10:34.2110133Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:34.2116621Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=6', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:34.205751] 2025-08-14T22:10:42.9795158Z 2025-08-14T22:10:42.9796227Z functorch/test_ops 6/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_6.8_6eb77ebdf35a0f37_.log 2025-08-14T22:10:42.9796943Z Running 0 items in this shard: 2025-08-14T22:10:42.9797119Z 2025-08-14T22:10:42.9801078Z Running functorch/test_ops 7/8 ... [2025-08-14 22:10:42.979976] 2025-08-14T22:10:42.9801463Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:42.9808115Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=7', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:42.980551] 2025-08-14T22:10:51.6027477Z 2025-08-14T22:10:51.6028431Z functorch/test_ops 7/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_7.8_ff888ebd1f6391dd_.log 2025-08-14T22:10:51.6029172Z Running 0 items in this shard: 2025-08-14T22:10:51.6030664Z 2025-08-14T22:10:51.6033803Z Running functorch/test_aotdispatch 2/7 ... [2025-08-14 22:10:51.599035] 2025-08-14T22:10:51.6034260Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:51.6040613Z 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-08-14 22:10:51.599035] 2025-08-14T22:10:58.6161375Z 2025-08-14T22:10:58.6162268Z functorch/test_aotdispatch 2/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_2.7_f7f73001899e928f_.log 2025-08-14T22:10:58.6163076Z Running 0 items in this shard: 2025-08-14T22:10:58.6163253Z 2025-08-14T22:10:58.6167472Z Running functorch/test_aotdispatch 7/7 ... [2025-08-14 22:10:58.603761] 2025-08-14T22:10:58.6167908Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:58.6173971Z 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-08-14 22:10:58.603761] 2025-08-14T22:11:05.6771926Z 2025-08-14T22:11:05.6773027Z functorch/test_aotdispatch 7/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_7.7_ae4f1f632edb3d6d_.log 2025-08-14T22:11:05.6774191Z Running 0 items in this shard: 2025-08-14T22:11:05.6774369Z 2025-08-14T22:11:05.6780199Z Running test_schema_check 1/1 ... [2025-08-14 22:11:05.677917] 2025-08-14T22:11:05.6780593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:05.6788021Z 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-08-14 22:11:05.678510] 2025-08-14T22:11:12.6899099Z 2025-08-14T22:11:12.6899921Z test_schema_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_schema_check_1.1_93d60193c26b4291_.log 2025-08-14T22:11:12.6900637Z Running 0 items in this shard: 2025-08-14T22:11:12.6900817Z 2025-08-14T22:11:12.6905613Z Running test_datapipe 1/1 ... [2025-08-14 22:11:12.690338] 2025-08-14T22:11:12.6906025Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:12.6912095Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_datapipe.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:12.690338] 2025-08-14T22:11:17.0436548Z 2025-08-14T22:11:17.0437539Z test_datapipe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_datapipe_1.1_3f86fd3ba2e14e42_.log 2025-08-14T22:11:17.0438208Z Running 0 items in this shard: 2025-08-14T22:11:17.0438397Z 2025-08-14T22:11:17.0442558Z Running test_bundled_inputs 1/1 ... [2025-08-14 22:11:17.044184] 2025-08-14T22:11:17.0442963Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:17.0449165Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_bundled_inputs.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:17.044770] 2025-08-14T22:11:21.3762832Z 2025-08-14T22:11:21.3763740Z test_bundled_inputs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_bundled_inputs_1.1_cb6301e521a02a58_.log 2025-08-14T22:11:21.3764466Z Running 0 items in this shard: 2025-08-14T22:11:21.3764644Z 2025-08-14T22:11:21.3768865Z Running profiler/test_execution_trace 1/1 ... [2025-08-14 22:11:21.376361] 2025-08-14T22:11:21.3769413Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:21.3776458Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_execution_trace.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:21.376931] 2025-08-14T22:11:25.9302385Z 2025-08-14T22:11:25.9303430Z profiler/test_execution_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_execution_trace_1.1_a2ea35ba27090597_.log 2025-08-14T22:11:25.9304258Z Running 0 items in this shard: 2025-08-14T22:11:25.9304439Z 2025-08-14T22:11:25.9308104Z Running lazy/test_generator 1/1 ... [2025-08-14 22:11:25.928259] 2025-08-14T22:11:25.9308507Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:25.9314350Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_generator.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:25.928259] 2025-08-14T22:11:30.1306343Z 2025-08-14T22:11:30.1307369Z lazy/test_generator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_generator_1.1_5c7c8387ccd6caa8_.log 2025-08-14T22:11:30.1308117Z Running 0 items in this shard: 2025-08-14T22:11:30.1308297Z 2025-08-14T22:11:30.1313713Z Running torch_np/numpy_tests/core/test_indexing 1/1 ... [2025-08-14 22:11:30.130884] 2025-08-14T22:11:30.1314223Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:30.1322297Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_indexing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:30.131465] 2025-08-14T22:11:34.4183919Z 2025-08-14T22:11:34.4184932Z torch_np/numpy_tests/core/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_indexing_1.1_3ec9193c8d82190d_.log 2025-08-14T22:11:34.4185802Z Running 0 items in this shard: 2025-08-14T22:11:34.4185996Z 2025-08-14T22:11:34.4189900Z Running test_maskedtensor 1/1 ... [2025-08-14 22:11:34.418665] 2025-08-14T22:11:34.4190286Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:34.4196835Z 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-08-14 22:11:34.419542] 2025-08-14T22:11:40.4597713Z 2025-08-14T22:11:40.4598816Z test_maskedtensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_maskedtensor_1.1_4b0b37698d2009b8_.log 2025-08-14T22:11:40.4599589Z Running 0 items in this shard: 2025-08-14T22:11:40.4599775Z 2025-08-14T22:11:40.4603773Z Running test_tensorboard 1/1 ... [2025-08-14 22:11:40.459899] 2025-08-14T22:11:40.4604177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:40.4610197Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorboard.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:40.460503] 2025-08-14T22:11:45.4290759Z 2025-08-14T22:11:45.4291716Z test_tensorboard 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorboard_1.1_1654c4b95e372bb7_.log 2025-08-14T22:11:45.4292461Z Running 0 items in this shard: 2025-08-14T22:11:45.4292651Z 2025-08-14T22:11:45.4297235Z Running torch_np/numpy_tests/lib/test_type_check 1/1 ... [2025-08-14 22:11:45.429158] 2025-08-14T22:11:45.4297804Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:45.4303533Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_type_check.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:45.429733] 2025-08-14T22:11:49.6235255Z 2025-08-14T22:11:49.6236296Z torch_np/numpy_tests/lib/test_type_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_type_check_1.1_b7abaa4a4a174d05_.log 2025-08-14T22:11:49.6237264Z Running 0 items in this shard: 2025-08-14T22:11:49.6237454Z 2025-08-14T22:11:49.6241120Z Running lazy/test_ts_opinfo 1/1 ... [2025-08-14 22:11:49.621403] 2025-08-14T22:11:49.6241550Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:49.6247516Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_ts_opinfo.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:49.624491] 2025-08-14T22:11:55.4530276Z 2025-08-14T22:11:55.4531337Z lazy/test_ts_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_ts_opinfo_1.1_2daa61f04edb6269_.log 2025-08-14T22:11:55.4532233Z Running 0 items in this shard: 2025-08-14T22:11:55.4532425Z 2025-08-14T22:11:55.4537036Z Running test_mkldnn_fusion 1/1 ... [2025-08-14 22:11:55.453595] 2025-08-14T22:11:55.4537494Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:55.4544282Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn_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-08-14 22:11:55.454030] 2025-08-14T22:11:59.6466452Z 2025-08-14T22:11:59.6467570Z test_mkldnn_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_fusion_1.1_022ec366a4f6b997_.log 2025-08-14T22:11:59.6468286Z Running 0 items in this shard: 2025-08-14T22:11:59.6468473Z 2025-08-14T22:11:59.6472297Z Running benchmark_utils/test_benchmark_utils 1/1 ... [2025-08-14 22:11:59.642533] 2025-08-14T22:11:59.6472789Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:59.6478614Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'benchmark_utils/test_benchmark_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:59.642533] 2025-08-14T22:12:03.7892610Z 2025-08-14T22:12:03.7893842Z benchmark_utils/test_benchmark_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/benchmark_utils.test_benchmark_utils_1.1_c9cc7af5f0921bd4_.log 2025-08-14T22:12:03.7894754Z Running 0 items in this shard: 2025-08-14T22:12:03.7894942Z 2025-08-14T22:12:03.7898474Z Running test_linalg 1/1 ... [2025-08-14 22:12:03.788620] 2025-08-14T22:12:03.7898914Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:03.7904744Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_linalg.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:03.788620] 2025-08-14T22:12:09.7942678Z 2025-08-14T22:12:09.7943404Z test_linalg 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_linalg_1.1_9815341a1553de34_.log 2025-08-14T22:12:09.7945041Z Running 4 items in this shard: test/test_linalg.py::TestLinalgCPU::test_svd_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_svd_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_svd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_svd_cpu_float64 2025-08-14T22:12:09.7946067Z 2025-08-14T22:12:09.7948581Z Running test_futures 1/1 ... [2025-08-14 22:12:09.793276] 2025-08-14T22:12:09.7948987Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:09.7954730Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_futures.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:09.793276] 2025-08-14T22:12:14.0397744Z 2025-08-14T22:12:14.0398728Z test_futures 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_futures_1.1_ccb54ea27e1595f2_.log 2025-08-14T22:12:14.0399438Z Running 0 items in this shard: 2025-08-14T22:12:14.0399624Z 2025-08-14T22:12:14.0404591Z Running torch_np/numpy_tests/lib/test_histograms 1/1 ... [2025-08-14 22:12:14.040118] 2025-08-14T22:12:14.0405111Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:14.0422012Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_histograms.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:14.040118] 2025-08-14T22:12:18.3507392Z 2025-08-14T22:12:18.3508623Z torch_np/numpy_tests/lib/test_histograms 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_histograms_1.1_6b084348930a072b_.log 2025-08-14T22:12:18.3509890Z Running 0 items in this shard: 2025-08-14T22:12:18.3510118Z 2025-08-14T22:12:18.3531870Z Running optim/test_optim 1/1 ... [2025-08-14 22:12:18.352727] 2025-08-14T22:12:18.3532329Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:18.3580035Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_optim.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:18.357834] 2025-08-14T22:12:22.4616847Z 2025-08-14T22:12:22.4617722Z optim/test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_optim_1.1_a79a1bbdb18afffd_.log 2025-08-14T22:12:22.4618377Z 2025-08-14T22:12:22.4622830Z Running nn/test_embedding 1/1 ... [2025-08-14 22:12:22.461846] 2025-08-14T22:12:22.4623239Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:22.4629140Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_embedding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:22.462422] 2025-08-14T22:12:27.0117890Z 2025-08-14T22:12:27.0118871Z nn/test_embedding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_embedding_1.1_2a34783111222016_.log 2025-08-14T22:12:27.0119578Z Running 0 items in this shard: 2025-08-14T22:12:27.0123757Z 2025-08-14T22:12:27.0124029Z Running nn/test_dropout 1/1 ... [2025-08-14 22:12:27.011809] 2025-08-14T22:12:27.0124450Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:27.0130282Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_dropout.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:27.011809] 2025-08-14T22:12:31.5545160Z 2025-08-14T22:12:31.5546022Z nn/test_dropout 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_dropout_1.1_ad30cd266d8a7648_.log 2025-08-14T22:12:31.5546769Z Running 0 items in this shard: 2025-08-14T22:12:31.5546982Z 2025-08-14T22:12:31.5551201Z Running test_autograd 1/1 ... [2025-08-14 22:12:31.550203] 2025-08-14T22:12:31.5551617Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:31.5557336Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autograd.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:31.550203] 2025-08-14T22:12:37.5600748Z 2025-08-14T22:12:37.5601858Z test_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autograd_1.1_25ba849cc1737d8d_.log 2025-08-14T22:12:37.5602607Z Running 0 items in this shard: 2025-08-14T22:12:37.5602802Z 2025-08-14T22:12:37.5606847Z Running torch_np/numpy_tests/core/test_scalarmath 1/1 ... [2025-08-14 22:12:37.560094] 2025-08-14T22:12:37.5607404Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:37.5613504Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalarmath.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:37.560672] 2025-08-14T22:12:41.8052481Z 2025-08-14T22:12:41.8053707Z torch_np/numpy_tests/core/test_scalarmath 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalarmath_1.1_f944c6b2a74cb8f6_.log 2025-08-14T22:12:41.8054619Z Running 0 items in this shard: 2025-08-14T22:12:41.8054807Z 2025-08-14T22:12:41.8058685Z Running test_functional_optim 1/1 ... [2025-08-14 22:12:41.799929] 2025-08-14T22:12:41.8059373Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:41.8065107Z 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-08-14 22:12:41.799929] 2025-08-14T22:12:46.3324725Z 2025-08-14T22:12:46.3325733Z test_functional_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functional_optim_1.1_9dc60fb56e13571d_.log 2025-08-14T22:12:46.3326864Z Running 0 items in this shard: 2025-08-14T22:12:46.3327213Z 2025-08-14T22:12:46.3330757Z Running test_vulkan 1/1 ... [2025-08-14 22:12:46.332734] 2025-08-14T22:12:46.3331125Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:46.3337335Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_vulkan.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:46.333346] 2025-08-14T22:12:50.5517100Z 2025-08-14T22:12:50.5518146Z test_vulkan 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_vulkan_1.1_b39ee0f6528766dc_.log 2025-08-14T22:12:50.5518789Z Running 0 items in this shard: 2025-08-14T22:12:50.5518982Z 2025-08-14T22:12:50.5523120Z Running functorch/test_vmap 1/2 ... [2025-08-14 22:12:50.552203] 2025-08-14T22:12:50.5523519Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:50.5529427Z 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-08-14 22:12:50.552775] 2025-08-14T22:12:57.7591124Z 2025-08-14T22:12:57.7592190Z functorch/test_vmap 1/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_1.2_cf536e60748b348e_.log 2025-08-14T22:12:57.7592917Z Running 0 items in this shard: 2025-08-14T22:12:57.7593094Z 2025-08-14T22:13:02.0793067Z Running inductor/test_kernel_benchmark 1/1 ... [2025-08-14 22:13:02.078933] 2025-08-14T22:13:02.0793571Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:02.0800246Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_benchmark.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:02.079522] 2025-08-14T22:13:02.1984042Z Running inductor/test_inplace_padding 1/1 ... [2025-08-14 22:13:02.196121] 2025-08-14T22:13:02.1984524Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:02.1990762Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplace_padding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:02.196121] 2025-08-14T22:13:02.2379450Z Running export/test_torchbind 1/1 ... [2025-08-14 22:13:02.236604] 2025-08-14T22:13:02.2379893Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:02.2380927Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_torchbind.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:02.237383] 2025-08-14T22:13:14.1681577Z 2025-08-14T22:13:14.1682544Z inductor/test_inplace_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplace_padding_1.1_c86ada086d26e929_.log 2025-08-14T22:13:14.1683252Z 2025-08-14T22:13:16.0662333Z 2025-08-14T22:13:16.0664079Z inductor/test_kernel_benchmark 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_benchmark_1.1_f6444b2396c333d5_.log 2025-08-14T22:13:16.0665177Z 2025-08-14T22:13:19.1337689Z Running dynamo/test_pgo 1/1 ... [2025-08-14 22:13:19.133519] 2025-08-14T22:13:19.1338110Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:19.1344298Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pgo.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:19.134093] 2025-08-14T22:13:21.0382715Z Running test_dataloader 2/2 ... [2025-08-14 22:13:21.033709] 2025-08-14T22:13:21.0383164Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:21.0389674Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:21.033709] 2025-08-14T22:13:23.7566072Z 2025-08-14T22:13:23.7567020Z dynamo/test_pgo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pgo_1.1_d6cf1854a351a8d1_.log 2025-08-14T22:13:23.7567633Z 2025-08-14T22:13:29.0311973Z Running test_sparse 1/2 ... [2025-08-14 22:13:29.030837] 2025-08-14T22:13:29.0312373Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:29.0320707Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:29.031429] 2025-08-14T22:13:59.2151367Z 2025-08-14T22:13:59.2152928Z export/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_torchbind_1.1_6810bef8037be8b1_.log 2025-08-14T22:13:59.2228438Z Running 90 items in this shard: test/export/test_torchbind.py::TestExportTorchbind::test_aot_export_tensor_queue_operators, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_as_custom_op_argument_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_as_custom_op_argument_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_list_out_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_list_out_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_tuple_out_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_tuple_out_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_unbacked_symint_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_unbacked_symint_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_deepcopy, test/export/test_torchbind.py::TestExportTorchbind::test_export_inplace_custom_op, test/export/test_torchbind.py::TestExportTorchbind::test_identifying_torchbind_ops, test/export/test_torchbind.py::TestExportTorchbind::test_input_as_custom_op_argument_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_input_as_custom_op_argument_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_input_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_input_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_schema_checking_script_object, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_fakify_internal_states_make_fx_tracing_mode_fake, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_fakify_internal_states_make_fx_tracing_mode_symbolic, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_make_fx_tracing_mode_fake, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_make_fx_tracing_mode_symbolic, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_operators_fallthrough_via_lib_impl, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_operators_fallthrough_via_py_impl, test/export/test_torchbind.py::TestExportTorchbind::test_method_schema, test/export/test_torchbind.py::TestExportTorchbind::test_non_strict_export_methods, test/export/test_torchbind.py::TestExportTorchbind::test_none_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_none_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_safe_to_trace_with_real, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_alias_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_alias_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_input_and_alias_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_input_and_alias_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_op_fallthrough_keys_respects_lib_impl, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_op_register_fallthrough, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_register_attr_at_runtime_error, test/export/test_torchbind.py::TestExportTorchbind::test_unlift_custom_obj_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_unlift_custom_obj_pre_dispatch_True, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_body_aliasing_contents_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_body_aliasing_contents_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_body_aliasing_contents_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_input_aliasing_contents_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_input_aliasing_contents_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_input_aliasing_contents_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_non_fakified_method_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_non_fakified_method_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_non_fakified_method_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_missing_attr_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_missing_attr_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_setattr_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_setattr_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_global_obj_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_global_obj_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_global_obj_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_as_hop_input_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_as_hop_input_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_as_hop_input_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_attributes_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_attributes_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_attributes_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_closure_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_closure_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_closure_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_graph_breaks, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cpu_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cpu_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cpu_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cuda_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cuda_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cuda_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_automatic_dynamic_shape, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_guards_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_guards_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_guards_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_tensor_op_in_tensor_flatten_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_tensor_op_in_tensor_flatten_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_tensor_op_in_tensor_flatten_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_export_obj_torchbind_op_with_autocast_device_cpu, test/export/test_torchbind.py::TestCompileTorchbind::test_export_obj_torchbind_op_with_autocast_device_cuda, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_from_real_not_classmethod, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_no_from_real, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_no_torch_bind_class, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_valid 2025-08-14T22:13:59.2293147Z 2025-08-14T22:14:05.4114334Z Running test_sparse 2/2 ... [2025-08-14 22:14:05.403106] 2025-08-14T22:14:05.4114752Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:05.4120554Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:05.403106] 2025-08-14T22:17:36.4438101Z 2025-08-14T22:17:36.4439046Z test_dataloader 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_2.2_47a56915691a8af2_.log 2025-08-14T22:17:36.4495667Z Running 89 items in this shard: test/test_dataloader.py::TestDatasetRandomSplit::test_lengths_must_equal_dataset_size, test/test_dataloader.py::TestDatasetRandomSplit::test_slicing_of_subset_of_dataset, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_generator, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_have_correct_size, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_reproducibility, test/test_dataloader.py::TestTensorDataset::test_getitem_1d, test/test_dataloader.py::TestTensorDataset::test_single_tensor, test/test_dataloader.py::TestStackDataset::test_empty, test/test_dataloader.py::TestStackDataset::test_len, test/test_dataloader.py::TestConcatDataset::test_add_dataset, test/test_dataloader.py::TestConcatDataset::test_concat_raises_index_error, test/test_dataloader.py::TestConcatDataset::test_concat_two_singletons, test/test_dataloader.py::TestDataLoader::test_batch_sampler, test/test_dataloader.py::TestDataLoader::test_bulk_loading_nobatch, test/test_dataloader.py::TestDataLoader::test_chain_iterable_style_dataset, test/test_dataloader.py::TestDataLoader::test_default_collate_bad_sequence_type, test/test_dataloader.py::TestDataLoader::test_default_collate_dtype, test/test_dataloader.py::TestDataLoader::test_default_collate_numpy_memmap, test/test_dataloader.py::TestDataLoader::test_default_convert_mapping_keep_type, test/test_dataloader.py::TestDataLoader::test_default_convert_sequence_keep_type, test/test_dataloader.py::TestDataLoader::test_distributed_sampler_invalid_rank, test/test_dataloader.py::TestDataLoader::test_error_workers, test/test_dataloader.py::TestDataLoader::test_growing_dataset, test/test_dataloader.py::TestDataLoader::test_invalid_ctor_args_combinations, test/test_dataloader.py::TestDataLoader::test_large_sampler_indices, test/test_dataloader.py::TestDataLoader::test_multiple_dataloaders, test/test_dataloader.py::TestDataLoader::test_multiprocessing_iterdatapipe, test/test_dataloader.py::TestDataLoader::test_numpy_gen_state, test/test_dataloader.py::TestDataLoader::test_numpy_scalars, test/test_dataloader.py::TestDataLoader::test_proper_exit, test/test_dataloader.py::TestDataLoader::test_segfault, test/test_dataloader.py::TestDataLoader::test_sequential_batch, test/test_dataloader.py::TestDataLoader::test_sequential_nonbatch, test/test_dataloader.py::TestDataLoader::test_sequential_pin_memory, test/test_dataloader.py::TestDataLoader::test_sequential_workers, test/test_dataloader.py::TestDataLoader::test_shuffle_batch_none, test/test_dataloader.py::TestDataLoader::test_shuffle_batch_workers, test/test_dataloader.py::TestDataLoader::test_shuffle_batch_workers_prefetch, test/test_dataloader.py::TestDataLoader::test_shuffle_pin_memory, test/test_dataloader.py::TestDataLoader::test_shuffle_reproducibility, test/test_dataloader.py::TestDataLoader::test_shuffle_workers, test/test_dataloader.py::TestDataLoader::test_timeout, test/test_dataloader.py::TestDataLoader::test_typing, test/test_dataloader.py::TestDataLoader::test_worker_seed, test/test_dataloader.py::TestDataLoader::test_worker_seed_reproducibility, test/test_dataloader.py::IntegrationTestDataLoaderDataPipe::test_shuffler_iterdatapipe, test/test_dataloader.py::TestStringDataLoader::test_shuffle_pin_memory, test/test_dataloader.py::TestDictDataLoader::test_pin_memory, test/test_dataloader.py::TestDictDataLoader::test_pin_memory_device, test/test_dataloader.py::TestDictDataLoader::test_sequential_batch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_builtin_collection_conversion, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_bulk_loading_nobatch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_chain_iterable_style_dataset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_bad_sequence_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_shared_tensor, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_convert_mapping_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_distributed_sampler_invalid_rank, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_early_exit, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_error_in_init, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_error_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_excessive_thread_creation_warning, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_fd_limit_exceeded, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_growing_dataset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_invalid_assign_after_init, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_len, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multi_epochs_reproducibility, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiple_dataloaders, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiprocessing_contexts, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiprocessing_iterdatapipe_with_dill, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_no_segfault, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_numpy, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_numpy_gen_state, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_proper_exit, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_random_sampler_len_with_replacement, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_random_sampler_len_without_replacement, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sampler, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sampler_reproducibility, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_batch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_nonbatch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_pin_memory, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_reproducibility, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_typing, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_worker_seed, test/test_dataloader.py::TestCustomPinFn::test_custom_batch_pin_worker, test/test_dataloader.py::TestIndividualWorkerQueue::test_ind_worker_queue, test/test_dataloader.py::TestSetAffinity::test_set_affinity_in_worker_init, test/test_dataloader.py::TestOutOfOrderDataLoader::test_in_order_iterable_ds, test/test_dataloader.py::TestDataLoaderDeviceTypeCPU::test_sparse_tensor_multiprocessing_context_spawn_cpu 2025-08-14T22:17:36.4545722Z 2025-08-14T22:17:42.9201620Z Running inductor/test_torchinductor_dynamic_shapes 1/1 ... [2025-08-14 22:17:42.919496] 2025-08-14T22:17:42.9202505Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:42.9212762Z 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-08-14 22:17:42.920647] 2025-08-14T22:17:55.4607348Z 2025-08-14T22:17:55.4609191Z 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_e024a6accef4e809_.log 2025-08-14T22:17:55.4610754Z 2025-08-14T22:18:00.7435289Z Running inductor/test_cpu_repro 1/1 ... [2025-08-14 22:18:00.743321] 2025-08-14T22:18:00.7436077Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:00.7442066Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_repro.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:00.743914] 2025-08-14T22:18:11.9872777Z 2025-08-14T22:18:11.9874751Z inductor/test_cpu_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_repro_1.1_523227aa947168c5_.log 2025-08-14T22:18:11.9876087Z 2025-08-14T22:18:17.6787753Z Running dynamo/test_dynamic_shapes 1/1 ... [2025-08-14 22:18:17.670805] 2025-08-14T22:18:17.6788517Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:17.6795554Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dynamic_shapes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:17.670805] 2025-08-14T22:18:31.2827565Z 2025-08-14T22:18:31.2828920Z dynamo/test_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dynamic_shapes_1.1_9911545d51b0e7ab_.log 2025-08-14T22:18:31.2830126Z 2025-08-14T22:18:36.8749913Z Running inductor/test_pattern_matcher 1/1 ... [2025-08-14 22:18:36.874743] 2025-08-14T22:18:36.8750766Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:36.8759099Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pattern_matcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:36.875357] 2025-08-14T22:18:48.6020885Z 2025-08-14T22:18:48.6022489Z inductor/test_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pattern_matcher_1.1_13c4cf716480ed23_.log 2025-08-14T22:18:48.6023636Z 2025-08-14T22:18:54.0102536Z Running inductor/test_foreach 1/1 ... [2025-08-14 22:18:54.010094] 2025-08-14T22:18:54.0103031Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:54.0109832Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_foreach.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:54.010776] 2025-08-14T22:18:55.5260009Z 2025-08-14T22:18:55.5260834Z test_sparse 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_1.2_42e353db87ebf4c1_.log 2025-08-14T22:18:55.5797342Z Running 1573 items in this shard: test/test_sparse.py::TestSparseOneOff::test_cuda_from_cpu, test/test_sparse.py::TestSparseMeta::test_add_meta_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_add_meta_SparseBSR_float64, test/test_sparse.py::TestSparseMeta::test_add_meta_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_add_meta_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_fake_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_meta_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_meta_SparseCSR_float64, test/test_sparse.py::TestSparseMeta::test_print_meta_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_print_meta_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_sum_meta_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_sum_meta_SparseBSR_float64, test/test_sparse.py::TestSparseMeta::test_sum_meta_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_sum_meta_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_to_meta_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_fake_SparseBSR_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_fake_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_meta_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_meta_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_meta_SparseCSR_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_ceil_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_ceil_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_ceil_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_ceil_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_deg2rad_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_deg2rad_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_deg2rad_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_erf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_erf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_erf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_erf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_floor_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_floor_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_floor_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_frac_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isneginf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isneginf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isneginf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isneginf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isposinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isposinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nan_to_num_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nan_to_num_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nan_to_num_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nn_functional_relu_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nn_functional_relu_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nn_functional_relu_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_rad2deg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_rad2deg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_rad2deg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_round_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_round_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sign_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sign_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sign_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sign_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sign_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sign_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_signbit_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_signbit_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_signbit_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_trunc_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_trunc_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_trunc_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_ceil_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_ceil_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_ceil_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_ceil_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_deg2rad_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_deg2rad_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_deg2rad_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_deg2rad_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_erf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_erf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_erf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_erf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_erf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_floor_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_floor_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_floor_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_floor_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_frac_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isneginf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isneginf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isneginf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isneginf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isneginf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isposinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isposinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isposinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isposinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nan_to_num_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nan_to_num_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nan_to_num_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nan_to_num_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nn_functional_relu_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nn_functional_relu_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nn_functional_relu_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nn_functional_relu_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nn_functional_relu_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nn_functional_relu_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_rad2deg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_rad2deg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_rad2deg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_round_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_round_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_round_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sign_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sign_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sign_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sign_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sign_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_signbit_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_signbit_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_signbit_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_trunc_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_trunc_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_trunc_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_trunc_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_trunc_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_ceil_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_ceil_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_ceil_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_ceil_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_ceil_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_ceil_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_ceil_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_deg2rad_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_deg2rad_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_deg2rad_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_deg2rad_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_erf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_erf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_erf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_floor_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_floor_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_floor_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_floor_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_frac_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isneginf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isneginf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isneginf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isneginf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isposinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isposinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nan_to_num_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nan_to_num_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nn_functional_relu_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nn_functional_relu_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nn_functional_relu_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_rad2deg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_rad2deg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_rad2deg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_round_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_round_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_round_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_round_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sign_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sign_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_signbit_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_signbit_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_signbit_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_signbit_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_trunc_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_trunc_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_abs_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_asin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_atan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_atan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_ceil_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_conj_physical_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_deg2rad_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_expm1_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_floor_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_isinf_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_isnan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_log1p_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_nan_to_num_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_neg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_nn_functional_relu_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_positive_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_positive_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_rad2deg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_round_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sqrt_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_tan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_tanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_ceil_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_ceil_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_deg2rad_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_deg2rad_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_deg2rad_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_erf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_erf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_floor_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_floor_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_floor_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_floor_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_floor_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isneginf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isneginf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isposinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isposinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isposinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isposinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nan_to_num_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nan_to_num_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nn_functional_relu_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nn_functional_relu_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nn_functional_relu_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nn_functional_relu_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nn_functional_relu_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_rad2deg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_rad2deg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_rad2deg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_round_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_round_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_round_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_round_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sign_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sign_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_signbit_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_signbit_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_signbit_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_trunc_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_trunc_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_trunc_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_trunc_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_trunc_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_ceil_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_ceil_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_ceil_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_ceil_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_deg2rad_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_deg2rad_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_deg2rad_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_deg2rad_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_erf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_erf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_erf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_erf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_floor_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_floor_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_floor_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_floor_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_floor_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_frac_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isneginf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isneginf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isneginf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isneginf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isposinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isposinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isposinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nan_to_num_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nan_to_num_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nan_to_num_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nn_functional_relu_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nn_functional_relu_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nn_functional_relu_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_rad2deg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_rad2deg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_rad2deg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_rad2deg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_round_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_round_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sign_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sign_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_signbit_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_signbit_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_signbit_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_signbit_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_signbit_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_signbit_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_signbit_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_trunc_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_trunc_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_trunc_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_trunc_cpu_int8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_float16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_int16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_int32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_uint8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_bfloat16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_float32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_float64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_uint8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_bfloat16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_float64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_int32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_uint8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_complex128, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_complex64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_float32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_float64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_int32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_int64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_int8, test/test_sparse.py::TestSparseCPU::test_Sparse_to_Sparse_copy_multi_gpu_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_Sparse_to_Sparse_copy_multi_gpu_cpu_float64, test/test_sparse.py::TestSparseCPU::test_add_zeros_cpu_float64, test/test_sparse.py::TestSparseCPU::test_any_cpu, test/test_sparse.py::TestSparseCPU::test_asin_arcsin_cpu_float32, test/test_sparse.py::TestSparseCPU::test_asin_arcsin_cpu_int16, test/test_sparse.py::TestSparseCPU::test_asin_arcsin_cpu_int32, test/test_sparse.py::TestSparseCPU::test_asin_arcsin_cpu_int64, test/test_sparse.py::TestSparseCPU::test_asin_arcsin_cpu_int8, test/test_sparse.py::TestSparseCPU::test_assign_cpu_float64, test/test_sparse.py::TestSparseCPU::test_basic_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_basic_cpu_float64, test/test_sparse.py::TestSparseCPU::test_basic_ops_cpu_float64, test/test_sparse.py::TestSparseCPU::test_bmm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_bmm_oob_cpu, test/test_sparse.py::TestSparseCPU::test_change_tensor_metadata_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_change_tensor_metadata_cpu_float64, test/test_sparse.py::TestSparseCPU::test_coalesce_accepts_large_tensor_cpu_float32, test/test_sparse.py::TestSparseCPU::test_coalesce_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_coalesce_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_contig_cpu_float64, test/test_sparse.py::TestSparseCPU::test_contig_hybrid_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_ctor_is_coalesced_with_gradcheck_cpu_float64, test/test_sparse.py::TestSparseCPU::test_ctor_size_checks_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_cuda_empty_cpu, test/test_sparse.py::TestSparseCPU::test_div_rounding_mode_cpu_float32, test/test_sparse.py::TestSparseCPU::test_div_rounding_mode_cpu_float64, test/test_sparse.py::TestSparseCPU::test_dsmm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_dtypes_cpu, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_float16, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_float32, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_float64, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_int16, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_int8, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_bool, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_float16, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_float32, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_float64, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_int32, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_int64, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_empty_like_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_factory_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_factory_cpu_float32, test/test_sparse.py::TestSparseCPU::test_factory_dense_dim_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_factory_dense_dim_cpu_float64, test/test_sparse.py::TestSparseCPU::test_factory_empty_indices_cpu, test/test_sparse.py::TestSparseCPU::test_factory_nnz_zero_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_factory_nnz_zero_cpu_float64, test/test_sparse.py::TestSparseCPU::test_factory_size_check_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_factory_type_inference_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_factory_type_inference_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_factory_type_inference_cpu_float16, test/test_sparse.py::TestSparseCPU::test_factory_type_inference_cpu_int64, test/test_sparse.py::TestSparseCPU::test_floor_divide_by_sparse_error_cpu, test/test_sparse.py::TestSparseCPU::test_full_broadcast_to_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_hsmm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_index_select_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_index_select_empty_and_non_contiguous_index_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_index_select_exhaustive_index_large_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_index_select_exhaustive_index_large_cpu_float64, test/test_sparse.py::TestSparseCPU::test_index_select_exhaustive_index_small_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_index_select_exhaustive_index_small_cpu_float64, test/test_sparse.py::TestSparseCPU::test_index_select_parallelization_cpu_float64, test/test_sparse.py::TestSparseCPU::test_legacy_new_cpu, test/test_sparse.py::TestSparseCPU::test_legacy_new_device_cpu, test/test_sparse.py::TestSparseCPU::test_log1p_cpu_float32, test/test_sparse.py::TestSparseCPU::test_log1p_cpu_float64, test/test_sparse.py::TestSparseCPU::test_log1p_cpu_int32, test/test_sparse.py::TestSparseCPU::test_log_softmax_zero_nnz_cpu_float32, test/test_sparse.py::TestSparseCPU::test_log_softmax_zero_nnz_cpu_float64, test/test_sparse.py::TestSparseCPU::test_mv_cpu_float64, test/test_sparse.py::TestSparseCPU::test_neg_negative_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_new_device_multi_gpu_cpu, test/test_sparse.py::TestSparseCPU::test_norm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_permute_masked_cpu_float64, test/test_sparse.py::TestSparseCPU::test_pickle_cpu_float64, test/test_sparse.py::TestSparseCPU::test_resize_as_cpu, test/test_sparse.py::TestSparseCPU::test_resize_cpu_float64, test/test_sparse.py::TestSparseCPU::test_same_gpu_cpu, test/test_sparse.py::TestSparseCPU::test_scalar_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_scalar_cpu_float64, test/test_sparse.py::TestSparseCPU::test_select_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_select_no_type_promotion_cpu_int32, test/test_sparse.py::TestSparseCPU::test_select_no_type_promotion_cpu_int64, test/test_sparse.py::TestSparseCPU::test_select_no_type_promotion_cpu_int8, test/test_sparse.py::TestSparseCPU::test_shared_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_shared_cpu_float64, test/test_sparse.py::TestSparseCPU::test_small_nnz_coalesced_cpu, test/test_sparse.py::TestSparseCPU::test_sparse_add_coalesce_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_add_coalesce_cpu_float32, test/test_sparse.py::TestSparseCPU::test_sparse_add_coalesce_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_add_out_bfloat16_cpu_float32, test/test_sparse.py::TestSparseCPU::test_sparse_addmm_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_sparse_addmm_cpu_float16, test/test_sparse.py::TestSparseCPU::test_sparse_addmm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_bool_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_broadcast_to_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_bool, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_float32, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_int32, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_int64, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_sparse_mask_backward_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_mask_backward_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_mask_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_mask_hybrid_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_mask_hybrid_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_matmul_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_sparse_matmul_cpu_float32, test/test_sparse.py::TestSparseCPU::test_sparse_mm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_mul_masked_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_mul_sparse_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_float32, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_int16, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_int64, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_int8, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_int64, test/test_sparse.py::TestSparseCPU::test_sparse_sum_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_to_numpy_cpu, test/test_sparse.py::TestSparseCPU::test_sspaddmm_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sspaddmm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_storage_not_null_cpu, test/test_sparse.py::TestSparseCPU::test_sum_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sum_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_sum_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sum_cpu_int16, test/test_sparse.py::TestSparseCPU::test_sum_cpu_int32, test/test_sparse.py::TestSparseCPU::test_t_empty_cpu_float64, test/test_sparse.py::TestSparseCPU::test_to_dense_hybrid_sparse_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_to_dense_hybrid_sparse_cpu_float64, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_masked_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_masked_cpu_float16, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_masked_cpu_float32, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_sparse_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_sparse_cpu_float16, test/test_sparse.py::TestSparseCPU::test_to_sparse_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_to_sparse_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_to_sparse_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_to_sparse_cpu_float64, test/test_sparse.py::TestSparseCPU::test_to_sparse_cpu_int32, test/test_sparse.py::TestSparseCPU::test_transpose_cpu_float64, test/test_sparse.py::TestSparseCPU::test_unsqueeze_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_zeros_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_zeros_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSC_masked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSC_nonmasked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSR_masked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSR_nonmasked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCOO_nonmasked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSC_nonmasked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSC_nonmasked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSR_masked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSR_masked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSR_nonmasked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSR_nonmasked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_check_sparse_tensor_invariants_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_check_sparse_tensor_invariants_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_autograd_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_autograd_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_autograd_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_mismatched_pinned_memory_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_mismatched_pinned_memory_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_mismatched_pinned_memory_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_mismatched_pinned_memory_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pin_memory_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pin_memory_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pin_memory_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pin_memory_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pinned_memory_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pinned_memory_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pinned_memory_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_dataloader_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_dataloader_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_generate_simple_inputs_cpu, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_masked_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_masked_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_masked_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_sparse_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_sparse_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_sparse_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_masked_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_masked_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_sparse_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_sparse_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_sparse_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_sparse_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_masked_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_masked_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_sparse_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSC_int64_masked_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSC_int64_sparse_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSR_int64_masked_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSR_int64_masked_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSR_int64_sparse_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCOO_int64_sparse_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSC_int64_masked_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSC_int64_masked_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSC_int64_sparse_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSR_int64_masked_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSR_int64_sparse_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSR_int64_sparse_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_invalid_blocksize_cpu, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSR_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCOO_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCOO_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCOO_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCOO_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_method_pin_memory_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCOO_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCOO_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_ccol_indices_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_ccol_indices_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_ccol_indices_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_coalesce_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_coalesce_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_col_indices_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_col_indices_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_col_indices_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_indices_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_indices_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_indices_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_indices_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_indices_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_is_coalesced_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_is_coalesced_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_is_coalesced_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_is_coalesced_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_is_coalesced_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_row_indices_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_row_indices_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_values_Strided_cpu 2025-08-14T22:18:55.6573385Z 2025-08-14T22:19:00.8231807Z Running inductor/test_triton_wrapper 1/1 ... [2025-08-14 22:19:00.821300] 2025-08-14T22:19:00.8232323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:00.8238012Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_wrapper.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:00.821300] 2025-08-14T22:19:04.5064261Z 2025-08-14T22:19:04.5065148Z inductor/test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_foreach_1.1_41eb3595ca4af281_.log 2025-08-14T22:19:04.5065812Z 2025-08-14T22:19:09.6208932Z Running inductor/test_select_algorithm 1/1 ... [2025-08-14 22:19:09.614712] 2025-08-14T22:19:09.6209444Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:09.6215655Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_select_algorithm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:09.614712] 2025-08-14T22:19:11.4178900Z 2025-08-14T22:19:11.4179797Z inductor/test_triton_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_wrapper_1.1_be98fe9a60f1fb6e_.log 2025-08-14T22:19:11.4180534Z 2025-08-14T22:19:16.9574251Z Running inductor/test_fused_attention 1/1 ... [2025-08-14 22:19:16.956865] 2025-08-14T22:19:16.9575235Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:16.9581911Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fused_attention.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:16.957478] 2025-08-14T22:19:19.9334618Z 2025-08-14T22:19:19.9335620Z inductor/test_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_select_algorithm_1.1_e9c61adbc9fd7ee2_.log 2025-08-14T22:19:19.9336362Z 2025-08-14T22:19:25.2460327Z Running inductor/test_split_cat_fx_passes 1/1 ... [2025-08-14 22:19:25.242411] 2025-08-14T22:19:25.2461011Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:25.2466697Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:25.242411] 2025-08-14T22:19:27.2269228Z 2025-08-14T22:19:27.2270815Z inductor/test_fused_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fused_attention_1.1_15d89448ada9641d_.log 2025-08-14T22:19:27.2272101Z 2025-08-14T22:19:32.6859859Z Running inductor/test_custom_lowering 1/1 ... [2025-08-14 22:19:32.681343] 2025-08-14T22:19:32.6860757Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:32.6867508Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_lowering.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:32.681343] 2025-08-14T22:19:36.0173481Z 2025-08-14T22:19:36.0175227Z 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_4ab8387d301c2a9c_.log 2025-08-14T22:19:36.0176099Z 2025-08-14T22:19:41.2444563Z Running dynamo/test_after_aot 1/1 ... [2025-08-14 22:19:41.243728] 2025-08-14T22:19:41.2445028Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:41.2450767Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_after_aot.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:41.244903] 2025-08-14T22:19:43.6314785Z 2025-08-14T22:19:43.6316553Z inductor/test_custom_lowering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_lowering_1.1_b76fd10e71e41624_.log 2025-08-14T22:19:43.6317874Z 2025-08-14T22:19:44.9070323Z 2025-08-14T22:19:44.9071414Z test_sparse 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_2.2_b0dcee17daa5af80_.log 2025-08-14T22:19:44.9563143Z Running 1482 items in this shard: test/test_sparse.py::TestSparseLegacyAndDeprecation::test_legacy_warnings, test/test_sparse.py::TestSparseOneOff::test_cuda_sparse_cpu_dense_add, test/test_sparse.py::TestSparseMeta::test_add_meta_SparseCSR_float64, test/test_sparse.py::TestSparseMeta::test_fake_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_fake_SparseBSR_float64, test/test_sparse.py::TestSparseMeta::test_fake_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_fake_SparseCSR_float64, test/test_sparse.py::TestSparseMeta::test_meta_SparseBSR_float64, test/test_sparse.py::TestSparseMeta::test_meta_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_meta_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_print_meta_SparseBSR_float64, test/test_sparse.py::TestSparseMeta::test_print_meta_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_print_meta_SparseCSR_float64, test/test_sparse.py::TestSparseMeta::test_sum_meta_SparseCSR_float64, test/test_sparse.py::TestSparseMeta::test_to_meta_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_to_meta_SparseBSR_float64, test/test_sparse.py::TestSparseMeta::test_to_meta_SparseCSC_float64, test/test_sparse.py::TestSparseMeta::test_to_meta_SparseCSR_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_fake_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_fake_SparseCOO_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_fake_SparseCSR_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_meta_SparseBSC_float64, test/test_sparse.py::TestSparseMeta::test_zeros_like_meta_SparseBSR_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_abs_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_asinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_atanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_ceil_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_ceil_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_ceil_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_conj_physical_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_deg2rad_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_deg2rad_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_deg2rad_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_deg2rad_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_erf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_erf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_erf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_expm1_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_floor_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_floor_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_floor_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_floor_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_frac_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isnan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isneginf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isneginf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isneginf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isposinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isposinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isposinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isposinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_isposinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_log1p_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nan_to_num_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nan_to_num_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nan_to_num_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nan_to_num_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_neg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nn_functional_relu_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nn_functional_relu_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nn_functional_relu_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_nn_functional_relu_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_positive_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_rad2deg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_rad2deg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_rad2deg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_rad2deg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_round_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_round_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_round_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_round_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_round_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sgn_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sign_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_signbit_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_signbit_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_signbit_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_signbit_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_sqrt_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_tanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_trunc_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_trunc_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_trunc_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_inplace_trunc_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_abs_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_asinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_atanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_ceil_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_ceil_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_ceil_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_conj_physical_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_deg2rad_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_deg2rad_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_deg2rad_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_erf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_erf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_expm1_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_floor_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_floor_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_floor_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_frac_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isnan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isneginf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isneginf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isposinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isposinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_isposinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_log1p_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nan_to_num_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nan_to_num_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nan_to_num_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_neg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_nn_functional_relu_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_positive_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_rad2deg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_rad2deg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_rad2deg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_rad2deg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_round_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_round_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_round_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_round_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sgn_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sign_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sign_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_signbit_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_signbit_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_signbit_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_signbit_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_sqrt_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_tanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_trunc_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_out_trunc_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_abs_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_asinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_atanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_conj_physical_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_deg2rad_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_deg2rad_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_deg2rad_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_erf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_erf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_erf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_erf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_expm1_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_floor_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_floor_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_floor_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_frac_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isnan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isneginf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isneginf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isneginf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isposinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isposinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isposinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isposinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_isposinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_log1p_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nan_to_num_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nan_to_num_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nan_to_num_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nan_to_num_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nan_to_num_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_neg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nn_functional_relu_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nn_functional_relu_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nn_functional_relu_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_nn_functional_relu_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_positive_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_rad2deg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_rad2deg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_rad2deg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_rad2deg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_round_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_round_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_round_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sgn_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sign_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sign_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sign_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sign_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sign_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_signbit_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_signbit_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_signbit_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sinh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_sqrt_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_tanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_trunc_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_trunc_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_trunc_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_trunc_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_consistency_trunc_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_abs_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_asin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_asinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_asinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_atanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_atanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_conj_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_conj_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_conj_physical_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_erf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_expm1_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_frac_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_isinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_isnan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_isneginf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_isposinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_log1p_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_neg_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sgn_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sgn_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sign_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_signbit_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_sqrt_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_tan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_tanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_fn_grad_trunc_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_abs_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_asinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_atanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_ceil_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_ceil_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_ceil_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_ceil_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_ceil_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_conj_physical_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_deg2rad_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_deg2rad_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_deg2rad_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_deg2rad_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_erf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_erf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_erf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_erf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_erf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_expm1_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_floor_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_floor_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_frac_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_frac_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isnan_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isneginf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isneginf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isneginf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isneginf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isneginf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isposinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isposinf_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_isposinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_log1p_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nan_to_num_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nan_to_num_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nan_to_num_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nan_to_num_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nan_to_num_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_neg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nn_functional_relu_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_nn_functional_relu_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_positive_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_rad2deg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_rad2deg_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_rad2deg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_rad2deg_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_round_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_round_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_round_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sgn_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sign_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sign_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sign_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sign_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sign_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_signbit_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_signbit_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_signbit_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_signbit_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sin_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_sqrt_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_tanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_trunc_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zero_dims_trunc_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_abs_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_asinh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_atanh_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_ceil_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_ceil_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_ceil_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_conj_physical_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_deg2rad_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_deg2rad_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_deg2rad_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_erf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_erf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_erf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_expm1_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_floor_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_floor_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_frac_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isinf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isnan_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isneginf_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isneginf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isneginf_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isposinf_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isposinf_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isposinf_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_isposinf_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_log1p_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nan_to_num_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nan_to_num_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nan_to_num_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nan_to_num_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_neg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nn_functional_relu_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nn_functional_relu_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nn_functional_relu_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_nn_functional_relu_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_positive_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_rad2deg_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_rad2deg_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_rad2deg_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_round_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_round_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_round_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_round_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_round_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sgn_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sign_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sign_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sign_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sign_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sign_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sin_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_int32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sinh_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_int16, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_sqrt_cpu_uint8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_complex64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tan_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_complex128, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_float32, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_tanh_cpu_int8, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_trunc_cpu_float64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_trunc_cpu_int64, test/test_sparse.py::TestSparseUnaryUfuncsCPU::test_sparse_zeros_trunc_cpu_uint8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_bfloat16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_float32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_float64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_int64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amax_cpu_int8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_float16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_int16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_int32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_int64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_amin_cpu_int8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_bool, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_complex128, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_complex64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_float16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_float32, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_int16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_int64, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_prod_cpu_int8, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_bfloat16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_bool, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_float16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_int16, test/test_sparse.py::TestSparseMaskedReductionsCPU::test_future_empty_dim_masked_sum_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_Sparse_to_Sparse_copy__cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_Sparse_to_Sparse_copy__cpu_complex128, test/test_sparse.py::TestSparseCPU::test_Sparse_to_Sparse_copy__cpu_float64, test/test_sparse.py::TestSparseCPU::test_add_dense_sparse_mismatch_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_add_dense_sparse_mismatch_cpu_float64, test/test_sparse.py::TestSparseCPU::test_add_noncontiguous_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_add_noncontiguous_cpu_float64, test/test_sparse.py::TestSparseCPU::test_add_sub_nnz_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_add_sub_nnz_cpu_float64, test/test_sparse.py::TestSparseCPU::test_add_zeros_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_asin_arcsin_cpu_float64, test/test_sparse.py::TestSparseCPU::test_asin_arcsin_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_bmm_deterministic_cpu_float64, test/test_sparse.py::TestSparseCPU::test_bmm_windows_error_cpu_float64, test/test_sparse.py::TestSparseCPU::test_cat_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_cat_cpu_float64, test/test_sparse.py::TestSparseCPU::test_clone_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_clone_cpu_float64, test/test_sparse.py::TestSparseCPU::test_coalesce_cpu_float64, test/test_sparse.py::TestSparseCPU::test_coalesce_reference_cycle_cpu_float64, test/test_sparse.py::TestSparseCPU::test_coalesce_transpose_mm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_contig_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_contig_hybrid_cpu_float64, test/test_sparse.py::TestSparseCPU::test_ctor_large_sizes_cpu_float64, test/test_sparse.py::TestSparseCPU::test_ctor_size_checks_cpu_float64, test/test_sparse.py::TestSparseCPU::test_div_by_sparse_error_cpu, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_bool, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_int32, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_int64, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_False_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_int16, test/test_sparse.py::TestSparseCPU::test_empty_full_requires_grad_True_cpu_int8, test/test_sparse.py::TestSparseCPU::test_empty_like_cpu_float64, test/test_sparse.py::TestSparseCPU::test_factory_copy_cpu, test/test_sparse.py::TestSparseCPU::test_factory_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_factory_cpu_float16, test/test_sparse.py::TestSparseCPU::test_factory_cpu_float64, test/test_sparse.py::TestSparseCPU::test_factory_device_type_inference_cpu, test/test_sparse.py::TestSparseCPU::test_factory_nnz_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_factory_nnz_cpu_float64, test/test_sparse.py::TestSparseCPU::test_factory_size_check_cpu_float64, test/test_sparse.py::TestSparseCPU::test_factory_type_inference_cpu_float32, test/test_sparse.py::TestSparseCPU::test_factory_type_inference_cpu_float64, test/test_sparse.py::TestSparseCPU::test_full_broadcast_to_cpu_float64, test/test_sparse.py::TestSparseCPU::test_index_select_cpu_float64, test/test_sparse.py::TestSparseCPU::test_index_select_empty_and_non_contiguous_index_cpu_float64, test/test_sparse.py::TestSparseCPU::test_index_select_parallelization_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_is_nonzero_cpu, test/test_sparse.py::TestSparseCPU::test_is_sparse_cpu, test/test_sparse.py::TestSparseCPU::test_isnan_cpu, test/test_sparse.py::TestSparseCPU::test_log1p_cpu_int16, test/test_sparse.py::TestSparseCPU::test_log1p_cpu_int64, test/test_sparse.py::TestSparseCPU::test_log1p_cpu_int8, test/test_sparse.py::TestSparseCPU::test_log1p_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_mm_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_mm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_narrow_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_narrow_cpu_float64, test/test_sparse.py::TestSparseCPU::test_neg_negative_cpu_float64, test/test_sparse.py::TestSparseCPU::test_new_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_new_cpu_float64, test/test_sparse.py::TestSparseCPU::test_new_device_single_gpu_cpu, test/test_sparse.py::TestSparseCPU::test_norm_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_permute_masked_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_permute_sparse_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_permute_sparse_cpu_float64, test/test_sparse.py::TestSparseCPU::test_print_coalesced_cpu_float64, test/test_sparse.py::TestSparseCPU::test_print_uncoalesced_cpu_float64, test/test_sparse.py::TestSparseCPU::test_resize_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_saddmm_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_saddmm_cpu_float64, test/test_sparse.py::TestSparseCPU::test_select_cpu_float64, test/test_sparse.py::TestSparseCPU::test_select_no_type_promotion_cpu_int16, test/test_sparse.py::TestSparseCPU::test_select_no_type_promotion_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_softmax_cpu_float64, test/test_sparse.py::TestSparseCPU::test_softmax_zero_nnz_cpu_float32, test/test_sparse.py::TestSparseCPU::test_softmax_zero_nnz_cpu_float64, test/test_sparse.py::TestSparseCPU::test_spadd_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_add_coalesce_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_sparse_addmm_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_bool_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_broadcast_to_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_float16, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_int16, test/test_sparse.py::TestSparseCPU::test_sparse_dense_mul_cpu_int8, test/test_sparse.py::TestSparseCPU::test_sparse_mask_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_matmul_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_matmul_cpu_float64, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_float16, test/test_sparse.py::TestSparseCPU::test_sparse_sparse_mul_cpu_int32, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_bool, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_float32, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_int16, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_int32, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_int8, test/test_sparse.py::TestSparseCPU::test_sparse_spdiags_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_sum_cpu_bool, test/test_sparse.py::TestSparseCPU::test_sum_cpu_float32, test/test_sparse.py::TestSparseCPU::test_sum_cpu_int64, test/test_sparse.py::TestSparseCPU::test_sum_cpu_int8, test/test_sparse.py::TestSparseCPU::test_sum_cpu_uint8, test/test_sparse.py::TestSparseCPU::test_t_empty_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_to_dense_hybrid_masked_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_to_dense_hybrid_masked_cpu_float64, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_masked_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_masked_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_masked_cpu_float64, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_sparse_cpu_bfloat16, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_sparse_cpu_complex64, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_sparse_cpu_float32, test/test_sparse.py::TestSparseCPU::test_to_dense_with_gradcheck_sparse_cpu_float64, test/test_sparse.py::TestSparseCPU::test_to_sparse_cpu_float16, test/test_sparse.py::TestSparseCPU::test_transpose_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_unsqueeze_cpu_float64, test/test_sparse.py::TestSparseCPU::test_zeros_like_cpu_complex128, test/test_sparse.py::TestSparseCPU::test_zeros_like_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSC_masked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSC_nonmasked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSR_masked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseBSR_nonmasked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCOO_masked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCOO_masked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCOO_nonmasked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSC_masked_fast_cpu, test/test_sparse.py::TestSparseAnyCPU::test_as_sparse_gradcheck_SparseCSC_masked_slow_cpu, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseBSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCOO_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_binary_operation_mul_SparseCSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_check_sparse_tensor_invariants_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_check_sparse_tensor_invariants_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_check_sparse_tensor_invariants_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_autograd_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_autograd_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_mismatched_pinned_memory_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pin_memory_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pin_memory_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pinned_memory_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pinned_memory_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_constructor_pinned_memory_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_dataloader_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_dataloader_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_dataloader_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_masked_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_sparse_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_sparse_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSC_sparse_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_masked_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_masked_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_masked_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_masked_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_sparse_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseBSR_sparse_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_masked_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_masked_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCOO_sparse_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_masked_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_masked_fast_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_masked_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_masked_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_sparse_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_sparse_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSC_sparse_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_masked_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_masked_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_sparse_fast_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_sparse_slow_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_mm_SparseCSR_sparse_slow_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSC_int64_masked_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSC_int64_sparse_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseBSR_int64_sparse_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCOO_int64_masked_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCOO_int64_masked_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCOO_int64_sparse_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSC_int64_sparse_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_gradcheck_to_dense_SparseCSR_int64_masked_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSC_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseBSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCOO_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCOO_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSC_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSR_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_randn_like_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseBSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCOO_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_complex32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_like_fns_zeros_like_SparseCSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_method_pin_memory_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_method_pin_memory_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_method_pin_memory_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_method_pin_memory_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_method_pin_memory_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseBSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCOO_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSC_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_backward_sum_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSC_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseBSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCOO_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSC_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_reductions_sum_SparseCSR_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSC_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseBSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCOO_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_sparse_mask_SparseCSR_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseBSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCOO_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_dense_SparseCSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseBSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCOO_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSC_SparseCSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseBSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCOO_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseBSR_SparseCSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseBSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCOO_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCOO_SparseCSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseBSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCOO_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSC_SparseCSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseBSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCOO_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSC_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_SparseCSR_SparseCSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSC_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseBSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCOO_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_bool, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSC_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_complex64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_int64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int32_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_bfloat16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_complex128, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_float16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_float32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_int16, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_int32, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_int8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_Strided_SparseCSR_int64_cpu_uint8, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_identity_SparseBSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_identity_SparseBSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_identity_SparseCOO_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_identity_SparseCSC_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_identity_SparseCSR_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_to_sparse_identity_Strided_cpu_float64, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_ccol_indices_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_ccol_indices_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_ccol_indices_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_coalesce_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_coalesce_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_coalesce_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_coalesce_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_col_indices_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_col_indices_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_col_indices_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_crow_indices_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_crow_indices_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_crow_indices_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_crow_indices_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_crow_indices_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_crow_indices_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_indices_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_is_coalesced_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_row_indices_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_row_indices_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_row_indices_SparseCSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_row_indices_Strided_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_values_SparseBSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_values_SparseBSR_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_values_SparseCOO_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_values_SparseCSC_cpu, test/test_sparse.py::TestSparseAnyCPU::test_unsupported_backend_error_message_values_SparseCSR_cpu 2025-08-14T22:19:45.0035577Z 2025-08-14T22:19:46.0925395Z 2025-08-14T22:19:46.0927261Z dynamo/test_after_aot 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_after_aot_1.1_2b3b63441d1befda_.log 2025-08-14T22:19:46.0928110Z 2025-08-14T22:19:48.8184249Z Running inductor/test_binary_folding 1/1 ... [2025-08-14 22:19:48.818003] 2025-08-14T22:19:48.8184777Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:48.8193851Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_binary_folding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:48.818594] 2025-08-14T22:19:50.0168690Z Running dynamo/test_cudagraphs 1/1 ... [2025-08-14 22:19:50.016531] 2025-08-14T22:19:50.0169197Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:50.0175530Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:50.017119] 2025-08-14T22:19:51.1523230Z Running dynamo/test_ctx_manager 1/1 ... [2025-08-14 22:19:51.151645] 2025-08-14T22:19:51.1523725Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:51.1529803Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_ctx_manager.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:51.151645] 2025-08-14T22:19:54.5490037Z 2025-08-14T22:19:54.5491631Z dynamo/test_cudagraphs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_1.1_3c700a861ba1c622_.log 2025-08-14T22:19:54.5492342Z 2025-08-14T22:19:59.0172387Z 2025-08-14T22:19:59.0173653Z inductor/test_binary_folding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_binary_folding_1.1_006f467909b2cc98_.log 2025-08-14T22:19:59.0174400Z 2025-08-14T22:19:59.7454402Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-08-14 22:19:59.745101] 2025-08-14T22:19:59.7454965Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:59.7462703Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_arrayref.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:59.745696] 2025-08-14T22:20:01.0125551Z 2025-08-14T22:20:01.0126755Z dynamo/test_ctx_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_ctx_manager_1.1_33db2e4827f5e903_.log 2025-08-14T22:20:04.1820980Z 2025-08-14T22:20:04.1820996Z 2025-08-14T22:20:04.1822279Z 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_7a78cb867448dc64_.log 2025-08-14T22:20:04.1823073Z 2025-08-14T22:20:04.1918798Z Running inductor/test_triton_kernels 1/1 ... [2025-08-14 22:20:04.191277] 2025-08-14T22:20:04.1919328Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:04.1925455Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_kernels.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:04.191277] 2025-08-14T22:20:06.0762746Z Running inductor/test_aot_inductor_custom_ops 1/1 ... [2025-08-14 22:20:06.072175] 2025-08-14T22:20:06.0763290Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:06.0769849Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_custom_ops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:06.072175] 2025-08-14T22:20:09.4174867Z Running inductor/test_unbacked_symints 1/1 ... [2025-08-14 22:20:09.417196] 2025-08-14T22:20:09.4175400Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:09.4181481Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:09.417803] 2025-08-14T22:20:14.4639941Z 2025-08-14T22:20:14.4640916Z inductor/test_triton_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_kernels_1.1_b2e35ed82405fce0_.log 2025-08-14T22:20:14.4641642Z 2025-08-14T22:20:16.5980078Z 2025-08-14T22:20:16.5981102Z inductor/test_aot_inductor_custom_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_custom_ops_1.1_c0f1327de1aa721d_.log 2025-08-14T22:20:16.5981949Z 2025-08-14T22:20:19.3918847Z 2025-08-14T22:20:19.3919986Z 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_437b05bd2fdb9954_.log 2025-08-14T22:20:19.3920756Z 2025-08-14T22:20:19.4748586Z Running inductor/test_alignment 1/1 ... [2025-08-14 22:20:19.474680] 2025-08-14T22:20:19.4749055Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:19.4755545Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_alignment.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:19.475291] 2025-08-14T22:20:21.6775913Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-08-14 22:20:21.662066] 2025-08-14T22:20:21.6776432Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:21.6782659Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:21.677783] 2025-08-14T22:20:24.4366336Z Running dynamo/test_deque_reconstruct 1/1 ... [2025-08-14 22:20:24.436378] 2025-08-14T22:20:24.4366806Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:24.4372803Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_deque_reconstruct.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:24.436974] 2025-08-14T22:20:26.0355958Z 2025-08-14T22:20:26.0356969Z 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_c301e72488a6335b_.log 2025-08-14T22:20:26.0357685Z 2025-08-14T22:20:28.7066474Z 2025-08-14T22:20:28.7067395Z dynamo/test_deque_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_deque_reconstruct_1.1_6b3c5d593866467b_.log 2025-08-14T22:20:28.7068087Z 2025-08-14T22:20:29.8361779Z 2025-08-14T22:20:29.8362797Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_6a05eab5dcf09447_.log 2025-08-14T22:20:29.8363514Z 2025-08-14T22:20:31.1841186Z Running inductor/test_cooperative_reductions 1/1 ... [2025-08-14 22:20:31.174269] 2025-08-14T22:20:31.1841708Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:31.1847899Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:31.174269] 2025-08-14T22:20:33.7268153Z Running inductor/test_ck_backend 1/1 ... [2025-08-14 22:20:33.726639] 2025-08-14T22:20:33.7268626Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:33.7274628Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ck_backend.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:33.727292] 2025-08-14T22:20:35.0176950Z Running inductor/test_op_completeness 1/1 ... [2025-08-14 22:20:35.017498] 2025-08-14T22:20:35.0177455Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:35.0183783Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_completeness.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:35.018082] 2025-08-14T22:20:39.7929793Z 2025-08-14T22:20:39.7930776Z inductor/test_op_completeness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_completeness_1.1_29da4cc616cbc10c_.log 2025-08-14T22:20:39.7931505Z 2025-08-14T22:20:41.0828896Z 2025-08-14T22:20:41.0829936Z 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_ffcb7b08c6a28092_.log 2025-08-14T22:20:41.0830714Z 2025-08-14T22:20:43.6853690Z 2025-08-14T22:20:43.6854632Z inductor/test_ck_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ck_backend_1.1_2fcc88d62f65724b_.log 2025-08-14T22:20:43.6855330Z 2025-08-14T22:20:44.8556687Z Running inductor/test_fx_fusion 1/1 ... [2025-08-14 22:20:44.855137] 2025-08-14T22:20:44.8557188Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:44.8563038Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fx_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-08-14 22:20:44.855137] 2025-08-14T22:20:46.1284505Z Running export/test_export_strict 1/1 ... [2025-08-14 22:20:46.118935] 2025-08-14T22:20:46.1284973Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:46.1291285Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_strict.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:46.118935] 2025-08-14T22:20:48.6541958Z Running export/test_unflatten_training_ir 1/1 ... [2025-08-14 22:20:48.653763] 2025-08-14T22:20:48.6542534Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:48.6548461Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_unflatten_training_ir.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:48.654337] 2025-08-14T22:20:50.5059791Z 2025-08-14T22:20:50.5060972Z inductor/test_fx_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fx_fusion_1.1_937a74fa7086f049_.log 2025-08-14T22:20:52.9791976Z 2025-08-14T22:20:52.9791992Z 2025-08-14T22:20:55.5269133Z export/test_unflatten_training_ir 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_unflatten_training_ir_1.1_cd65580f460e4f0f_.log 2025-08-14T22:20:55.5269979Z 2025-08-14T22:20:55.5270221Z Running dynamo/test_skip_guard_eval_unsafe 1/1 ... [2025-08-14 22:20:55.525305] 2025-08-14T22:20:55.5270962Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:55.5275513Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_guard_eval_unsafe.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:55.526923] 2025-08-14T22:20:55.9840233Z 2025-08-14T22:20:55.9841343Z export/test_export_strict 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_strict_1.1_6d8ddd9e16226fac_.log 2025-08-14T22:20:55.9842052Z 2025-08-14T22:20:58.1691968Z Running dynamo/test_interop 1/1 ... [2025-08-14 22:20:58.168955] 2025-08-14T22:20:58.1692478Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:58.1698575Z 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-08-14 22:20:58.169539] 2025-08-14T22:21:00.0882861Z 2025-08-14T22:21:00.0883879Z dynamo/test_skip_guard_eval_unsafe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_guard_eval_unsafe_1.1_2780b623518be9a5_.log 2025-08-14T22:21:00.0884613Z 2025-08-14T22:21:00.9210398Z Running dynamo/test_frame_init 1/1 ... [2025-08-14 22:21:00.914998] 2025-08-14T22:21:00.9210858Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:00.9216825Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_frame_init.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:00.914998] 2025-08-14T22:21:02.6707143Z 2025-08-14T22:21:02.6708162Z dynamo/test_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_interop_1.1_94467d690e1fba4a_.log 2025-08-14T22:21:02.6708808Z 2025-08-14T22:21:05.2930022Z Running export/test_serdes 1/1 ... [2025-08-14 22:21:05.290227] 2025-08-14T22:21:05.2930507Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:05.2936357Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_serdes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:05.290227] 2025-08-14T22:21:05.3243214Z 2025-08-14T22:21:05.3244150Z dynamo/test_frame_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_frame_init_1.1_57e147f17f0ab49a_.log 2025-08-14T22:21:05.3244955Z 2025-08-14T22:21:07.8356059Z Running inductor/test_move_constructors_to_cuda 1/1 ... [2025-08-14 22:21:07.834979] 2025-08-14T22:21:07.8356623Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:07.8363052Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_move_constructors_to_cuda.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:07.836134] 2025-08-14T22:21:10.4649603Z Running inductor/test_aot_inductor_package 1/1 ... [2025-08-14 22:21:10.464633] 2025-08-14T22:21:10.4650122Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:10.4656039Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_package.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:10.464633] 2025-08-14T22:21:15.4077132Z 2025-08-14T22:21:15.4078689Z export/test_serdes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_serdes_1.1_f85942e2812358f9_.log 2025-08-14T22:21:15.4079457Z 2025-08-14T22:21:17.5973604Z 2025-08-14T22:21:17.5974756Z inductor/test_move_constructors_to_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_move_constructors_to_cuda_1.1_a338ec348c1d6597_.log 2025-08-14T22:21:17.5975609Z 2025-08-14T22:21:20.2231761Z 2025-08-14T22:21:20.2232960Z inductor/test_aot_inductor_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_package_1.1_0ab224b8f62e4892_.log 2025-08-14T22:21:20.2233783Z 2025-08-14T22:21:20.4479175Z Running inductor/test_gpu_cpp_wrapper 1/1 ... [2025-08-14 22:21:20.438576] 2025-08-14T22:21:20.4479710Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:20.4485837Z 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-08-14 22:21:20.438576] 2025-08-14T22:21:22.8472217Z Running inductor/test_kernel_optimization 1/1 ... [2025-08-14 22:21:22.844860] 2025-08-14T22:21:22.8472777Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:22.8478858Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_kernel_optimization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:22.844860] 2025-08-14T22:21:25.4016058Z Running inductor/test_cudacodecache 1/1 ... [2025-08-14 22:21:25.394589] 2025-08-14T22:21:25.4016576Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:25.4022353Z 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-08-14 22:21:25.394589] 2025-08-14T22:21:30.9216915Z 2025-08-14T22:21:30.9222764Z 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_6335a195b7f4e231_.log 2025-08-14T22:21:30.9223679Z 2025-08-14T22:21:32.8014515Z 2025-08-14T22:21:32.8015594Z inductor/test_kernel_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_kernel_optimization_1.1_84abe1c73caa5e23_.log 2025-08-14T22:21:32.8016390Z 2025-08-14T22:21:35.4140381Z 2025-08-14T22:21:35.4141349Z inductor/test_cudacodecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudacodecache_1.1_c0b8441b0c121249_.log 2025-08-14T22:21:35.4142353Z 2025-08-14T22:21:35.9361999Z Running dynamo/test_pre_dispatch 1/1 ... [2025-08-14 22:21:35.935851] 2025-08-14T22:21:35.9362513Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:35.9368573Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pre_dispatch.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:35.935851] 2025-08-14T22:21:38.0456320Z Running dynamo/test_metrics_context 1/1 ... [2025-08-14 22:21:38.043390] 2025-08-14T22:21:38.0456870Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:38.0463012Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_metrics_context.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:38.043390] 2025-08-14T22:21:40.4316273Z Running dynamo/test_graph_region_tracker 1/1 ... [2025-08-14 22:21:40.428138] 2025-08-14T22:21:40.4317018Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:40.4322828Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_graph_region_tracker.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:40.428138] 2025-08-14T22:21:40.4943858Z 2025-08-14T22:21:40.4944740Z dynamo/test_pre_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pre_dispatch_1.1_77367c277c534e1b_.log 2025-08-14T22:21:40.4945411Z 2025-08-14T22:21:42.2805866Z 2025-08-14T22:21:42.2806897Z dynamo/test_metrics_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_metrics_context_1.1_a7ece2fdcbd2d85d_.log 2025-08-14T22:21:42.2807626Z 2025-08-14T22:21:44.9012102Z 2025-08-14T22:21:44.9013116Z dynamo/test_graph_region_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_graph_region_tracker_1.1_479c5a37469c687a_.log 2025-08-14T22:21:44.9013885Z 2025-08-14T22:21:45.6553273Z Running inductor/test_best_config 1/1 ... [2025-08-14 22:21:45.650693] 2025-08-14T22:21:45.6553810Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:45.6571285Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_best_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:45.656320] 2025-08-14T22:21:47.2425103Z Running inductor/test_quantization 1/1 ... [2025-08-14 22:21:47.241850] 2025-08-14T22:21:47.2425741Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:47.2432217Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_quantization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:47.243066] 2025-08-14T22:21:50.0873344Z Running inductor/test_xpu_basic 1/1 ... [2025-08-14 22:21:50.078328] 2025-08-14T22:21:50.0873843Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:50.0880734Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_xpu_basic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:50.078328] 2025-08-14T22:21:55.5610864Z 2025-08-14T22:21:55.5611758Z inductor/test_best_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_best_config_1.1_0a9a64660bc50a26_.log 2025-08-14T22:21:55.5612600Z 2025-08-14T22:21:57.9237972Z 2025-08-14T22:21:57.9239002Z inductor/test_quantization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_quantization_1.1_78250d0b504ea048_.log 2025-08-14T22:21:57.9239745Z 2025-08-14T22:22:00.3615619Z 2025-08-14T22:22:00.3616678Z inductor/test_xpu_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_xpu_basic_1.1_17f9a5034b67a7ef_.log 2025-08-14T22:22:00.3617413Z 2025-08-14T22:22:00.5481420Z Running dynamo/test_list 1/1 ... [2025-08-14 22:22:00.545580] 2025-08-14T22:22:00.5481899Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:00.5488090Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_list.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:00.545580] 2025-08-14T22:22:03.0033036Z Running dynamo/test_utils 1/1 ... [2025-08-14 22:22:03.002457] 2025-08-14T22:22:03.0033520Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:03.0039637Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:03.002457] 2025-08-14T22:22:05.0012176Z 2025-08-14T22:22:05.0013190Z dynamo/test_list 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_list_1.1_63dfcc375bff28e3_.log 2025-08-14T22:22:05.0013804Z 2025-08-14T22:22:05.4833396Z Running inductor/test_decompose_mem_bound_mm 1/1 ... [2025-08-14 22:22:05.475142] 2025-08-14T22:22:05.4833923Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:05.4839881Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_decompose_mem_bound_mm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:05.475142] 2025-08-14T22:22:07.2675052Z 2025-08-14T22:22:07.2675921Z dynamo/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_utils_1.1_cbce6dc081df221a_.log 2025-08-14T22:22:07.2676534Z 2025-08-14T22:22:10.1120567Z Running dynamo/test_fx_graph_runnable 1/1 ... [2025-08-14 22:22:10.111758] 2025-08-14T22:22:10.1121087Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:10.1127280Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_graph_runnable.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:10.111758] 2025-08-14T22:22:12.2571355Z Running dynamo/test_config 1/1 ... [2025-08-14 22:22:12.256764] 2025-08-14T22:22:12.2571813Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:12.2577911Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:12.257367] 2025-08-14T22:22:15.7228457Z 2025-08-14T22:22:15.7230205Z inductor/test_decompose_mem_bound_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_decompose_mem_bound_mm_1.1_4d68168fda956a2b_.log 2025-08-14T22:22:15.7231019Z 2025-08-14T22:22:16.8578951Z 2025-08-14T22:22:16.8580001Z dynamo/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_config_1.1_0888b17a3cde38da_.log 2025-08-14T22:22:16.8580631Z 2025-08-14T22:22:20.1031344Z 2025-08-14T22:22:20.1032515Z dynamo/test_fx_graph_runnable 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_graph_runnable_1.1_cf04dcb9c50d5ed9_.log 2025-08-14T22:22:20.1033353Z 2025-08-14T22:22:20.9306341Z Running dynamo/test_reconstruct 1/1 ... [2025-08-14 22:22:20.924133] 2025-08-14T22:22:20.9306807Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:20.9312858Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reconstruct.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:20.924133] 2025-08-14T22:22:22.0688658Z Running inductor/test_graph_transform_observer 1/1 ... [2025-08-14 22:22:22.068689] 2025-08-14T22:22:22.0689214Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:22.0707815Z 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-08-14 22:22:22.070330] 2025-08-14T22:22:25.2703124Z Running dynamo/test_sources 1/1 ... [2025-08-14 22:22:25.269994] 2025-08-14T22:22:25.2703618Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:25.2709832Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sources.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:25.270595] 2025-08-14T22:22:29.5792364Z 2025-08-14T22:22:29.5793290Z dynamo/test_sources 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sources_1.1_44eda78daca4bac8_.log 2025-08-14T22:22:29.5793929Z 2025-08-14T22:22:30.7510013Z 2025-08-14T22:22:30.7510947Z dynamo/test_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reconstruct_1.1_14fb9e670df3607a_.log 2025-08-14T22:22:30.7511622Z 2025-08-14T22:22:32.8866692Z 2025-08-14T22:22:32.8868059Z 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_710568569eab5784_.log 2025-08-14T22:22:32.8868933Z 2025-08-14T22:22:34.7581708Z Running dynamo/test_flat_apply 1/1 ... [2025-08-14 22:22:34.756733] 2025-08-14T22:22:34.7582192Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:34.7588144Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_flat_apply.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:34.756733] 2025-08-14T22:22:35.7542970Z Running inductor/test_scatter_optimization 1/1 ... [2025-08-14 22:22:35.744487] 2025-08-14T22:22:35.7543537Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:35.7550168Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_scatter_optimization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:35.754824] 2025-08-14T22:22:38.0558228Z Running dynamo/test_decorators 1/1 ... [2025-08-14 22:22:38.055662] 2025-08-14T22:22:38.0558838Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:38.0565243Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_decorators.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:38.056235] 2025-08-14T22:22:39.2876783Z 2025-08-14T22:22:39.2877902Z dynamo/test_flat_apply 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_flat_apply_1.1_f9ef83158199fd57_.log 2025-08-14T22:22:39.2878556Z 2025-08-14T22:22:42.6674199Z 2025-08-14T22:22:42.6675170Z dynamo/test_decorators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_decorators_1.1_3ac91ea956c1002a_.log 2025-08-14T22:22:42.6675839Z 2025-08-14T22:22:44.3365759Z Running export/test_nativert 1/1 ... [2025-08-14 22:22:44.335445] 2025-08-14T22:22:44.3366277Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:44.3372421Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_nativert.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:44.335445] 2025-08-14T22:22:45.6160101Z 2025-08-14T22:22:45.6161162Z inductor/test_scatter_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_scatter_optimization_1.1_047e5f59d79492fd_.log 2025-08-14T22:22:45.6161934Z 2025-08-14T22:22:47.6299583Z Running dynamo/test_verify_correctness 1/1 ... [2025-08-14 22:22:47.623885] 2025-08-14T22:22:47.6300173Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:47.6306243Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_verify_correctness.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:47.623885] 2025-08-14T22:22:50.8850251Z Running dynamo/test_sets 1/1 ... [2025-08-14 22:22:50.884779] 2025-08-14T22:22:50.8850748Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:50.8857951Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sets.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:50.885376] 2025-08-14T22:22:52.2213604Z 2025-08-14T22:22:52.2214730Z dynamo/test_verify_correctness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_verify_correctness_1.1_3d6ae14f0a2f6d8d_.log 2025-08-14T22:22:52.2215487Z 2025-08-14T22:22:54.1076455Z 2025-08-14T22:22:54.1077397Z export/test_nativert 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_nativert_1.1_2a3b17b25ed114cd_.log 2025-08-14T22:22:54.1078040Z 2025-08-14T22:22:55.9155669Z 2025-08-14T22:22:55.9156536Z dynamo/test_sets 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sets_1.1_294ad635f82c65e9_.log 2025-08-14T22:22:55.9157132Z 2025-08-14T22:22:57.3170821Z Running dynamo/test_deviceguard 1/1 ... [2025-08-14 22:22:57.309320] 2025-08-14T22:22:57.3171342Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:57.3177471Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_deviceguard.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:57.309320] 2025-08-14T22:22:59.2542426Z Running dynamo/test_python_dispatcher 1/1 ... [2025-08-14 22:22:59.253848] 2025-08-14T22:22:59.2543133Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:59.2551040Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_dispatcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:59.254878] 2025-08-14T22:23:01.0933640Z Running export/test_experimental 1/1 ... [2025-08-14 22:23:01.082905] 2025-08-14T22:23:01.0934329Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:01.0940103Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_experimental.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:01.082905] 2025-08-14T22:23:02.1616241Z 2025-08-14T22:23:02.1617485Z dynamo/test_deviceguard 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_deviceguard_1.1_d39368210634ce8c_.log 2025-08-14T22:23:02.1618193Z 2025-08-14T22:23:04.3212085Z 2025-08-14T22:23:04.3213156Z dynamo/test_python_dispatcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_dispatcher_1.1_9b998c85dad637a0_.log 2025-08-14T22:23:04.3213934Z 2025-08-14T22:23:05.8912152Z 2025-08-14T22:23:05.8913299Z export/test_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_experimental_1.1_2ba61237e9863bcb_.log 2025-08-14T22:23:05.8914001Z 2025-08-14T22:23:07.1224620Z Running dynamo/test_error_messages 1/1 ... [2025-08-14 22:23:07.121164] 2025-08-14T22:23:07.1225306Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:07.1231545Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_error_messages.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:07.121164] 2025-08-14T22:23:09.3402634Z Running dynamo/test_exceptions 1/1 ... [2025-08-14 22:23:09.335300] 2025-08-14T22:23:09.3403103Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:09.3409245Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exceptions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:09.335300] 2025-08-14T22:23:10.9001361Z Running dynamo/test_precompile_context 1/1 ... [2025-08-14 22:23:10.895032] 2025-08-14T22:23:10.9001864Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:10.9007780Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_precompile_context.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:10.895032] 2025-08-14T22:23:11.7566558Z 2025-08-14T22:23:11.7567512Z dynamo/test_error_messages 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_error_messages_1.1_4a4a3f2eb3d05af7_.log 2025-08-14T22:23:11.7568228Z 2025-08-14T22:23:13.8252096Z 2025-08-14T22:23:13.8253703Z dynamo/test_exceptions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exceptions_1.1_bc44ae1063fddebb_.log 2025-08-14T22:23:13.8254414Z 2025-08-14T22:23:16.9087709Z Running dynamo/test_structured_trace 1/1 ... [2025-08-14 22:23:16.908533] 2025-08-14T22:23:16.9088231Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:16.9094418Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_structured_trace.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:16.908533] 2025-08-14T22:23:18.9401158Z Running dynamo/test_minifier 1/1 ... [2025-08-14 22:23:18.939480] 2025-08-14T22:23:18.9401672Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:18.9407407Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_minifier.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:18.939480] 2025-08-14T22:23:20.8107005Z 2025-08-14T22:23:23.4560472Z dynamo/test_precompile_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_precompile_context_1.1_e6c7f38c3e38b546_.log 2025-08-14T22:23:23.4561266Z 2025-08-14T22:23:23.4561271Z 2025-08-14T22:23:23.4561781Z dynamo/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_minifier_1.1_fd60b56ea489f0cc_.log 2025-08-14T22:23:23.4562412Z 2025-08-14T22:23:25.8246807Z Running dynamo/test_hooks 1/1 ... [2025-08-14 22:23:25.823658] 2025-08-14T22:23:25.8247288Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:25.8253336Z 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-08-14 22:23:25.823658] 2025-08-14T22:23:26.8743721Z 2025-08-14T22:23:26.8744719Z dynamo/test_structured_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_structured_trace_1.1_2883e8dfd02c7504_.log 2025-08-14T22:23:26.8745605Z 2025-08-14T22:23:28.6052153Z Running dynamo/test_subclasses 1/1 ... [2025-08-14 22:23:28.604869] 2025-08-14T22:23:28.6052659Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:28.6058322Z 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-08-14 22:23:28.604869] 2025-08-14T22:23:30.5229239Z 2025-08-14T22:23:30.5230144Z dynamo/test_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_hooks_1.1_a150fb46d4c1d3e0_.log 2025-08-14T22:23:30.5230758Z 2025-08-14T22:23:31.8940369Z Running export/test_sparse 2/2 ... [2025-08-14 22:23:31.893861] 2025-08-14T22:23:31.8940856Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:31.8947057Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:31.894487] 2025-08-14T22:23:35.5470538Z Running test_appending_byte_serializer 1/1 ... [2025-08-14 22:23:35.546748] 2025-08-14T22:23:35.5471084Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:35.5477185Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_appending_byte_serializer.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:35.547527] 2025-08-14T22:23:38.5465104Z 2025-08-14T22:23:38.5466171Z dynamo/test_subclasses 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_subclasses_1.1_20e1b605d2e96086_.log 2025-08-14T22:23:38.5466858Z 2025-08-14T22:23:39.9650955Z 2025-08-14T22:23:39.9652055Z test_appending_byte_serializer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_appending_byte_serializer_1.1_9f81b0d2f771da4f_.log 2025-08-14T22:23:39.9652776Z 2025-08-14T22:23:43.6128168Z Running test_proxy_tensor 2/2 ... [2025-08-14 22:23:43.599217] 2025-08-14T22:23:43.6128782Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:43.6134571Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_proxy_tensor.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:43.599217] 2025-08-14T22:23:45.0507153Z Running test_mkldnn_verbose 1/1 ... [2025-08-14 22:23:45.049537] 2025-08-14T22:23:45.0507875Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:45.0513564Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn_verbose.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:45.049537] 2025-08-14T22:23:54.1540367Z 2025-08-14T22:23:54.1541343Z test_mkldnn_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_verbose_1.1_cc4062e5e8495d7c_.log 2025-08-14T22:23:54.1543155Z Running 2 items in this shard: test/test_mkldnn_verbose.py::TestMKLDNNVerbose::test_verbose_off, test/test_mkldnn_verbose.py::TestMKLDNNVerbose::test_verbose_on 2025-08-14T22:23:54.1543963Z 2025-08-14T22:23:59.1894583Z Running test_utils_config_module 1/1 ... [2025-08-14 22:23:59.188615] 2025-08-14T22:23:59.1895318Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:59.1902397Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils_config_module.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:59.189716] 2025-08-14T22:24:04.6314836Z 2025-08-14T22:24:04.6315735Z test_utils_config_module 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_config_module_1.1_61d92d1ee693206e_.log 2025-08-14T22:24:04.6323284Z Running 22 items in this shard: test/test_utils_config_module.py::TestConfigModule::test_alias, test/test_utils_config_module.py::TestConfigModule::test_bad_jk_type, test/test_utils_config_module.py::TestConfigModule::test_base_value_loading, test/test_utils_config_module.py::TestConfigModule::test_codegen_config, test/test_utils_config_module.py::TestConfigModule::test_codegen_config_function, test/test_utils_config_module.py::TestConfigModule::test_dict_copy_semantics, test/test_utils_config_module.py::TestConfigModule::test_env_name_semantics, test/test_utils_config_module.py::TestConfigModule::test_env_name_string_semantics, test/test_utils_config_module.py::TestConfigModule::test_get_hash, test/test_utils_config_module.py::TestConfigModule::test_invalid_config_float, test/test_utils_config_module.py::TestConfigModule::test_invalid_config_int, test/test_utils_config_module.py::TestConfigModule::test_make_closur_patcher, test/test_utils_config_module.py::TestConfigModule::test_multi_env, test/test_utils_config_module.py::TestConfigModule::test_none_override_semantics, test/test_utils_config_module.py::TestConfigModule::test_overrides, test/test_utils_config_module.py::TestConfigModule::test_patch, test/test_utils_config_module.py::TestConfigModule::test_reference_is_default, test/test_utils_config_module.py::TestConfigModule::test_reference_semantics, test/test_utils_config_module.py::TestConfigModule::test_save_config, test/test_utils_config_module.py::TestConfigModule::test_save_config_portable, test/test_utils_config_module.py::TestConfigModule::test_type_loading, test/test_utils_config_module.py::TestConfigModule::test_unittest_patch 2025-08-14T22:24:04.6329543Z 2025-08-14T22:24:10.0095555Z Running test_functionalization 1/1 ... [2025-08-14 22:24:10.006663] 2025-08-14T22:24:10.0096311Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:24:10.0103161Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:24:10.009729] 2025-08-14T22:24:20.7899000Z 2025-08-14T22:24:20.7900098Z test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_1.1_1d1d69558a552df9_.log 2025-08-14T22:24:20.7941961Z Running 112 items in this shard: test/test_functionalization.py::TestFunctionalization::test_advanced_indexing, test/test_functionalization.py::TestFunctionalization::test_advanced_indexing_correct_strides, test/test_functionalization.py::TestFunctionalization::test_aliases_maintained_after_pass_when_reapplying_views, test/test_functionalization.py::TestFunctionalization::test_as_strided, test/test_functionalization.py::TestFunctionalization::test_batch_norm, test/test_functionalization.py::TestFunctionalization::test_cat, test/test_functionalization.py::TestFunctionalization::test_channels_last_contiguous, test/test_functionalization.py::TestFunctionalization::test_copy_, test/test_functionalization.py::TestFunctionalization::test_copy_stride_mismatch, test/test_functionalization.py::TestFunctionalization::test_diagonal, test/test_functionalization.py::TestFunctionalization::test_diagonal_mutated_input, test/test_functionalization.py::TestFunctionalization::test_everything, test/test_functionalization.py::TestFunctionalization::test_expand_symint, test/test_functionalization.py::TestFunctionalization::test_fill_, test/test_functionalization.py::TestFunctionalization::test_freeze, test/test_functionalization.py::TestFunctionalization::test_index_mutation_on_non_input, test/test_functionalization.py::TestFunctionalization::test_inplace_on_non_view, test/test_functionalization.py::TestFunctionalization::test_instance_norm, test/test_functionalization.py::TestFunctionalization::test_metadata_change, test/test_functionalization.py::TestFunctionalization::test_metadata_change_out_op, test/test_functionalization.py::TestFunctionalization::test_mixed_wrappers_invalid, test/test_functionalization.py::TestFunctionalization::test_mixed_wrappers_valid, test/test_functionalization.py::TestFunctionalization::test_multi_out, test/test_functionalization.py::TestFunctionalization::test_multiple_views_of_same_base, test/test_functionalization.py::TestFunctionalization::test_mutable_op_not_inplace_or_other, test/test_functionalization.py::TestFunctionalization::test_mutation_overlapping_mem, test/test_functionalization.py::TestFunctionalization::test_nested_functions_propagate_updates, test/test_functionalization.py::TestFunctionalization::test_only_one_view, test/test_functionalization.py::TestFunctionalization::test_optional_tensor_list, test/test_functionalization.py::TestFunctionalization::test_python_functionalization, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_conj, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_is_conj, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_is_neg, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_lift_fresh, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_lift_fresh_storage, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_neg, test/test_functionalization.py::TestFunctionalization::test_python_functionalization_zero_tensor, test/test_functionalization.py::TestFunctionalization::test_reapply_views_simple, test/test_functionalization.py::TestFunctionalization::test_resize_larger_invalid, test/test_functionalization.py::TestFunctionalization::test_resize_larger_valid, test/test_functionalization.py::TestFunctionalization::test_resize_same_size_diff_rank, test/test_functionalization.py::TestFunctionalization::test_resize_smaller, test/test_functionalization.py::TestFunctionalization::test_save_for_backwards_segfault, test/test_functionalization.py::TestFunctionalization::test_scalars, test/test_functionalization.py::TestFunctionalization::test_set_, test/test_functionalization.py::TestFunctionalization::test_simple, test/test_functionalization.py::TestFunctionalization::test_simple_out, test/test_functionalization.py::TestFunctionalization::test_slice, test/test_functionalization.py::TestFunctionalization::test_split, test/test_functionalization.py::TestFunctionalization::test_split_with_sizes, test/test_functionalization.py::TestFunctionalization::test_tensor_ctr, test/test_functionalization.py::TestFunctionalization::test_tensor_list_composite, test/test_functionalization.py::TestFunctionalization::test_tensor_list_mixed_functional_nonfunctional, test/test_functionalization.py::TestFunctionalization::test_unbind, test/test_functionalization.py::TestFunctionalization::test_view_clone_view_inplace, test/test_functionalization.py::TestFunctionalization::test_view_inplace, test/test_functionalization.py::TestCrossRefFunctionalization::test_advanced_indexing, test/test_functionalization.py::TestCrossRefFunctionalization::test_advanced_indexing_correct_strides, test/test_functionalization.py::TestCrossRefFunctionalization::test_aliases_maintained_after_pass_when_reapplying_views, test/test_functionalization.py::TestCrossRefFunctionalization::test_as_strided, test/test_functionalization.py::TestCrossRefFunctionalization::test_batch_norm, test/test_functionalization.py::TestCrossRefFunctionalization::test_cat, test/test_functionalization.py::TestCrossRefFunctionalization::test_channels_last_contiguous, test/test_functionalization.py::TestCrossRefFunctionalization::test_copy_, test/test_functionalization.py::TestCrossRefFunctionalization::test_copy_stride_mismatch, test/test_functionalization.py::TestCrossRefFunctionalization::test_diagonal, test/test_functionalization.py::TestCrossRefFunctionalization::test_diagonal_mutated_input, test/test_functionalization.py::TestCrossRefFunctionalization::test_everything, test/test_functionalization.py::TestCrossRefFunctionalization::test_expand_symint, test/test_functionalization.py::TestCrossRefFunctionalization::test_fill_, test/test_functionalization.py::TestCrossRefFunctionalization::test_freeze, test/test_functionalization.py::TestCrossRefFunctionalization::test_index_mutation_on_non_input, test/test_functionalization.py::TestCrossRefFunctionalization::test_inplace_on_non_view, test/test_functionalization.py::TestCrossRefFunctionalization::test_instance_norm, test/test_functionalization.py::TestCrossRefFunctionalization::test_metadata_change, test/test_functionalization.py::TestCrossRefFunctionalization::test_metadata_change_out_op, test/test_functionalization.py::TestCrossRefFunctionalization::test_mixed_wrappers_invalid, test/test_functionalization.py::TestCrossRefFunctionalization::test_mixed_wrappers_valid, test/test_functionalization.py::TestCrossRefFunctionalization::test_multi_out, test/test_functionalization.py::TestCrossRefFunctionalization::test_multiple_views_of_same_base, test/test_functionalization.py::TestCrossRefFunctionalization::test_mutable_op_not_inplace_or_other, test/test_functionalization.py::TestCrossRefFunctionalization::test_mutation_overlapping_mem, test/test_functionalization.py::TestCrossRefFunctionalization::test_nested_functions_propagate_updates, test/test_functionalization.py::TestCrossRefFunctionalization::test_only_one_view, test/test_functionalization.py::TestCrossRefFunctionalization::test_optional_tensor_list, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_conj, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_is_conj, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_is_neg, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_lift_fresh, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_lift_fresh_storage, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_neg, test/test_functionalization.py::TestCrossRefFunctionalization::test_python_functionalization_zero_tensor, test/test_functionalization.py::TestCrossRefFunctionalization::test_reapply_views_simple, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_larger_invalid, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_larger_valid, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_same_size_diff_rank, test/test_functionalization.py::TestCrossRefFunctionalization::test_resize_smaller, test/test_functionalization.py::TestCrossRefFunctionalization::test_save_for_backwards_segfault, test/test_functionalization.py::TestCrossRefFunctionalization::test_scalars, test/test_functionalization.py::TestCrossRefFunctionalization::test_set_, test/test_functionalization.py::TestCrossRefFunctionalization::test_simple, test/test_functionalization.py::TestCrossRefFunctionalization::test_simple_out, test/test_functionalization.py::TestCrossRefFunctionalization::test_slice, test/test_functionalization.py::TestCrossRefFunctionalization::test_split, test/test_functionalization.py::TestCrossRefFunctionalization::test_split_with_sizes, test/test_functionalization.py::TestCrossRefFunctionalization::test_tensor_ctr, test/test_functionalization.py::TestCrossRefFunctionalization::test_tensor_list_composite, test/test_functionalization.py::TestCrossRefFunctionalization::test_tensor_list_mixed_functional_nonfunctional, test/test_functionalization.py::TestCrossRefFunctionalization::test_unbind, test/test_functionalization.py::TestCrossRefFunctionalization::test_view_clone_view_inplace, test/test_functionalization.py::TestCrossRefFunctionalization::test_view_inplace 2025-08-14T22:24:20.7982036Z 2025-08-14T22:24:26.0077195Z Running test_rename_privateuse1_to_existing_device 1/1 ... [2025-08-14 22:24:26.004517] 2025-08-14T22:24:26.0078076Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:24:26.0085308Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_rename_privateuse1_to_existing_device.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:24:26.004517] 2025-08-14T22:24:31.0616818Z 2025-08-14T22:24:31.0618203Z test_rename_privateuse1_to_existing_device 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_rename_privateuse1_to_existing_device_1.1_90a5dd3cb30b292a_.log 2025-08-14T22:24:31.0619722Z Running 1 items in this shard: test/test_rename_privateuse1_to_existing_device.py::TestRenamePrivateuseoneToExistingBackend::test_external_module_register_with_existing_backend 2025-08-14T22:24:31.0620482Z 2025-08-14T22:24:37.0290258Z Running test_transformers 1/2 ... [2025-08-14 22:24:37.028200] 2025-08-14T22:24:37.0290672Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:24:37.0297012Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:24:37.028200] 2025-08-14T22:28:16.5233796Z 2025-08-14T22:28:16.5235196Z export/test_sparse 2/2 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_2.2_e8b470c815dc83c1_.log 2025-08-14T22:28:16.5295883Z Running 97 items in this shard: test/export/test_sparse.py::TestSparseProp::test_activation_coo, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseBSC 2025-08-14T22:28:16.5352975Z 2025-08-14T22:28:23.1595955Z Running test_transformers 2/2 ... [2025-08-14 22:28:23.159289] 2025-08-14T22:28:23.1596473Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:23.1602612Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:23.159897] 2025-08-14T22:32:41.3281855Z 2025-08-14T22:32:41.3291999Z test_proxy_tensor 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_proxy_tensor_2.2_0c9a8def1ebd6059_.log 2025-08-14T22:32:41.5219481Z Running 1835 items in this shard: test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_constant_blowup, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_decomposition_interpreter, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_empty_like_doesnt_burn_in_defaults, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_inplace_metadata, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_model_fwd_bwd, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_mode_tracing_factory_function, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pickle_issue89626, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pr_86917, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pre_dispatch_functionalization, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pre_dispatch_linear, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pre_dispatch_no_grad, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_proxy_tensor, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_proxy_tensor_mode_with_decomp_table_preserves_proxy, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_val_metadata_mutation, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_amp_cache, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_constant_proxy_tensor_mut, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_constant_random, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_decomp_of_capture, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_decomposition_interpreter, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_inplace_metadata, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_model_double_param, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_overloads, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_reentrant_dispatch, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_simple, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_mode_tracing_factory_function, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pickle_issue89626, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pre_dispatch_functionalization, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pre_dispatch_linear, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pre_dispatch_mode_stack, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_proxy_tensor, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_strides, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_tensor_constants, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_trace_subclasses, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_varargs, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_allclose, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_constant_blowup, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_inplace_metadata, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_isolated_graphmodule, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_model_double_param, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_model_fwd_bwd, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pickle_issue89626, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_linear, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_mode_stack, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_proxy_tensor, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_proxy_tensor_mode_with_decomp_table_preserves_proxy, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_resnet18_backward_trace, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_scalar_device, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_tensor_constants, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_val_metadata_mutation, test/test_proxy_tensor.py::TestFakeProxyTensor::test_alias, test/test_proxy_tensor.py::TestFakeProxyTensor::test_free_fake, test/test_proxy_tensor.py::TestFakeProxyTensor::test_issue82547, test/test_proxy_tensor.py::TestFakeProxyTensor::test_use_fake_and_tensor, test/test_proxy_tensor.py::TestSymbolicTracing::test_arange_unbacked_output_size, test/test_proxy_tensor.py::TestSymbolicTracing::test_binary_broadcast, test/test_proxy_tensor.py::TestSymbolicTracing::test_boolean_index, test/test_proxy_tensor.py::TestSymbolicTracing::test_cat, test/test_proxy_tensor.py::TestSymbolicTracing::test_cpu_scalar_cuda, test/test_proxy_tensor.py::TestSymbolicTracing::test_cumsum_unbacked, test/test_proxy_tensor.py::TestSymbolicTracing::test_deduped_shape, test/test_proxy_tensor.py::TestSymbolicTracing::test_guard_lowerbound_range_refinement_multivariate, test/test_proxy_tensor.py::TestSymbolicTracing::test_invalidate_nonzero, test/test_proxy_tensor.py::TestSymbolicTracing::test_invalidate_nonzero_propagate_real_tensors, test/test_proxy_tensor.py::TestSymbolicTracing::test_item, test/test_proxy_tensor.py::TestSymbolicTracing::test_make_fx_with_custom_tracer_preserving_nn_module_stack, test/test_proxy_tensor.py::TestSymbolicTracing::test_mod_gcd_unbacked, test/test_proxy_tensor.py::TestSymbolicTracing::test_neg_shape, test/test_proxy_tensor.py::TestSymbolicTracing::test_new_empty, test/test_proxy_tensor.py::TestSymbolicTracing::test_non_symint_size_spec, test/test_proxy_tensor.py::TestSymbolicTracing::test_reflect_r_over_x, test/test_proxy_tensor.py::TestSymbolicTracing::test_resize_from_zero, test/test_proxy_tensor.py::TestSymbolicTracing::test_rmethod, test/test_proxy_tensor.py::TestSymbolicTracing::test_size_with_tensor, test/test_proxy_tensor.py::TestSymbolicTracing::test_split_unbacked_sizes, test/test_proxy_tensor.py::TestSymbolicTracing::test_sqrt_size, test/test_proxy_tensor.py::TestSymbolicTracing::test_tensor_symfloat, test/test_proxy_tensor.py::TestSymbolicTracing::test_unbacked_batch_resnet, test/test_proxy_tensor.py::TestSymbolicTracing::test_unbacked_slice, test/test_proxy_tensor.py::TestSymbolicTracing::test_unbacked_unification, test/test_proxy_tensor.py::TestSymbolicTracing::test_unbacked_unify_dependency_violation, test/test_proxy_tensor.py::TestSymbolicTracing::test_unbacked_unify_guard, test/test_proxy_tensor.py::TestSymbolicTracing::test_view_divisibility_unbacked_relatively_prime, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_H_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyCubeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyMulCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyNMSCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpySplitCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyViewCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___radd___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rdiv___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rmod___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__batch_norm_with_update_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__segment_reduce_lengths_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_acos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addcdiv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addcmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_alias_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_any_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_argsort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_argwhere_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_as_strided_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_as_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atleast_1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_baddbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_broadcast_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bucketize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ceil_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_clamp_max_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_constant_pad_nd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_corrcoef_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cov_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cummin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diag_embed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diagonal_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_digamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_double_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_dstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_einsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_empty_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_eq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_equal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_erf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_erfinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_exp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_expand_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_expm1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_fft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_hfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_hfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ihfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ihfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_rfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_rfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_rfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_flex_attention_backward_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_flipud_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_floor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_gather_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_gradient_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_grid_sampler_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_half_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_histc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_igamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_igammac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_int_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_invoke_subgraph_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isneginf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isposinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isreal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_kthvalue_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ldexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_le_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_eigvalsh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_householder_product_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_inv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_inv_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_ldl_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_matrix_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_multi_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_pinv_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_solve_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_tensorsolve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_vecdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log1p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logcumsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logical_not_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logical_or_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_long_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_map_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_map_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_max_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_maximum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_min_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_min_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nansum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_narrow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_native_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_native_dropout_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_native_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ne_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nextafter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_dropout3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_elu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_embedding_bag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_gelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_glu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_grid_sample_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hardswish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hardtanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_instance_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_area_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_local_response_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_constant_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_rms_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_selu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_silu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_softshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_softsign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_tanhshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nonzero_static_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ormqr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_outer_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_permute_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rad2deg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_randint_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_randint_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_randn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_remainder_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_repeat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_resolve_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_roll_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_round_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_round_decimals_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_round_decimals_neg_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rsub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_reduce_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_short_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_bartlett_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_general_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signbit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_slice_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_entr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_hermite_polynomial_he_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_i0e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_i1e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_modified_bessel_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_spherical_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_squeeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_squeeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_std_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_std_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_std_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_stft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_take_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tensor_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_to_sparse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_topk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_triu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_trunc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unflatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unfold_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unsafe_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unsafe_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_var_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_var_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_view_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_view_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_vsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_while_loop_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_xlogy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_zero__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_zeros_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_H_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyCubeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyMulCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyNMSCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyNonzeroCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpySplitCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyViewCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rdiv___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rmod___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rpow___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__batch_norm_with_update_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__native_batch_norm_legit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__segment_reduce_lengths_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__segment_reduce_offsets_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addcdiv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addcmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addmv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_alias_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_allclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_any_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_argsort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_as_strided_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_as_strided_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_atan2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_atanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_atleast_1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_atleast_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_baddbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_bool_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_bucketize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_byte_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ceil_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_char_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_clamp_max_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cond_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_constant_pad_nd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_corrcoef_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_count_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cummax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diag_embed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_digamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_empty_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_eq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_equal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_erf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_erfc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_exp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_expm1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_eye_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_fftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_hfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ihfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ihfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_irfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_rfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_rfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_rfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flex_attention_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_float_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_frac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_gradient_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_grid_sampler_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_half_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_histc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_histogramdd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_hstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_igamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_igammac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_int_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_invoke_quant_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isposinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isreal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_jiterator_unary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_kthvalue_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ldexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_le_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_cond_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_det_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_eig_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_householder_product_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_inv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_inv_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_matrix_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_pinv_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_vector_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logcumsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logical_not_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logical_or_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_long_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_map_triple_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_matrix_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_max_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_maximum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_min_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nansum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_narrow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_native_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_native_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ne_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_celu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_dropout3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_elu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_gelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hardswish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_area_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_kl_div_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_local_response_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_rms_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_silu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_tanhshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_threshold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nonzero_static_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_normal_number_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ormqr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_outer_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polar_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_quantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_randn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ravel_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_remainder_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_renorm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_resolve_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_rot90_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_round_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_round_decimals_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_round_decimals_neg_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_rsub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_searchsorted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_short_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_bartlett_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_blackman_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signbit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_slice_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_slice_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_entr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_hermite_polynomial_he_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_i0e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_i1e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_modified_bessel_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_zeta_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_split_with_sizes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_squeeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_squeeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_squeeze_multiple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_std_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_stft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sum_to_size_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tensordot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_to_sparse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_topk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_transpose_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_transpose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_triangular_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_triu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_trunc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unbind_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unflatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unfold_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unique_consecutive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_var_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_view_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_view_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_where_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_xlogy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_zero__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyCubeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpySplitCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___radd___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rpow___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__batch_norm_with_update_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__segment_reduce_lengths_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__segment_reduce_offsets_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__unsafe_masked_index_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_acos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addcdiv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_allclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_any_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_argsort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_as_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_as_strided_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_baddbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_broadcast_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_broadcast_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_byte_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_char_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_clamp_max_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_column_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cond_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_constant_pad_nd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_corrcoef_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cummax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_digamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_dstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_einsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_empty_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_eq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_erf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_erfc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_erfinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_expand_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_fft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_fftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_hfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ifft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ihfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_irfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_rfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_rfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_rfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_flex_attention_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_flipud_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_float_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_floor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_frac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_full_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_gradient_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_grid_sampler_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_histogramdd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_hstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_igammac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_H_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyMulCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyNMSCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyNonzeroCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpySplitCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___radd___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rdiv___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rmod___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rpow___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__batch_norm_with_update_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__native_batch_norm_legit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__segment_reduce_lengths_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__unsafe_masked_index_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addcdiv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addmv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_alias_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_any_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_argwhere_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_as_strided_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_as_strided_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_atan2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_atanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_atleast_1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_atleast_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_bool_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_broadcast_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_broadcast_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_bucketize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_byte_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ceil_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_char_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_column_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_count_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cov_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cummax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cummin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diag_embed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diagonal_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_double_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_einsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_eq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_erfinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_exp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_expand_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_eye_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_hfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ifft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ihfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_rfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_rfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_rfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_flipud_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_frac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_full_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_gather_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_gradient_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_half_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_hstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_igamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_igammac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_int_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isneginf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isreal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_unary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ldexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_le_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_cond_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_det_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_eig_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_householder_product_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_inv_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_ldl_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_ldl_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_multi_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_pinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_pinv_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_tensorsolve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_vector_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log1p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logaddexp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logcumsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logical_not_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_matrix_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_max_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_maximum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_meshgrid_variadic_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_min_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_min_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nansum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_narrow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_native_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_native_dropout_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ne_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_new_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nextafter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_celu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_channel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_dropout2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_dropout3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_elu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_embedding_bag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_gelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hardshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_instance_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_kl_div_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_unpool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_mse_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pad_constant_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pad_reflect_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_prelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_rms_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_rrelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_softshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_softsign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_upsample_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_upsample_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_normal_number_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ormqr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_outer_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polar_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polygamma_polygamma_n_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_quantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_rad2deg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_randint_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_randn_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ravel_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_remainder_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_repeat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_repeat_interleave_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_resolve_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_roll_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_rot90_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_round_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_round_decimals_neg_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scalar_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_searchsorted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_bartlett_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_blackman_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_gaussian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_general_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signbit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_slice_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_hermite_polynomial_he_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_i1e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_laguerre_polynomial_l_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_modified_bessel_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_zeta_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_square_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_squeeze_multiple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_std_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_std_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_stft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sum_to_size_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_svd_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_take_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tensor_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_to_sparse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_topk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_transpose_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_transpose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_triangular_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_triu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unfold_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unique_consecutive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unsafe_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unsqueeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_var_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_var_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_view_as_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_view_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_view_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_vsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_where_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_xlogy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_invoke_quant_packed_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_invoke_quant_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isneginf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isreal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_unary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_det_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_eig_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_eigvalsh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_householder_product_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_inv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_inv_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_ldl_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_matrix_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_pinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_solve_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_tensorsolve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_vecdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_vector_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log1p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logaddexp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logcumsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_map_triple_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_matrix_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_max_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_maximum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_min_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_native_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_native_dropout_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_dropout3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_embedding_bag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_glu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_grid_sample_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_hardtanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_instance_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_area_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_kl_div_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_local_response_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pad_constant_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_prelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_rms_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_rrelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_selu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_softshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_softsign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_tanhshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_threshold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_H_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyMulCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyNonzeroCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpySplitCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyViewCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___radd___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rdiv___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rmod___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__batch_norm_with_update_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__native_batch_norm_legit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__segment_reduce_lengths_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__segment_reduce_offsets_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__unsafe_masked_index_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_acos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addcmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addmv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_alias_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_allclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_argwhere_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_as_strided_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_as_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_as_strided_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_atan2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_atanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_atleast_1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_atleast_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_bool_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_broadcast_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_bucketize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_char_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_column_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_count_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cov_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cummin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diagonal_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_digamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_double_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_dstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_einsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_eq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_equal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_erf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_erfc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_expand_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_expm1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_eye_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_fft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_fftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_hfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ifft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ihfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_irfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_rfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_float_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_floor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_full_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_gather_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_gradient_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_grid_sampler_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_half_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_histc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_histogramdd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_hstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_igamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_igammac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isneginf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isposinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_jiterator_unary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_kthvalue_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ldexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_le_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_cond_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_det_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_eigvalsh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_householder_product_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_inv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_inv_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_ldl_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_ldl_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_matrix_rank_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_multi_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_norm_subgradients_at_zero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_pinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_solve_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_vecdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log1p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logaddexp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logcumsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logical_or_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_long_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_matrix_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_max_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_meshgrid_variadic_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_min_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nansum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_narrow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_native_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_native_dropout_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_native_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_new_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_new_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nextafter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_celu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_channel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv_transpose3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_dropout2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_dropout3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_elu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_embedding_bag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_glu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_grid_sample_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_hardshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_hardswish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_hardtanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_instance_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_trilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_local_response_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_mse_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_multilabel_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pad_reflect_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pairwise_distance_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_poisson_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_prelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_rrelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_selu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_silu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_tanhshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_threshold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_upsample_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nonzero_static_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_normal_number_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_outer_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_permute_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_quantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_randint_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_randint_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_randn_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_renorm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_repeat_interleave_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_resolve_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_roll_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rot90_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_round_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_round_decimals_neg_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rsub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scalar_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_searchsorted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_short_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_bartlett_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_blackman_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_gaussian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signbit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_slice_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_entr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_i1e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_modified_bessel_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_scaled_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_scaled_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_spherical_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_split_with_sizes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_square_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_squeeze_multiple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_std_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_std_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_std_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sum_to_size_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_svd_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_take_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tensordot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_to_sparse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_transpose_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_triangular_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_triu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_trunc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unbind_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unflatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unfold_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unique_consecutive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unsafe_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unsqueeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_view_as_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_outer_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_permute_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polar_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_quantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rad2deg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_randint_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_randint_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_randn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_randn_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ravel_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_renorm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_repeat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_repeat_interleave_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_roll_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_round_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_round_decimals_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_round_decimals_neg_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scalar_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scan_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_reduce_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_searchsorted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_short_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_bartlett_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_blackman_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_gaussian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_general_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signbit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_slice_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_slice_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_i0e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_spherical_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_zeta_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_split_with_sizes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_square_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_squeeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_squeeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_std_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_std_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_std_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_stft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_svd_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_take_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tensor_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tensordot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_to_sparse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_topk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_transpose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_triangular_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unbind_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unfold_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unsafe_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unsafe_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unsqueeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_var_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_view_as_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_view_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_vsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_where_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_while_loop_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_xlogy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_zero__cpu_float32 2025-08-14T22:32:41.6730935Z 2025-08-14T22:32:49.2072037Z Running test_nestedtensor 2/4 ... [2025-08-14 22:32:49.192470] 2025-08-14T22:32:49.2072849Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:49.2074733Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'not serial', '--shard-id=2', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:32:49.193496] 2025-08-14T22:34:13.5421034Z 2025-08-14T22:34:13.5422621Z test_transformers 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_1.2_84c0c407e289ed5a_.log 2025-08-14T22:34:13.7651297Z Running 1705 items in this shard: test/test_transformers.py::TestTransformersCPU::test_bias_is_none_cpu, test/test_transformers.py::TestTransformersCPU::test_decoder_only_layer_cpu, test/test_transformers.py::TestTransformersCPU::test_encoder_padding_and_src_mask_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_is_causal_gpu_cpu, test/test_transformers.py::TestTransformersCPU::test_kpm_mask_trailing_column_with_nested_tensor_cpu, test/test_transformers.py::TestTransformersCPU::test_mask_check_fastpath_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_1_bias_False_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_8_bias_True_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim1_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim_2_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim_2_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim_2_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim1_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim1_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim_2_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_no_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_no_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_no_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_script_mha_in_proj_weight_none_cpu, test/test_transformers.py::TestTransformersCPU::test_self_attn_TxT_attn_mask_cpu, test/test_transformers.py::TestTransformersCPU::test_train_with_pad_and_catch_error_cpu, test/test_transformers.py::TestTransformersCPU::test_transformer_bias_is_none_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_False_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_True_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_True_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_False_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_False_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_True_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_True_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_False_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_False_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_src_mask_nhead_4_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_subclass_model_cpu, test/test_transformers.py::TestTransformersCPU::test_with_nested_tensor_input_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_atteention_large_bf16_nan_values_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_attention_fail_with_non_square_causal_attention_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_193_dropout_p_0_0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_256_dropout_p_0_2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_fail_fp32_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_fused_kernels_nested_broadcasting_error_cases_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_fused_kernels_nested_broadcasting_requires_grad_failure_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_fused_kernels_seq_len_0_inputs_fused_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_attn_mask_present_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_broadcast_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_dim_3_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_invalid_dtype_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_1_dimensional_inputs_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_1_dimensional_inputs_kernel2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_datatypes_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_datatypes_kernel2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_devices_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_devices_kernel2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_last_dim_stride_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_sequence_lengths_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_eff_attention_fail_with_batch_size_geq_65536_error_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_efficient_fail_bfloat16_less_than_sm80_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_nested_fails_on_padding_head_dim_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_unaligned_tensors_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_cpu_flash_attn_nan_propagation_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_non_masked_rows_nan_props_float32_fill_val_inf_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_attention_math_with_negative_scale_kernel0_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads0_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads1_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads0_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads0_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads1_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads1_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads2_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads0_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads2_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads2_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads3_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads1_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_and_mask_fails_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape3_cpu 2025-08-14T22:34:14.0226616Z 2025-08-14T22:34:20.1459947Z Running test_namedtensor 1/1 ... [2025-08-14 22:34:20.140433] 2025-08-14T22:34:20.1460734Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:20.1467911Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_namedtensor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:34:20.140433] 2025-08-14T22:34:27.5790934Z 2025-08-14T22:34:27.5792559Z test_namedtensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_namedtensor_1.1_94f28f2e1a344701_.log 2025-08-14T22:34:27.5844576Z Running 88 items in this shard: test/test_namedtensor.py::TestNamedTensor::test_aaa_must_run_first_check_experimental_warning, test/test_namedtensor.py::TestNamedTensor::test_addcmul_addcdiv, test/test_namedtensor.py::TestNamedTensor::test_addmm, test/test_namedtensor.py::TestNamedTensor::test_addmv, test/test_namedtensor.py::TestNamedTensor::test_align_as, test/test_namedtensor.py::TestNamedTensor::test_align_tensors, test/test_namedtensor.py::TestNamedTensor::test_align_tensors_two_inputs, test/test_namedtensor.py::TestNamedTensor::test_align_to, test/test_namedtensor.py::TestNamedTensor::test_align_to_ellipsis, test/test_namedtensor.py::TestNamedTensor::test_any_all, test/test_namedtensor.py::TestNamedTensor::test_as_strided, test/test_namedtensor.py::TestNamedTensor::test_as_strided_cuda, test/test_namedtensor.py::TestNamedTensor::test_autograd_ignores_names, test/test_namedtensor.py::TestNamedTensor::test_autograd_smoke, test/test_namedtensor.py::TestNamedTensor::test_autograd_warns_named_grad, test/test_namedtensor.py::TestNamedTensor::test_bernoulli, test/test_namedtensor.py::TestNamedTensor::test_big_tensor_repr_has_names, test/test_namedtensor.py::TestNamedTensor::test_binary_ops, test/test_namedtensor.py::TestNamedTensor::test_bitwise_not, test/test_namedtensor.py::TestNamedTensor::test_bmm, test/test_namedtensor.py::TestNamedTensor::test_cat, test/test_namedtensor.py::TestNamedTensor::test_cdist, test/test_namedtensor.py::TestNamedTensor::test_comparison_ops, test/test_namedtensor.py::TestNamedTensor::test_copy_transpose, test/test_namedtensor.py::TestNamedTensor::test_cummax_cummin, test/test_namedtensor.py::TestNamedTensor::test_detach, test/test_namedtensor.py::TestNamedTensor::test_diagonal, test/test_namedtensor.py::TestNamedTensor::test_dot, test/test_namedtensor.py::TestNamedTensor::test_equal, test/test_namedtensor.py::TestNamedTensor::test_expand, test/test_namedtensor.py::TestNamedTensor::test_factory_coverage, test/test_namedtensor.py::TestNamedTensor::test_factory_edge_cases, test/test_namedtensor.py::TestNamedTensor::test_flatten, test/test_namedtensor.py::TestNamedTensor::test_flatten_index_error, test/test_namedtensor.py::TestNamedTensor::test_flatten_nodims, test/test_namedtensor.py::TestNamedTensor::test_has_names, test/test_namedtensor.py::TestNamedTensor::test_index_fill, test/test_namedtensor.py::TestNamedTensor::test_info_smoke, test/test_namedtensor.py::TestNamedTensor::test_logcumsumexp, test/test_namedtensor.py::TestNamedTensor::test_logical_not, test/test_namedtensor.py::TestNamedTensor::test_logical_ops, test/test_namedtensor.py::TestNamedTensor::test_masked_fill, test/test_namedtensor.py::TestNamedTensor::test_masked_select, test/test_namedtensor.py::TestNamedTensor::test_matmul, test/test_namedtensor.py::TestNamedTensor::test_max_pooling, test/test_namedtensor.py::TestNamedTensor::test_max_pooling_without_names_does_not_warn, test/test_namedtensor.py::TestNamedTensor::test_mm, test/test_namedtensor.py::TestNamedTensor::test_mv, test/test_namedtensor.py::TestNamedTensor::test_no_jit_script_support, test/test_namedtensor.py::TestNamedTensor::test_no_jit_tracer_support, test/test_namedtensor.py::TestNamedTensor::test_no_multiprocessing_support, test/test_namedtensor.py::TestNamedTensor::test_no_pickle_support, test/test_namedtensor.py::TestNamedTensor::test_no_save_support, test/test_namedtensor.py::TestNamedTensor::test_noncontig_contiguous, test/test_namedtensor.py::TestNamedTensor::test_none_names_refcount, test/test_namedtensor.py::TestNamedTensor::test_nyi_dimname_overload_msg, test/test_namedtensor.py::TestNamedTensor::test_out_fn_semantics, test/test_namedtensor.py::TestNamedTensor::test_pow_special, test/test_namedtensor.py::TestNamedTensor::test_py3_ellipsis, test/test_namedtensor.py::TestNamedTensor::test_reduction_fns, test/test_namedtensor.py::TestNamedTensor::test_refine_names, test/test_namedtensor.py::TestNamedTensor::test_rename, test/test_namedtensor.py::TestNamedTensor::test_rename_, test/test_namedtensor.py::TestNamedTensor::test_rename_globber, test/test_namedtensor.py::TestNamedTensor::test_rename_rename_map, test/test_namedtensor.py::TestNamedTensor::test_repr, test/test_namedtensor.py::TestNamedTensor::test_resize, test/test_namedtensor.py::TestNamedTensor::test_select, test/test_namedtensor.py::TestNamedTensor::test_select_cuda, test/test_namedtensor.py::TestNamedTensor::test_set_names_property, test/test_namedtensor.py::TestNamedTensor::test_size, test/test_namedtensor.py::TestNamedTensor::test_split_fns_propagates_names, test/test_namedtensor.py::TestNamedTensor::test_squeeze, test/test_namedtensor.py::TestNamedTensor::test_stride, test/test_namedtensor.py::TestNamedTensor::test_support_device_named_grad, test/test_namedtensor.py::TestNamedTensor::test_tensor_from_lists, test/test_namedtensor.py::TestNamedTensor::test_tensor_from_named_tensor, test/test_namedtensor.py::TestNamedTensor::test_tensor_from_numpy, test/test_namedtensor.py::TestNamedTensor::test_tensor_from_tensor, test/test_namedtensor.py::TestNamedTensor::test_tensor_grad_is_unnamed, test/test_namedtensor.py::TestNamedTensor::test_transpose_variants, test/test_namedtensor.py::TestNamedTensor::test_trivial, test/test_namedtensor.py::TestNamedTensor::test_unary_propagate_names_fns, test/test_namedtensor.py::TestNamedTensor::test_unflatten, test/test_namedtensor.py::TestNamedTensor::test_unsupported_op_error_msg, test/test_namedtensor.py::TestNamedTensor::test_using_seen_interned_string_doesnt_bump_refcount, test/test_namedtensor.py::TestNamedTensor::test_using_unseen_interned_string_bumps_refcount_permanently, test/test_namedtensor.py::TestNamedTensor::test_using_unseen_uninterned_string_refcounts 2025-08-14T22:34:27.5894718Z 2025-08-14T22:34:33.9796043Z Running torch_np/test_ufuncs_basic 1/1 ... [2025-08-14 22:34:33.979232] 2025-08-14T22:34:33.9797123Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:33.9806242Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_ufuncs_basic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:34:33.979849] 2025-08-14T22:34:41.8928583Z 2025-08-14T22:34:41.8929986Z torch_np/test_ufuncs_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_ufuncs_basic_1.1_e88126e1552c1577_.log 2025-08-14T22:34:41.9217339Z Running 371 items in this shard: test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_scalar_ufunc0, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_equiv_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_equiv_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_equiv_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_no_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_no_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_no_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_safe_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_safe_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_safe_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_same_kind_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_same_kind_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_same_kind_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_unsafe_ufunc0_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_unsafe_ufunc0_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_casting_casting_unsafe_ufunc0_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_dtype_ufunc0, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_broadcast_ufunc0, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_equiv_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_equiv_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_equiv_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_no_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_no_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_no_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_safe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_safe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_safe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_same_kind_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_same_kind_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_same_kind_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_unsafe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_unsafe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestUnaryUfuncs::test_x_and_out_casting_casting_unsafe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc0, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc1, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc10, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc11, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc12, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc13, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc14, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc15, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc16, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc2, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc3, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc4, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc5, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc6, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc7, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc8, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_scalar_ufunc9, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc0, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc1, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc10, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc11, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc12, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc13, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc14, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc15, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc16, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc2, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc3, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc4, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc5, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc6, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc7, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc8, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_vector_vs_scalar_ufunc9, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc0, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc1, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc10, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc11, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc12, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc13, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc14, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc15, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc16, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc2, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc3, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc4, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc5, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc6, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc7, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc8, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_broadcast_ufunc9, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_equiv_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_no_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_safe_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_same_kind_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc0_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc0_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc0_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc10_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc10_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc10_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc11_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc11_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc11_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc12_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc12_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc12_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc13_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc13_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc13_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc14_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc14_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc14_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc15_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc15_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc15_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc16_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc16_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc16_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc1_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc1_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc1_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc2_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc2_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc2_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc3_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc3_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc3_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc4_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc4_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc4_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc5_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc5_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc5_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc6_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc6_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc6_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc7_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc7_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc7_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc8_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc8_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc8_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc9_out_dtype_complex128, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc9_out_dtype_float32, test/torch_np/test_ufuncs_basic.py::TestBinaryUfuncs::test_xy_and_out_casting_casting_unsafe_ufunc9_out_dtype_float64, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_basic_ufunc0_op0_iop0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_basic_ufunc1_op1_iop1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_basic_ufunc2_op2_iop2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_bcast_ufunc0_op0_iop0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_bcast_ufunc1_op1_iop1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_bcast_ufunc2_op2_iop2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc0_op0_iop0_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc1_op1_iop1_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_array_ufunc2_op2_iop2_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc0_op0_iop0_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc1_op1_iop1_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype0, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype1, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype2, test/torch_np/test_ufuncs_basic.py::TestNdarrayDunderVsUfunc::test_other_scalar_ufunc2_op2_iop2_other_dtype3, test/torch_np/test_ufuncs_basic.py::TestUfuncDtypeKwd::test_binary_ufunc_dtype, test/torch_np/test_ufuncs_basic.py::TestUfuncDtypeKwd::test_binary_ufunc_dtype_and_out 2025-08-14T22:34:41.9491284Z 2025-08-14T22:34:48.5636758Z Running test_meta 1/5 ... [2025-08-14 22:34:48.563298] 2025-08-14T22:34:48.5637474Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:48.5644033Z 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-08-14 22:34:48.563298] 2025-08-14T22:37:39.0638839Z 2025-08-14T22:37:39.0640264Z test_transformers 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_2.2_d3c727cf2f8af242_.log 2025-08-14T22:37:39.2768340Z Running 1598 items in this shard: test/test_transformers.py::TestTransformersCPU::test_decoder_padding_and_src_mask_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_disable_fastpath_cpu, test/test_transformers.py::TestTransformersCPU::test_encoder_is_causal_cpu, test/test_transformers.py::TestTransformersCPU::test_math_backend_high_precision_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_1_bias_True_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_8_bias_False_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim1_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim_2_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim1_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim1_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim_2_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_no_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_no_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_no_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_script_encoder_subclass_cpu, test/test_transformers.py::TestTransformersCPU::test_train_with_is_causal_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_False_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_False_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_True_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_True_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_False_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_True_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_True_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_no_fastpath_with_hooks_nhead_3_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_no_fastpath_with_hooks_nhead_4_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_src_mask_nhead_1_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_src_mask_nhead_8_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_subclass_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_dispatch_fails_no_backend_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_autocast_fp32_bfloat16_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_autocast_fp32_float16_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_193_dropout_p_0_2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_256_dropout_p_0_0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_head_dim_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_1_dimensional_inputs_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_datatypes_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_devices_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_sdpa_kernel_grouped_query_attention_cuda_fused_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mask_invalid_last_dim_stride_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mask_invalid_last_dim_stride_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_eff_attention_fail_with_batch_size_geq_65536_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_eff_attention_large_seq_len_uniform_attention_cpu, test/test_transformers.py::TestSDPACPU::test_scaled_dot_product_attention_math_with_negative_scale_kernel0_cpu, test/test_transformers.py::TestSDPACPU::test_sdp_math_gradcheck_contiguous_inputs_False_cpu, test/test_transformers.py::TestSDPACPU::test_sdp_math_gradcheck_contiguous_inputs_True_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_cpu_flash_attn_nan_propagation_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_non_masked_rows_nan_props_float16_fill_val_inf_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads0_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads1_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads2_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads2_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads3_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads3_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads2_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads3_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads3_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads0_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads1_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads1_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads3_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads0_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads0_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads1_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads2_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads2_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads3_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads3_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_sdpa_backward_with_gradient_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_sdpa_with_inf_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape2_cpu 2025-08-14T22:37:39.5339672Z 2025-08-14T22:37:44.9071516Z Running test_meta 3/5 ... [2025-08-14 22:37:44.906518] 2025-08-14T22:37:44.9072249Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:37:44.9080106Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=3', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:37:44.907747] 2025-08-14T22:42:21.8682269Z 2025-08-14T22:42:21.8683177Z test_nestedtensor 2/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_2.4_d57064755d2244c4_.log 2025-08-14T22:42:21.8868139Z Running 406 items in this shard: test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_4_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_4_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_4_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_4_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_dim, test/test_nestedtensor.py::TestNestedTensor::test_fill_, test/test_nestedtensor.py::TestNestedTensor::test_like_functions_ones_like, test/test_nestedtensor.py::TestNestedTensor::test_nested_tensor_matching_dim, test/test_nestedtensor.py::TestNestedTensor::test_nested_view_from_buffer_overflow_errors, test/test_nestedtensor.py::TestNestedTensor::test_repr_string, test/test_nestedtensor.py::TestNestedTensor::test_to, test/test_nestedtensor.py::TestNestedTensor::test_to_padded_tensor_on_empty_tensor, test/test_nestedtensor.py::TestNestedTensor::test_unbind_0, test/test_nestedtensor.py::TestNestedTensor::test_unbind_1, test/test_nestedtensor.py::TestNestedTensor::test_zero_, test/test_nestedtensor.py::TestNestedInt::test_with_factor, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_binary_ops_with_scalar_eq_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_bfloat16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_strided_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_layer_norm_breaking_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_masked_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_masked_select_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_256_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_8_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_div_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_noncontiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_in_place_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_split_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_split_with_sizes_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sub_transpose_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_reshape_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_softmax_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_softmax_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_squeeze_unsqueeze_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim2_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_zero_numel_errors_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_inference_mode_interaction_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_inference_mode_interaction_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_gelu_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isneginf_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_logical_not_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_neg_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_relu__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_sgn_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_cpu_float64, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_accumulate_grad_different_strides_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_32_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_4_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_256_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_32_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_masked_fill_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_bmm_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_matmul_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_transpose_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_unsqueeze_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_transposed_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_copy__cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_dropout_inference_mode_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_False_cross_attention_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_with_pinned_memory_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_True_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_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_padded_dense_conversion_kernels_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_2d_input_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_2d_input_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_operate_on_batch_dim_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_operate_on_batch_dim_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_reduce_ragged_idx_1_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_shape_empty_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_randint_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_randn_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_zeros_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_transposed_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_transposed_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_transposed_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_with_holes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_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_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_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_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_False_requires_grad_False_components_require_grad_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_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_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_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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_pin_memory_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_profiler_sequence_nr_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_reshape_decomp_requires_grad_False_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_reshape_decomp_requires_grad_True_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_contig_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_transposed_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_transposed_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_with_holes_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_1_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_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_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_2_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_False_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_False_components_require_grad_True_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_True_components_require_grad_True_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_transpose_non_ragged_dim_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_with_lengths_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_False_components_require_grad_True_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_True_components_require_grad_False_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_specialize_dynamic_shape_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_split_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_split_with_sizes_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_tensor_attributes_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_threshold_backward_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_copy_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_False_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_True_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_backward_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_backward_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_2_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_transpose_ragged_idx_2_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_abs_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_asinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_digamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_div_floor_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_div_trunc_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_float_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_hypot_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_log_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_logit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nanmean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nansum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_embedding_bag_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_embedding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_mish_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_pow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_rsub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sinc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_log_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_trunc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___radd___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_asinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_atan2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_deg2rad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_div_floor_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_erf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nan_to_num_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_hardsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_logsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_relu6_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_softplus_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sgn_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sinc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_i0e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_ndtri_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_square_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_trunc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_unflatten_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___radd___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_asinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_byte_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clamp_min_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_complex_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_count_nonzero_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_div_no_rounding_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_heaviside_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_igamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isfinite_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isposinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logical_xor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_embedding_bag_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_embedding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_tanhshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_j1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_u_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_i0e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_laguerre_polynomial_l_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_log_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_modified_bessel_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_modified_bessel_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_scaled_modified_bessel_k1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_split_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_square_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_any_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_deg2rad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_gt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_hypot_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isneginf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_le_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_and_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_or_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nanmean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_embedding_bag_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_embedding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_hardsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polygamma_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_real_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_rsub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_short_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_j1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_y1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_w_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_i0e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_laguerre_polynomial_l_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_zeta_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_square_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_nested_tensor_input_mutation_backward_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_nested_tensor_non_contiguous_mutation_cpu 2025-08-14T22:42:21.9050870Z 2025-08-14T22:42:27.7755192Z Running test_meta 4/5 ... [2025-08-14 22:42:27.774830] 2025-08-14T22:42:27.7755920Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:27.7764093Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=4', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:42:27.775984] 2025-08-14T22:44:19.8604317Z 2025-08-14T22:44:19.8605525Z test_meta 1/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_1.5_70065ab713b929bc_.log 2025-08-14T22:44:20.2075069Z Running 8111 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_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_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_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_uint8, 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_hash_tensor_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_hash_tensor_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_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_uint8, 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_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_bool, 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_hash_tensor_cpu_bool, 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-08-14T22:44:20.5898704Z 2025-08-14T22:44:25.7280082Z Running test_jiterator 1/1 ... [2025-08-14 22:44:25.727740] 2025-08-14T22:44:25.7280615Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:25.7286473Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jiterator.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:44:25.728313] 2025-08-14T22:44:30.6829965Z 2025-08-14T22:44:30.6830885Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_56d2860a3b980457_.log 2025-08-14T22:44:30.6831679Z Running 0 items in this shard: 2025-08-14T22:44:30.6831918Z 2025-08-14T22:44:36.0103683Z Running test_decomp 2/17 ... [2025-08-14 22:44:36.009735] 2025-08-14T22:44:36.0104277Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:44:36.0113169Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=2', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:44:36.009735] 2025-08-14T22:46:12.2426364Z 2025-08-14T22:46:12.2427246Z test_meta 3/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_3.5_14b0452a87bdcf70_.log 2025-08-14T22:46:12.5113874Z Running 8093 items in this shard: test/test_meta.py::TestMetaConverter::test_complex_noncontiguous_bug, test/test_meta.py::TestMetaConverter::test_leaf, test/test_meta.py::TestMetaConverter::test_non_leaf_torture, test/test_meta.py::TestMetaConverter::test_view_dtype, test/test_meta.py::TestMetaConverter::test_view_of_non_leaf, test/test_meta.py::TestMetaCPU::test_batch_norm_backward_output_mask3_cpu, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_embedding_bag_byte_prepack_cpu, test/test_meta.py::TestMetaCPU::test_embedding_bag_byte_unpack_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask5_cpu, test/test_meta.py::TestMetaCPU::test_index_select_out_cpu, test/test_meta.py::TestMetaCPU::test_inplace_masked_fill_error_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_frexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_group_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_group_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_segment_reduce_backward_cpu, test/test_meta.py::TestMetaCPU::test_triangular_solve_out_cpu 2025-08-14T22:46:12.7592944Z 2025-08-14T22:46:17.3507372Z Running test_decomp 3/17 ... [2025-08-14 22:46:17.339037] 2025-08-14T22:46:17.3508008Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:17.3513959Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=3', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:46:17.339037] 2025-08-14T22:51:57.4667636Z 2025-08-14T22:51:57.4668567Z test_meta 4/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_4.5_aa71d62a86fedf3b_.log 2025-08-14T22:51:57.8443799Z Running 8182 items in this shard: test/test_meta.py::TestMetaConverter::test_channels_last, test/test_meta.py::TestMetaConverter::test_empty_strided_non_dense_leaf, test/test_meta.py::TestMetaConverter::test_requires_grad_false, test/test_meta.py::TestMetaConverter::test_view_as_complex, test/test_meta.py::TestMetaConverter::test_view_as_real, test/test_meta.py::TestMetaCPU::test_batch_norm_backward_output_mask0_cpu, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int16, 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___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_inplace_bin_ops_error_cpu, test/test_meta.py::TestMetaCPU::test_meta__fused_moving_avg_obs_fq_helper_cpu, test/test_meta.py::TestMetaCPU::test_meta_consistency_out_dtype_mismatch_pow_Tensor_Scalar_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_quantized_embedding_bag_cpu 2025-08-14T22:51:58.2140810Z 2025-08-14T22:52:03.2129679Z Running test_decomp 5/17 ... [2025-08-14 22:52:03.212330] 2025-08-14T22:52:03.2130384Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:52:03.2147423Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=5', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:52:03.213489] 2025-08-14T22:54:05.8164429Z 2025-08-14T22:54:05.8165323Z test_decomp 3/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_3.17_b9c026bf060ef6c0_.log 2025-08-14T22:54:05.8325829Z Running 533 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__upsample_bilinear2d_aa_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_int64, 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_cummin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_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_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cond_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvalsh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nextafter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_cpu_float64, 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_hardsigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_one_hot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pdist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rrelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_int32, 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_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_bilinear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_pca_lowrank_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pinverse_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_cosine_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_float32, 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_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_uint64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_float32, 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_asinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_bfloat16, 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_float64, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_max_unpool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int16, 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_bool, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_hypot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_uint8, 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_int32, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nextafter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_silu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softplus_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_bfloat16, 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_randn_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_tril_indices_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_eval_mode_cpu_float32 2025-08-14T22:54:05.8476674Z 2025-08-14T22:54:10.9973280Z Running test_decomp 8/17 ... [2025-08-14 22:54:10.992384] 2025-08-14T22:54:10.9973760Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:54:10.9979702Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=8', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:54:10.992384] 2025-08-14T22:56:24.1980461Z 2025-08-14T22:56:24.1981276Z test_decomp 2/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_2.17_acf62c7d011a2287_.log 2025-08-14T22:56:24.2147741Z Running 549 items in this shard: test/test_decomp.py::TestDecompCPU::test_batch_norm_unflatten_weight_bias_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_offsets_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_complex128, 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_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_complex64, 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_count_nonzero_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e4m3fnuz, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_frexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_float64, 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_kthvalue_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cond_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvalsh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_triangular_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_bfloat16, 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_logical_or_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int64, 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_mv_cpu_uint8, 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_nan_to_num_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_complex64, 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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_ctc_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardswish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_area_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_prelu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_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_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_uint8, 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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int32, 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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_exponential_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int64, 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_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch__scaled_mm_cpu_float8_e4m3fn, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch__scaled_mm_cpu_float8_e5m2, 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_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_indices_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick__batch_norm_with_update_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_float64, 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_bitwise_xor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_std_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_int8, 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_lcm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_huber_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_prelu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_rrelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_normal_number_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_polar_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_complex128, 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_bool, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int16, 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_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_triu_indices_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_exponential_non_inf_cpu, test/test_decomp.py::HasDecompTest::test_aten_core_operators 2025-08-14T22:56:24.2308612Z 2025-08-14T22:56:29.0679805Z Running test_decomp 10/17 ... [2025-08-14 22:56:29.067610] 2025-08-14T22:56:29.0680284Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:29.0686088Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=10', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:56:29.068225] 2025-08-14T22:58:46.2861885Z 2025-08-14T22:58:46.2863197Z test_decomp 5/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_5.17_6747e8dc8aa7fac1_.log 2025-08-14T22:58:46.3162433Z Running 529 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_offsets_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_frac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogramdd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_grad_oriented_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nextafter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nextafter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_ctc_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_cosine_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_native_dropout_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_sgn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_polar_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_neg_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int16 2025-08-14T22:58:46.3310495Z 2025-08-14T22:58:51.4768932Z Running test_decomp 12/17 ... [2025-08-14 22:58:51.476114] 2025-08-14T22:58:51.4769398Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:58:51.4779734Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=12', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:58:51.477326] 2025-08-14T23:05:27.9783325Z 2025-08-14T23:05:27.9784192Z test_decomp 10/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_10.17_b0be26905f76f62f_.log 2025-08-14T23:05:27.9949355Z Running 548 items in this shard: test/test_decomp.py::TestDecompCPU::test_arange_graph_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__upsample_bilinear2d_aa_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int64, 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_block_diag_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_complex128, 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_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_frac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_istft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_int32, 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_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardswish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_area_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_area_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pdist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_prelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_prelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex64, 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_polygamma_polygamma_n_4_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_blackman_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hamming_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int64, 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_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_bfloat16, 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_tan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atanh_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_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_alias_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_frac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_lerp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_rsub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_select_scatter_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_std_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e4m3fn, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e5m2, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_prelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_rrelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_eval_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_train_mode_cpu_float32 2025-08-14T23:05:28.0104211Z 2025-08-14T23:05:33.0134749Z Running test_decomp 15/17 ... [2025-08-14 23:05:33.013213] 2025-08-14T23:05:33.0135201Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:33.0141315Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=15', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:05:33.013824] 2025-08-14T23:05:43.9303177Z 2025-08-14T23:05:43.9304028Z test_decomp 8/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_8.17_582458be153a3e08_.log 2025-08-14T23:05:43.9470817Z Running 561 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_frac_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogram_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eig_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_triangular_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logaddexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logaddexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_celu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cross_entropy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_kl_div_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_complex64, 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_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pca_lowrank_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_float64, 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_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_float32, 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_t_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stft_cpu_complex64, 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_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_lowrank_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_indices_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_indices_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_addcdiv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_baddbmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_expand_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_max_unpool2d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_softshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_norm_fro_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_norm_nuc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unbind_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_complex64, 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_ifft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_bfloat16, 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_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_log_normal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_elu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_huber_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_int8, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_eval_mode_cpu_float32 2025-08-14T23:05:43.9632289Z 2025-08-14T23:05:48.9489272Z Running test_binary_ufuncs 1/1 ... [2025-08-14 23:05:48.946124] 2025-08-14T23:05:48.9489751Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:48.9495790Z 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-08-14 23:05:48.949195] 2025-08-14T23:06:01.9919228Z 2025-08-14T23:06:01.9920161Z test_decomp 12/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_12.17_f1f7ea3c418f3cd5_.log 2025-08-14T23:06:02.0074845Z Running 513 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_frexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hypot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eig_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_celu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gaussian_nll_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_complex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__native_batch_norm_legit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward__unsafe_masked_index_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward__unsafe_masked_index_put_accumulate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_squeeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log_normal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_elu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_train_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_train_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_rms_norm_decomp_cuda_cpu 2025-08-14T23:06:02.0220911Z 2025-08-14T23:06:07.4531798Z Running test_matmul_cuda 1/1 ... [2025-08-14 23:06:07.452811] 2025-08-14T23:06:07.4532303Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:07.4539266Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_matmul_cuda.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:07.453427] 2025-08-14T23:06:12.2372074Z 2025-08-14T23:06:12.2372997Z test_matmul_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_matmul_cuda_1.1_f63f791276cb9872_.log 2025-08-14T23:06:12.2373691Z Running 0 items in this shard: 2025-08-14T23:06:12.2373906Z 2025-08-14T23:06:17.1568384Z Running test_weak 1/1 ... [2025-08-14 23:06:17.156553] 2025-08-14T23:06:17.1568988Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:17.1576461Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_weak.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:17.157149] 2025-08-14T23:06:26.0791818Z 2025-08-14T23:06:26.0792711Z test_weak 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_weak_1.1_54e761adea3e11e9_.log 2025-08-14T23:06:26.0804276Z Running 39 items in this shard: test/test_weak.py::WeakTest::test_make_weak_keyed_dict_from_dict, test/test_weak.py::WeakTest::test_make_weak_keyed_dict_from_weak_keyed_dict, test/test_weak.py::WeakTest::test_make_weak_keyed_dict_repr, test/test_weak.py::WeakTest::test_threaded_weak_key_dict_copy, test/test_weak.py::WeakTest::test_threaded_weak_key_dict_deepcopy, test/test_weak.py::WeakTest::test_weak_keyed_bad_delitem, test/test_weak.py::WeakTest::test_weak_keyed_delitem, test/test_weak.py::WeakTest::test_weak_keyed_dict_popitem, test/test_weak.py::WeakTest::test_weak_keyed_dict_setdefault, test/test_weak.py::WeakTest::test_weak_keyed_dict_update, test/test_weak.py::WeakTest::test_weak_keyed_union_operators, test/test_weak.py::WeakKeyDictionaryTestCase::test_bool, test/test_weak.py::WeakKeyDictionaryTestCase::test_constructor, test/test_weak.py::WeakKeyDictionaryTestCase::test_get, test/test_weak.py::WeakKeyDictionaryTestCase::test_getitem, test/test_weak.py::WeakKeyDictionaryTestCase::test_items, test/test_weak.py::WeakKeyDictionaryTestCase::test_keys, test/test_weak.py::WeakKeyDictionaryTestCase::test_len, test/test_weak.py::WeakKeyDictionaryTestCase::test_pop, test/test_weak.py::WeakKeyDictionaryTestCase::test_popitem, test/test_weak.py::WeakKeyDictionaryTestCase::test_read, test/test_weak.py::WeakKeyDictionaryTestCase::test_setdefault, test/test_weak.py::WeakKeyDictionaryTestCase::test_update, test/test_weak.py::WeakKeyDictionaryTestCase::test_values, test/test_weak.py::WeakKeyDictionaryTestCase::test_write, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_bool, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_constructor, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_get, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_getitem, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_items, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_keys, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_len, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_pop, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_popitem, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_read, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_setdefault, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_update, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_values, test/test_weak.py::WeakKeyDictionaryScriptObjectTestCase::test_write 2025-08-14T23:06:26.0814280Z 2025-08-14T23:06:31.0635551Z Running functorch/test_logging 1/1 ... [2025-08-14 23:06:31.063236] 2025-08-14T23:06:31.0636031Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:31.0641867Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_logging.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:31.063236] 2025-08-14T23:06:36.4692688Z 2025-08-14T23:06:36.4693648Z functorch/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_logging_1.1_8a405a0b86fa57b9_.log 2025-08-14T23:06:36.4695099Z Running 1 items in this shard: test/functorch/test_logging.py::TestAOTLogging::test_logging 2025-08-14T23:06:36.4695587Z 2025-08-14T23:06:41.8936655Z Running test_logging 1/1 ... [2025-08-14 23:06:41.893437] 2025-08-14T23:06:41.8937783Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:41.8946438Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_logging.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:41.894048] 2025-08-14T23:06:49.1232388Z 2025-08-14T23:06:49.1233344Z test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_logging_1.1_d920b81127946a95_.log 2025-08-14T23:06:49.1234559Z Running 1 items in this shard: test/test_logging.py::LoggingTest::testApiUsage 2025-08-14T23:06:49.1236290Z 2025-08-14T23:06:54.0008781Z Running test_out_dtype_op 1/1 ... [2025-08-14 23:06:53.997435] 2025-08-14T23:06:54.0009231Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:06:54.0014899Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_out_dtype_op.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:06:53.997435] 2025-08-14T23:07:08.6547117Z 2025-08-14T23:07:08.6548638Z test_out_dtype_op 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_out_dtype_op_1.1_8ed525d85c18196e_.log 2025-08-14T23:07:08.6555171Z Running 12 items in this shard: test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_dynamo, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_inductor_decomp, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_inductor_decomp_trace, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_int_mm_default_trace, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_make_fx, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_mm_numerical, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_mul_scalar_numerical, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_no_autograd, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_non_functional, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_non_op_overload, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_op_functional, test/test_out_dtype_op.py::TestOutDtypeOp::test_out_dtype_wrong_output 2025-08-14T23:07:08.6561197Z 2025-08-14T23:07:15.4275287Z Running test_complex 1/1 ... [2025-08-14 23:07:15.423177] 2025-08-14T23:07:15.4275956Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:07:15.4284481Z 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-08-14 23:07:15.423177] 2025-08-14T23:07:21.3572811Z 2025-08-14T23:07:21.3573675Z test_complex 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_complex_1.1_91bdd0f63039ae1e_.log 2025-08-14T23:07:21.3579487Z 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-08-14T23:07:21.3584213Z 2025-08-14T23:07:26.8314210Z Running torch_np/numpy_tests/core/test_einsum 1/1 ... [2025-08-14 23:07:26.831076] 2025-08-14T23:07:26.8314807Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:07:26.8320892Z 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-08-14 23:07:26.831652] 2025-08-14T23:07:47.4264171Z 2025-08-14T23:07:47.4265371Z 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_32fd518f2a05eb25_.log 2025-08-14T23:07:47.4284816Z 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-08-14T23:07:47.4301455Z 2025-08-14T23:07:52.4081332Z Running test_ops_jit 1/3 ... [2025-08-14 23:07:52.406881] 2025-08-14T23:07:52.4081807Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:07:52.4088048Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'not serial', '--shard-id=1', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:07:52.406881] 2025-08-14T23:08:53.6091143Z 2025-08-14T23:08:53.6092659Z test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_binary_ufuncs_1.1_279c144ab6763da4_.log 2025-08-14T23:08:54.1814185Z 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_passing_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cuda_complex_extremal_passing_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-08-14T23:08:54.9502707Z 2025-08-14T23:08:59.3328473Z Running test_ops_gradients 2/2 ... [2025-08-14 23:08:59.332482] 2025-08-14T23:08:59.3329212Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:08:59.3334797Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:08:59.333076] 2025-08-14T23:14:36.6030713Z 2025-08-14T23:14:36.6039737Z test_ops_jit 1/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_1.3_74628f9dcb8fe7d6_.log 2025-08-14T23:14:36.6157002Z Running 363 items in this shard: test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_abs_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_atan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_atanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_clamp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_div_no_rounding_mode_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_i0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_log1p_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_logit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_matrix_exp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_decimals_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_tanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rdiv___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmatmul___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmul___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rpow___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rpow___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rsub___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rsub___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__batch_norm_with_update_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_abs_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_add_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcdiv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_alias_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_all_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_angle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argsort_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argwhere_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argwhere_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_3d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_baddbmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bfloat16_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bfloat16_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_block_diag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_to_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bucketize_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_byte_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cartesian_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ceil_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cfloat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chalf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_char_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clamp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clamp_min_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_column_stack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_combinations_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_physical_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_contiguous_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_corrcoef_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cos_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_count_nonzero_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cross_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cummax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cummin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumulative_trapezoid_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_embed_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagflat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diff_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_digamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dist_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_floor_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_double_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_einsum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eq_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_equal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erfinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_as_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_as_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exponential_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eye_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eye_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftshift_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftshift_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftshift_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_rfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flatten_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flatten_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flip_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flip_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fliplr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flipud_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_frac_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gradient_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_grid_sampler_2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_histc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hsplit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hypot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_i0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_add_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_select_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isfinite_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isinf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isinf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isnan_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isreal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_2inputs_2outputs_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_unary_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ldexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lerp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lerp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cross_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_det_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_diagonal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eig_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvalsh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_multi_dot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_multi_dot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_hermitian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_singular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_qr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_triangular_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svd_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorsolve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_tensor_overload_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logaddexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logdet_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_and_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_not_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_or_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_xor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_xor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_tensor_overload_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_unpack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mH_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mT_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_argmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumprod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumprod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumsum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_fill_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_log_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_logsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_prod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_select_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_softmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_std_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matmul_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matrix_exp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_pool2d_with_indices_backward_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_reduction_with_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_variadic_tensors_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_min_reduction_no_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_min_reduction_with_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_msort_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mul_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_multinomial_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nanmedian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nansum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_batch_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ne_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_neg_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_strided_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_full_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_ones_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_ones_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nextafter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_batch_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_bilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_celu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_channel_shuffle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv3d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_cosine_similarity_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_cross_entropy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_embedding_bag_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_gelu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardtanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_huber_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_area_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_kl_div_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_l1_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_layer_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_linear_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_local_response_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_logsigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_mse_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_nll_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_normalize_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_circular_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_constant_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_constant_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_reflect_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pairwise_distance_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pairwise_distance_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_relu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rrelu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_silu_complex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softshrink_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softsign_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_threshold_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_unfold_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_upsample_bilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_upsample_nearest_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_fro_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_number_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ormqr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_outer_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_outer_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_put_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_qr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rand_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randint_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_real_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_renorm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_as_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_as_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize__cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_conj_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_roll_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rot90_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scalar_tensor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_add_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_add_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_select_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sgn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sign_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_exponential_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_kaiser_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signbit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sin_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sparse_sampled_addmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_j1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_t_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_w_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_hermite_polynomial_he_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_i0e_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_laguerre_polynomial_l_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_log_ndtr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_k0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_zeta_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sub_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_lowrank_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tan_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensor_split_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trace_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapezoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triangular_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triangular_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triu_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_uniform_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unique_consecutive_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_chunk_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_split_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_complex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_where_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zero__cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_like_cpu_complex64 2025-08-14T23:14:36.6274102Z 2025-08-14T23:14:41.7595387Z Running test_fx_reinplace_pass 1/1 ... [2025-08-14 23:14:41.758981] 2025-08-14T23:14:41.7595950Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:14:41.7602317Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_reinplace_pass.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:14:41.759570] 2025-08-14T23:14:47.1538752Z 2025-08-14T23:14:47.1540086Z test_fx_reinplace_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_reinplace_pass_1.1_8769f6eeaecdf571_.log 2025-08-14T23:14:47.1548731Z Running 12 items in this shard: test/test_fx_reinplace_pass.py::TestReinplacePass::test_out_node_updated, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_basic, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_different_metadata, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_index_mutation, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_overlapping_memory, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_op, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice_with_different_view_op_invalid, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice_with_different_view_op_invalid2, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice_with_different_view_op_valid, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_sym_input, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_with_view 2025-08-14T23:14:47.1556650Z 2025-08-14T23:14:53.1661634Z Running nn/test_multihead_attention 1/1 ... [2025-08-14 23:14:53.152982] 2025-08-14T23:14:53.1662498Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:14:53.1673266Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_multihead_attention.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:14:53.152982] 2025-08-14T23:15:06.7504055Z 2025-08-14T23:15:06.7505083Z nn/test_multihead_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_multihead_attention_1.1_ed030c30e2ce3b85_.log 2025-08-14T23:15:06.7517164Z Running 19 items in this shard: test/nn/test_multihead_attention.py::TestMultiheadAttentionNN::test_multihead_attention_average_attn_weights_False, test/nn/test_multihead_attention.py::TestMultiheadAttentionNN::test_multihead_attention_average_attn_weights_True, test/nn/test_multihead_attention.py::TestMultiheadAttentionNN::test_multihead_attn_3d_attn_mask, test/nn/test_multihead_attention.py::TestMultiheadAttentionNN::test_multihead_attn_fast_path_invalid_shape, test/nn/test_multihead_attention.py::TestMultiheadAttentionNN::test_multihead_attn_invalid_shape, test/nn/test_multihead_attention.py::TestMultiheadAttentionNN::test_multihead_attn_nested_tensor_outside_fast_path, test/nn/test_multihead_attention.py::TestMultiheadAttentionNN::test_multihead_attn_no_bias, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attention_dtype_batch_first_cpu_float16, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attention_dtype_batch_first_cpu_float32, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attention_dtype_batch_first_cpu_float64, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attention_dtype_cpu_float16, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attention_dtype_cpu_float32, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attention_dtype_cpu_float64, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attn_fast_path_query_and_bias_have_different_dtypes_cpu_float64, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attn_fast_path_small_test_cpu_float64, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attn_in_proj_bias_none_cpu_float64, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_attn_in_proj_weight_none_cpu_float64, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_self_attn_two_masks_fast_path_cpu, test/nn/test_multihead_attention.py::TestMultiheadAttentionNNDeviceTypeCPU::test_multihead_self_attn_two_masks_fast_path_mock_cpu 2025-08-14T23:15:06.7526798Z 2025-08-14T23:15:12.2176273Z Running functorch/test_aot_joint_with_descriptors 1/1 ... [2025-08-14 23:15:12.214711] 2025-08-14T23:15:12.2176909Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:12.2182638Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aot_joint_with_descriptors.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:15:12.214711] 2025-08-14T23:15:26.7700909Z 2025-08-14T23:15:26.7702834Z functorch/test_aot_joint_with_descriptors 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aot_joint_with_descriptors_1.1_8359d1e52c329375_.log 2025-08-14T23:15:26.7712771Z Running 10 items in this shard: test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_conv_bn_module, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_export_and_compile, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_fx_utils_conv_bn_module, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_fx_utils_multiple_outputs, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_fx_utils_node_consistency, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_fx_utils_simple_linear, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_in_out_specs, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_module_with_kwargs, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_multiple_outputs_module, test/functorch/test_aot_joint_with_descriptors.py::TestAOTJointWithDescriptors::test_simple_linear_module 2025-08-14T23:15:26.7722012Z 2025-08-14T23:15:31.9452289Z Running test_pruning_op 1/1 ... [2025-08-14 23:15:31.942097] 2025-08-14T23:15:31.9452784Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:31.9458737Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_pruning_op.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:15:31.942097] 2025-08-14T23:15:37.1335357Z 2025-08-14T23:15:37.1336432Z test_pruning_op 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_pruning_op_1.1_f9042b4fd92fdc87_.log 2025-08-14T23:15:37.1338897Z Running 2 items in this shard: test/test_pruning_op.py::PruningOpTest::test_rowwise_prune_op_32bit_indices, test/test_pruning_op.py::PruningOpTest::test_rowwise_prune_op_64bit_indices 2025-08-14T23:15:37.1339617Z 2025-08-14T23:15:42.1581358Z Running lazy/test_functionalization 1/1 ... [2025-08-14 23:15:42.157690] 2025-08-14T23:15:42.1581872Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:42.1587692Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_functionalization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:15:42.158280] 2025-08-14T23:15:46.8874092Z 2025-08-14T23:15:46.8875237Z lazy/test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_functionalization_1.1_c92bcf4e6d202c84_.log 2025-08-14T23:15:46.8876785Z Running 2 items in this shard: test/lazy/test_functionalization.py::LazyFuncionalizationTest::test_data_assign, test/lazy/test_functionalization.py::LazyFuncionalizationTest::test_lazy_init_with_view 2025-08-14T23:15:46.8877628Z 2025-08-14T23:15:48.6724757Z 2025-08-14T23:15:48.6725839Z test_decomp 15/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_15.17_2ac6600ca50769d4_.log 2025-08-14T23:15:48.6879682Z Running 511 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__batch_norm_with_update_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_shapes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_uint16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hypot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_float64, 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_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_float32, 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_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_unpack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cross_entropy_cpu_float16, 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_hardtanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_bfloat16, 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_replicate_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rrelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex128, 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_randint_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hann_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_lowrank_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__batch_norm_with_update_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__native_batch_norm_legit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_index_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_hardswish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exp2_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_int16, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_logsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float16, 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_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_train_mode_cpu_float64 2025-08-14T23:15:48.7023321Z 2025-08-14T23:15:51.9251441Z Running functorch/test_ac 1/1 ... [2025-08-14 23:15:51.916932] 2025-08-14T23:15:51.9251978Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:51.9257894Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:15:51.916932] 2025-08-14T23:15:53.8017674Z Running test_ops_fwd_gradients 1/2 ... [2025-08-14 23:15:53.788108] 2025-08-14T23:15:53.8018473Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:15:53.8026514Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:15:53.788108] 2025-08-14T23:15:55.6644806Z 2025-08-14T23:15:55.6645729Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_fc42a7cfa3657cb6_.log 2025-08-14T23:15:55.7640191Z Running 2657 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_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_while_loop_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_like_cpu_float64 2025-08-14T23:15:55.8581453Z 2025-08-14T23:16:00.7156498Z Running test_ops_fwd_gradients 2/2 ... [2025-08-14 23:16:00.713425] 2025-08-14T23:16:00.7156978Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:16:00.7162958Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:16:00.713425] 2025-08-14T23:16:01.9942620Z 2025-08-14T23:16:01.9943965Z functorch/test_ac 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_1.1_9c8f2531e372d2e8_.log 2025-08-14T23:16:01.9944587Z 2025-08-14T23:16:07.2440861Z Running test_ops 7/9 ... [2025-08-14 23:16:07.243764] 2025-08-14T23:16:07.2441289Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:16:07.2447451Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=7', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:16:07.244363] 2025-08-14T23:22:10.5986848Z 2025-08-14T23:22:10.6032169Z test_ops_fwd_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_1.2_1543829bbeb52c5e_.log 2025-08-14T23:22:10.7171436Z Running 1603 items in this shard: test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___radd___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___radd___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rdiv___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_abs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_aminmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_arange_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_column_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_combinations_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_constant_pad_nd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumulative_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_deg2rad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_equal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ihfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ge_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_int_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isnan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_item_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kron_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kron_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kthvalue_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ldexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lgamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_multi_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vector_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log1p_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logcumsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mH_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_movedim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanquantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_selu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_static_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_fro_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_nuc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_in_place_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ormqr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rand_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_renorm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_neg_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_short_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_entr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_log_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_zeta_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_topk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_true_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unflatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_H_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmatmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rpow___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__softmax_backward_data_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__upsample_bilinear2d_aa_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_all_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_partial_views_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bfloat16_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bool_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_byte_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cartesian_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cfloat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clone_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_digamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_no_rounding_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_trunc_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_permuted_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gather_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geqrf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geqrf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_igamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_inner_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isneginf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_item_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_householder_product_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_slogdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svdvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vecdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vecdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logcumsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_not_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_xor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matrix_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_variadic_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardswish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_constant_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_prelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softsign_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_tanhshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_inf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_inf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_outer_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rad2deg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ravel_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_short_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_mm_reduce_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_sampled_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_multiple_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensor_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensordot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_sparse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapz_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_true_divide_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_uniform_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_xlogy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_T_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmod___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rpow___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rsub___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__batch_norm_with_update_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__chunk_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__native_batch_norm_legit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_abs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_byte_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cdouble_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ceil_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chalf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clone_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_contiguous_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_corrcoef_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cov_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_frac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_frexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hypot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isfinite_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isnan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isreal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cond_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_det_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vander_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vector_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_or_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_list_of_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_msort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_multinomial_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cosine_similarity_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_elu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardtanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_mish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pairwise_distance_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_silu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softplus_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_in_place_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pinverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randint_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_real_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reciprocal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize_as__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scalar_tensor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_blackman_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_hann_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_airy_ai_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_j1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_hermite_polynomial_he_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_list_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_along_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensordot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vstack_cpu_complex128 2025-08-14T23:22:10.8303721Z 2025-08-14T23:22:16.0156001Z Running test_ops 8/9 ... [2025-08-14 23:22:16.015094] 2025-08-14T23:22:16.0156752Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:22:16.0163380Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=8', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:22:16.015686] 2025-08-14T23:24:23.9846827Z 2025-08-14T23:24:23.9848350Z test_ops_fwd_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_2.2_4a5617f0e81cda02_.log 2025-08-14T23:24:24.1018323Z Running 1589 items in this shard: test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_H_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_T_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmatmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmod___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rpow___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rpow___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rsub___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__batch_norm_with_update_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__chunk_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__chunk_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__native_batch_norm_legit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__segment_reduce_lengths_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__softmax_backward_data_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_abs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_decomposed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_all_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_allclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_angle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_angle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_partial_views_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atan2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bfloat16_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bool_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_byte_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_byte_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cartesian_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdouble_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ceil_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cfloat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chalf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clone_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clone_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_contiguous_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_corrcoef_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cov_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cummin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagflat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_digamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_floor_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_no_rounding_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_trunc_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_double_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_permuted_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expm1_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fliplr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flipud_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_frac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_frexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gather_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_geqrf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_geqrf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hash_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hypot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_igamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_inner_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_int_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isfinite_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isnan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isneginf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isreal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_item_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lerp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cond_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cond_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_det_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_det_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_householder_product_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_slogdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svdvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svdvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorsolve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vander_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vecdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vecdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vector_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logcumsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_and_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_not_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_or_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_xor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_long_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mT_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matrix_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_maximum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_minimum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_movedim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_msort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_multinomial_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nan_to_num_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_elu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_gelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardswish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_linear_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_mish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_prelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_silu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softplus_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softsign_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_threshold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_inf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_inf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_in_place_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_number_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_outer_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pinverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_positive_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rad2deg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randint_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ravel_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_real_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reciprocal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_renorm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize_as__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize_as__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_roll_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scalar_tensor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sgn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_short_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_bartlett_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_blackman_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_hann_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_kaiser_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_slice_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_slice_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sparse_mm_reduce_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_airy_ai_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_j1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_list_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_square_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_square_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_multiple_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_to_size_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_along_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensor_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensor_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensordot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensordot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tile_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_sparse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapz_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tril_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_true_divide_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_uniform_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_where_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_xlogy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_T_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___radd___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___radd___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rdiv___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmod___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rpow___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rsub___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__batch_norm_with_update_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__chunk_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__chunk_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__native_batch_norm_legit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__segment_reduce_lengths_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_abs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_abs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_decomposed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_allclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_aminmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_angle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_angle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_arange_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atan2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_byte_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdouble_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ceil_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chalf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clone_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_column_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_combinations_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_constant_pad_nd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_contiguous_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_corrcoef_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cov_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cummin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumulative_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_deg2rad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagflat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_floor_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_double_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_equal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expm1_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fliplr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flipud_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fmod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_frac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_frexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ge_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hash_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_histc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hypot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_int_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_int_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isfinite_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isnan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isnan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isreal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_item_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_kron_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_kron_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_kthvalue_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ldexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lerp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lgamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cond_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cond_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_det_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_det_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_multi_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_triangular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svdvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorsolve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vander_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vector_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vector_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log1p_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logcumsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_and_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_or_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_long_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mH_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mT_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_maximum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_list_of_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_min_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_min_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_minimum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_movedim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_movedim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_msort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_multinomial_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nan_to_num_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanquantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_cosine_similarity_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_ctc_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_elu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_gelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardtanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_area_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_linear_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_logsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_mish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_circular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_constant_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pairwise_distance_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_selu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_silu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softplus_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_tanhshrink_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_threshold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_static_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_fro_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_nuc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_in_place_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_in_place_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_number_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ormqr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pinverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_4_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_positive_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rand_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randint_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_real_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reciprocal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_renorm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_renorm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize_as__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize_as__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_roll_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_decimals_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_decimals_neg_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scalar_tensor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sgn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_short_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_bartlett_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_blackman_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_hann_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_kaiser_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_airy_ai_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_j1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_entr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_hermite_polynomial_h_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_hermite_polynomial_he_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_log_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_spherical_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_zeta_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_list_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_square_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_square_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_to_size_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_along_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensor_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensordot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tile_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_topk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tril_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_true_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unflatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_where_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_H_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___radd___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___radd___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rdiv___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmatmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rpow___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__chunk_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__segment_reduce_lengths_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__softmax_backward_data_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__upsample_bilinear2d_aa_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_abs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_decomposed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_all_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_allclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_aminmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_angle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_angle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_arange_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_partial_views_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bfloat16_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bool_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_byte_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cartesian_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cfloat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clamp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clone_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_column_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_combinations_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_constant_pad_nd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cummin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumulative_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_deg2rad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagflat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_digamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_floor_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_no_rounding_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_trunc_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_double_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_permuted_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_equal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expm1_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fliplr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flipud_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fmod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gather_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ge_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_geqrf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_geqrf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hash_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_igamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_inner_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_int_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_int_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isnan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isneginf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_item_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_item_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_kron_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_kron_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_kthvalue_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ldexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lerp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lgamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cond_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_det_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_householder_product_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_multi_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_slogdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_triangular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svdvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svdvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorsolve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vecdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vecdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vector_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log1p_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logcumsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logcumsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_and_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_not_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_xor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_long_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mH_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mT_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matrix_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_maximum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_variadic_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_min_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_min_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_minimum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_movedim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_movedim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nan_to_num_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nanquantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_ctc_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_gelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardswish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_area_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_linear_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_logsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_circular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_constant_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_constant_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_prelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_selu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softsign_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_tanhshrink_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_tanhshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_threshold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_static_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_fro_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_inf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_inf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_nuc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_in_place_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_number_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ormqr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_outer_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_4_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_positive_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rad2deg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rand_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ravel_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_renorm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_renorm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize_as__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_roll_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_neg_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sgn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_short_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_short_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_bartlett_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_kaiser_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_slice_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_slice_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sparse_mm_reduce_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sparse_sampled_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_entr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_hermite_polynomial_h_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_log_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_spherical_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_zeta_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_square_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_square_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_multiple_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_to_size_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensor_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensor_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensordot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tile_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_sparse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_topk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapz_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tril_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_true_divide_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_true_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unflatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_uniform_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_where_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_xlogy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_like_cpu_float64 2025-08-14T23:24:24.2070659Z 2025-08-14T23:24:30.3644017Z Running optim/test_lrscheduler 1/1 ... [2025-08-14 23:24:30.357831] 2025-08-14T23:24:30.3644676Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:24:30.3653278Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_lrscheduler.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:24:30.357831] 2025-08-14T23:24:36.1446596Z 2025-08-14T23:24:36.1447777Z optim/test_lrscheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_lrscheduler_1.1_756d5c69376d1779_.log 2025-08-14T23:24:36.1451685Z 2025-08-14T23:24:43.2588753Z Running test_numba_integration 1/1 ... [2025-08-14 23:24:43.258396] 2025-08-14T23:24:43.2589635Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:24:43.2596488Z 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-08-14 23:24:43.259004] 2025-08-14T23:24:49.4646917Z 2025-08-14T23:24:49.4648417Z test_numba_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numba_integration_1.1_f8b18d38e49e9a03_.log 2025-08-14T23:24:49.4654625Z 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-08-14T23:24:49.4659800Z 2025-08-14T23:24:55.1174547Z Running torch_np/numpy_tests/core/test_numeric 1/1 ... [2025-08-14 23:24:55.109264] 2025-08-14T23:24:55.1175112Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:24:55.1181395Z 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-08-14 23:24:55.109264] 2025-08-14T23:25:06.8449391Z 2025-08-14T23:25:06.8451075Z 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_8fcf5fab9d788dee_.log 2025-08-14T23:25:06.8634736Z 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-08-14T23:25:06.8799360Z 2025-08-14T23:25:13.3353381Z Running test_sympy_utils 1/1 ... [2025-08-14 23:25:13.332846] 2025-08-14T23:25:13.3354074Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:25:13.3364579Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sympy_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:25:13.332846] 2025-08-14T23:25:16.3014679Z 2025-08-14T23:25:16.3016312Z test_ops 7/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_7.9_482c64c813f3e479_.log 2025-08-14T23:25:16.4419658Z Running 3770 items in this shard: test/test_ops.py::TestSelfKwarg::test_self_kwargs, test/test_ops.py::TestCommonCPU::test_compare_cpu_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_as_strided_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_char_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_contiguous_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_nonzero_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_nonzero_static_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_norm_inf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_ones_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_permute_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_positive_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_slice_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_squeeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes__batch_norm_with_update_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_bool_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_chalf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_asin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atan2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_dot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_expm1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_i0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_le_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pdist_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_positive_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ravel_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sign_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tril_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cholesky_inverse_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_conj_physical_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fmod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_select_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isnan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_kron_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ldexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_eigh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_ldl_factor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_factor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_vander_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mT_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_median_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_normalize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_softmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_matmul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_full_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv_transpose1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_embedding_bag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_feature_alpha_dropout_with_train_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_gaussian_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardswish_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_kl_div_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_linear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool1d_grad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_replicate_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_scaled_dot_product_attention_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_normal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_roll_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_round_decimals_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_nuttall_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_y0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_polygamma_special_polygamma_n_0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_square_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_std_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_trunc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unsqueeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_vstack_cpu, test/test_ops.py::TestCommonCPU::test_errors___rdiv___cpu, test/test_ops.py::TestCommonCPU::test_errors___rmul___cpu, test/test_ops.py::TestCommonCPU::test_errors_bernoulli_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_errors_cov_cpu, test/test_ops.py::TestCommonCPU::test_errors_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_errors_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_errors_dot_cpu, test/test_ops.py::TestCommonCPU::test_errors_exponential_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmod_cpu, test/test_ops.py::TestCommonCPU::test_errors_igamma_cpu, test/test_ops.py::TestCommonCPU::test_errors_lcm_cpu, test/test_ops.py::TestCommonCPU::test_errors_masked_scatter_cpu, test/test_ops.py::TestCommonCPU::test_errors_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_general_cosine_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout4_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout3_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_errors_sub_cpu, test/test_ops.py::TestCommonCPU::test_errors_vstack_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_H_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rsub___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__chunk_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmm_decomposed_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmv_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cov_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_double_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_msort_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mv_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sgn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_y1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unique_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___radd___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___rdiv___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___rmul___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_clamp_max_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_clone_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_combinations_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cummin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diag_embed_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diff_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_double_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_eq_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isneginf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_2inputs_2outputs_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logical_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_mT_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_mul_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nonzero_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_reduce_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_modified_bessel_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_with_sizes_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsqueeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_view_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_H_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmul___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_allclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_angle_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_baddbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_inverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagflat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diff_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ge_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_inner_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_4inputs_with_extra_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ldexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_grad_oriented_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logcumsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matrix_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_cosine_embedding_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_put_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sgn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_y1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_v_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_h_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tile_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tile_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unique_consecutive_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_addbmm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_cat_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diff_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_equal_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_flatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorsolve_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_searchsorted_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_nuttall_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_transpose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_out___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_outer_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_split_with_sizes_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tensordot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_hann_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning__batch_norm_with_update_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__native_batch_norm_legit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_acos_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_addcmul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_addr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_any_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clone_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_dot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ifftshift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flip_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_hstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_maximum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_neg_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pdist_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_normal__in_place_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_round_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sinc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_multigammaln_mvlgamma_p_5_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_split_with_sizes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unsqueeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_any_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_asinh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atleast_2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bincount_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cosh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cov_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_dist_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_equal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_eye_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_flip_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_put_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_select_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_inner_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isnan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_binary_return_by_ref_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_kron_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_eigvalsh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_householder_product_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_pinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logcumsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_amin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_median_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_median_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_movedim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nansum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_narrow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_new_zeros_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_nearest_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_mish_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_multi_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randint_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rsub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_add_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_select_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_blackman_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_kaiser_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_nuttall_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sparse_mm_reduce_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sparse_sampled_addmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_bessel_y1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_list_args_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_with_sizes_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_svd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_to_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_topk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_trapz_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_var_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_var_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_zero__cpu, test/test_ops.py::TestCommonCPU::test_out_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs__conversions_complex_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs__conversions_polar_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_add_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_ge_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_gt_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_le_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_maximum_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_normal__in_place_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_remainder_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_reshape_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_vdot_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_where_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hypot_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svd_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_celu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_gelu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardshrink_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hinge_embedding_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_leaky_relu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_selu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_number_mean_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_left_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svdvals_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_gelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_selu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softplus_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softplus_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cauchy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hypot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lcm_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svdvals_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_celu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hinge_embedding_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cartesian_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagflat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_permuted_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_put_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_inner_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_unary_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ldexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_linear_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_negative_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softsign_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_inf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_normal_in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zeros_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zeros_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_hfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nansum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tensor_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_where_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ihfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_pinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ne_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resize_as__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_zeros_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_any_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_hash_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_le_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_hann_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unflatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rsub___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_any_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_histogramdd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_transpose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bool_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_eye_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_histc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_hsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_not_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nan_to_num_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_zeros_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___rmatmul___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_cdouble_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_double_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_half_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_abs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_addcmul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_allclose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_as_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_exp2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_hstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log10_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log1p_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logical_and_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logsumexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_mul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_rot90_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sinh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sub_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_t_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_vdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_where_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_acos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addcdiv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addmv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_angle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atleast_1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cdouble_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cfloat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_conj_physical_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumsum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diag_embed_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diagonal_scatter_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_eye_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_irfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_flipud_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_gradient_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_inner_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_item_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ldexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_householder_product_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lu_factor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_vander_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_not_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_cumsum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_unfold_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_normal_in_place_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_pca_lowrank_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_permute_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_put_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_repeat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_scalar_tensor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sinc_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_multiple_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_take_along_dim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_to_sparse_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unsafe_chunk_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unsafe_split_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rpow___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_allclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_as_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_as_strided_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atanh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_block_diag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_count_nonzero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diag_embed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_exp2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_fftshift_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_hfftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_hstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isfinite_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_istft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logspace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_neg_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_permute_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_randn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_renorm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_squeeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_tan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_trace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unbind_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_where_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_any_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cholesky_inverse_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_conj_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_constant_pad_nd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagflat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagonal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_empty_permuted_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_equal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_exp2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_hstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_unary_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_ldl_factor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_vecdot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logical_xor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lu_unpack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_cumsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_new_full_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pad_reflect_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_repeat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resize__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_roll_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_std_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_t_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_triu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_uniform_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unsafe_chunk_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmul___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_long_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_abs_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_addcdiv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_addcmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_asin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_copysign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_exp2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_rfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_geometric_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isinf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isreal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_cross_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_masked_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_maximum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_full_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_renorm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_reshape_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rot90_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_bessel_j1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_erfcx_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sum_to_size_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_tensor_split_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_transpose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unsqueeze_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_acos_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addcdiv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_as_strided_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_byte_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cartesian_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cov_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diff_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_div_floor_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_hfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_irfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_rfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_float_power_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_floor_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_heaviside_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_put_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isnan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_kron_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lerp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cholesky_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cholesky_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_ldl_factor_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_ldl_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lstsq_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_vander_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_and_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_not_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_long_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_min_reduction_with_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_movedim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_multinomial_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_narrow_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_celu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_cosine_similarity_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_embedding_bag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_silu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_unfold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_repeat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_reshape_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resize__cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resolve_conj_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_roll_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rsub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_short_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_w_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_i0e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_squeeze_multiple_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_take_along_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_take_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_trace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tril_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unbind_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unflatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_as_complex_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_char_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_short_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_abs_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_addcmul__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_alias_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_asin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atleast_2d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_broadcast_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clamp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_conj_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cos__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cosh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_div__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_dstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_equal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_expand_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_fftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_fftshift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_hfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ihfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_irfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_flip_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fliplr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_igammac_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isnan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_linspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log1p__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_xor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_xor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logsumexp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_narrow_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ne_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nextafter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_dropout_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_group_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_layer_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_threshold__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_threshold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_real_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_reshape_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rpow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rtruediv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sinh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_ndtr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_ndtri_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_xlog1py_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sqrt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_square__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_t_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tensor_split_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_triu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_triu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_var_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_as_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_vstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_acos__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_acosh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_add__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_left_shift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_or__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_block_diag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_broadcast_tensors_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bucketize_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_chunk_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_max_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_min_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_column_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cumsum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diagonal_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diagonal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_div__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_empty_permuted_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_eq__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expand_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_fftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ifft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_flip_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fliplr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_float_power__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_full_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_gt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_heaviside__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_igammac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_imag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lerp__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lerp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_and__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_xor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mul_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_narrow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_native_group_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ne__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_empty_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_dropout_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_gelu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_pdist_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_selu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_softmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_pow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_randn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_reshape_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sgn__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sgn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sin__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_i1e_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sum_to_size_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_transpose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_triu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_triu_indices_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unfold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_xlogy_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__unsafe_masked_index_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argsort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argwhere_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rand___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rxor___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__chunk_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_argsort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_rfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_floor_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_heaviside_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_histc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_permute_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resolve_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_zeta_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tril_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_not_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_broadcast_shapes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bucketize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_byte_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cauchy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_copysign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nanmedian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_slice_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_slice_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_squeeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_to_sparse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_solve_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nan_to_num_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_ndtri_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_vsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ge_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_histogram_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isnan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_long_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_minimum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nonzero_static_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_reciprocal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_short_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_zeta_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_uniform_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bool_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lcm_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logical_not_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nonzero_static_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rand_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_short_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_int16, test/test_ops.py::TestTagsCPU::test_tags___getitem___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_acos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_allclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atleast_1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atleast_3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_bucketize_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clamp_max_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_column_stack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_deg2rad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_dstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_empty_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_irfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_heaviside_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_item_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log_normal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_xor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_ones_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_reciprocal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_select_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_i1e_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_take_along_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tril_indices_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_true_divide_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addbmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_all_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_asin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atan2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atleast_2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_right_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_cat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cholesky_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clamp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clamp_max_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_corrcoef_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cosh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_erf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expand_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_hfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_irfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_rfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_gt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_half_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_reduce_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_reduce_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_select_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_diagonal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_inv_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_vecdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_not_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lu_unpack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_argmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_cumprod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_logaddexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_median_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_narrow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nextafter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_linear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_mish_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pdist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_relu6_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_norm_inf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_randint_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_bessel_y0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_t_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tril_indices_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_unflatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unfold_cpu_float32 2025-08-14T23:25:16.5570897Z 2025-08-14T23:25:21.9643043Z Running torch_np/test_indexing 1/1 ... [2025-08-14 23:25:21.963963] 2025-08-14T23:25:21.9643531Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:25:21.9651123Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_indexing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:25:21.964590] 2025-08-14T23:25:29.0498857Z 2025-08-14T23:25:29.0500385Z torch_np/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_indexing_1.1_54fcad29c63d74f7_.log 2025-08-14T23:25:29.0506828Z Running 5 items in this shard: test/torch_np/test_indexing.py::TestAdvancedIndexing::test_advanced_separation_patterns, test/torch_np/test_indexing.py::TestAdvancedIndexing::test_broadcast_and_numpy_compatibility, test/torch_np/test_indexing.py::TestAdvancedIndexing::test_comprehensive_indexing, test/torch_np/test_indexing.py::TestAdvancedIndexing::test_ellipsis, test/torch_np/test_indexing.py::TestAdvancedIndexing::test_special_index_types 2025-08-14T23:25:29.0510477Z 2025-08-14T23:25:34.5669106Z Running torch_np/numpy_tests/lib/test_function_base 1/1 ... [2025-08-14 23:25:34.560194] 2025-08-14T23:25:34.5670153Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:25:34.5676684Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_function_base.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:25:34.560194] 2025-08-14T23:25:43.7781937Z 2025-08-14T23:25:43.7783047Z torch_np/numpy_tests/lib/test_function_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_function_base_1.1_93e944bcb7b5b919_.log 2025-08-14T23:25:43.7980228Z Running 505 items in this shard: test/torch_np/numpy_tests/lib/test_function_base.py::TestRot90::test_axes, test/torch_np/numpy_tests/lib/test_function_base.py::TestRot90::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestRot90::test_rotation_axes, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_3d_swap_axis0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_3d_swap_axis1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_3d_swap_axis2, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_4d, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_axes, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_basic_lr, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_basic_ud, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_default_axis, test/torch_np/numpy_tests/lib/test_function_base.py::TestFlip::test_multiple_axes, test/torch_np/numpy_tests/lib/test_function_base.py::TestAny::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestAny::test_nd, test/torch_np/numpy_tests/lib/test_function_base.py::TestAll::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestAll::test_nd, test/torch_np/numpy_tests/lib/test_function_base.py::TestCopy::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestCopy::test_order, test/torch_np/numpy_tests/lib/test_function_base.py::TestAverage::test_average_class_without_dtype, test/torch_np/numpy_tests/lib/test_function_base.py::TestAverage::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestAverage::test_basic_keepdims_x0_axis0_expected_avg0_weights0_expected_wavg0_expected_wsum0, test/torch_np/numpy_tests/lib/test_function_base.py::TestAverage::test_basic_keepdims_x1_axis_0_expected_avg1_weights1_expected_wavg1_expected_wsum1, test/torch_np/numpy_tests/lib/test_function_base.py::TestAverage::test_returned, test/torch_np/numpy_tests/lib/test_function_base.py::TestAverage::test_upcasting, test/torch_np/numpy_tests/lib/test_function_base.py::TestAverage::test_weights, test/torch_np/numpy_tests/lib/test_function_base.py::TestSelect::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestSelect::test_broadcasting, test/torch_np/numpy_tests/lib/test_function_base.py::TestSelect::test_deprecated_empty, test/torch_np/numpy_tests/lib/test_function_base.py::TestSelect::test_many_arguments, test/torch_np/numpy_tests/lib/test_function_base.py::TestSelect::test_non_bool_deprecation, test/torch_np/numpy_tests/lib/test_function_base.py::TestSelect::test_return_dtype, test/torch_np/numpy_tests/lib/test_function_base.py::TestInsert::test_0d, test/torch_np/numpy_tests/lib/test_function_base.py::TestInsert::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestInsert::test_index_array_copied, test/torch_np/numpy_tests/lib/test_function_base.py::TestInsert::test_index_floats, test/torch_np/numpy_tests/lib/test_function_base.py::TestInsert::test_index_out_of_bounds_idx_-4, test/torch_np/numpy_tests/lib/test_function_base.py::TestInsert::test_index_out_of_bounds_idx_4, test/torch_np/numpy_tests/lib/test_function_base.py::TestInsert::test_multidim, test/torch_np/numpy_tests/lib/test_function_base.py::TestAmax::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestAmin::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestPtp::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestCumsum::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestProd::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestCumprod::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestDiff::test_append, test/torch_np/numpy_tests/lib/test_function_base.py::TestDiff::test_axis, test/torch_np/numpy_tests/lib/test_function_base.py::TestDiff::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestDiff::test_n, test/torch_np/numpy_tests/lib/test_function_base.py::TestDiff::test_nd, test/torch_np/numpy_tests/lib/test_function_base.py::TestDiff::test_prepend, test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_0d, test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_array_order_preserve, test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_fancy, test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_index_floats, test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_single, test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_single_item_array_[1], test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_single_item_array_array([1]), test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_single_item_array_non_int, test/torch_np/numpy_tests/lib/test_function_base.py::TestDelete::test_slices, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_args, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_badargs, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_f_decreasing_unsigned_int_f_dtype0, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_f_signed_int_big_jump_f_dtype0, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_f_signed_int_big_jump_f_dtype1, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_f_signed_int_big_jump_f_dtype2, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_f_signed_int_big_jump_f_dtype3, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_inexact_dtypes, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_second_order_accurate, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_spacing, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_specific_axes, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_values, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_x_decreasing_unsigned_x_dtype0, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_x_signed_int_big_jump_x_dtype0, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_x_signed_int_big_jump_x_dtype1, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_x_signed_int_big_jump_x_dtype2, test/torch_np/numpy_tests/lib/test_function_base.py::TestGradient::test_x_signed_int_big_jump_x_dtype3, test/torch_np/numpy_tests/lib/test_function_base.py::TestAngle::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_all_zero, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_leading_skip, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_list_to_list, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_no_trim, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_overflow_arr0, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_size_zero, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrimZeros::test_trailing_skip, test/torch_np/numpy_tests/lib/test_function_base.py::TestExtins::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestExtins::test_both, test/torch_np/numpy_tests/lib/test_function_base.py::TestExtins::test_place, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_casting_error, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_forward, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_large_integers_decreasing, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_large_integers_increasing, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_monotonic, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_random, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_reverse, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_right_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_right_open, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_right_open_random, test/torch_np/numpy_tests/lib/test_function_base.py::TestDigitize::test_right_open_reverse, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_B_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_B_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_B_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_b_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_b_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_b_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_d_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_d_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_d_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_e_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_e_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_e_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_f_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_f_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_f_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_h_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_h_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_h_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_i_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_i_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_i_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_l_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_l_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_bartlett_dtype_l_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_B_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_B_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_B_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_b_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_b_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_b_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_d_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_d_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_d_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_e_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_e_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_e_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_f_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_f_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_f_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_h_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_h_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_h_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_i_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_i_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_i_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_l_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_l_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_blackman_dtype_l_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_B_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_B_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_B_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_b_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_b_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_b_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_d_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_d_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_d_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_e_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_e_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_e_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_f_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_f_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_f_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_h_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_h_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_h_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_i_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_i_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_i_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_l_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_l_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hamming_dtype_l_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_B_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_B_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_B_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_b_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_b_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_b_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_d_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_d_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_d_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_e_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_e_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_e_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_f_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_f_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_f_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_h_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_h_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_h_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_i_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_i_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_i_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_l_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_l_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_hanning_dtype_l_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_B_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_B_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_B_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_b_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_b_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_b_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_d_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_d_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_d_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_e_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_e_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_e_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_f_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_f_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_f_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_h_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_h_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_h_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_i_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_i_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_i_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_l_M_0, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_l_M_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestFilterwindows::test_kaiser_dtype_l_M_10, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrapz::test_ndim, test/torch_np/numpy_tests/lib/test_function_base.py::TestTrapz::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestSinc::test_array_like, test/torch_np/numpy_tests/lib/test_function_base.py::TestSinc::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestUnique::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestUnique::test_simple_complex, test/torch_np/numpy_tests/lib/test_function_base.py::TestCheckFinite::test_dtype_order, test/torch_np/numpy_tests/lib/test_function_base.py::TestCheckFinite::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_bias, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_complex, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_corrcoef_dtype_test_type0, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_corrcoef_dtype_test_type1, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_corrcoef_dtype_test_type2, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_ddof, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_empty, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_extreme, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_non_array, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestCorrCoef::test_xy, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_1D_rowvar, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_1D_variance, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_aweights, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_complex, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_cov_dtype_test_type0, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_cov_dtype_test_type1, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_cov_dtype_test_type2, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_empty, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_fweights, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_unit_fweights_and_aweights, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_wrong_ddof, test/torch_np/numpy_tests/lib/test_function_base.py::TestCov::test_xy, test/torch_np/numpy_tests/lib/test_function_base.py::Test_I0::test_complex, test/torch_np/numpy_tests/lib/test_function_base.py::Test_I0::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestKaiser::test_int_beta, test/torch_np/numpy_tests/lib/test_function_base.py::TestKaiser::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestMsort::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_indexing, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_invalid_arguments, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_nd_indexing, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_nd_shape, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_nd_values, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_no_input, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_return_type, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_single_input, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_sparse, test/torch_np/numpy_tests/lib/test_function_base.py::TestMeshgrid::test_writeback, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_0d, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_0d_0d_condition, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_0d_comparison, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_default, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_multidimensional_extrafunc, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_scalar_domains_three_conditions, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestPiecewise::test_two_conditions, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_dtype_reference_leaks, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_empty, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_empty_with_minlength, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_error_not_1d_vals0, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_error_not_1d_vals_2, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_simple, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_simple2, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_simple_weight, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_simple_weight2, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_with_incorrect_minlength, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_with_minlength, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_with_minlength_and_weights, test/torch_np/numpy_tests/lib/test_function_base.py::TestBincount::test_with_minlength_smaller_than_maxvalue, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_complex_interp, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_exceptions, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_if_len_x_is_small, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_any_nan_complex-both, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_any_nan_complex-imag, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_any_nan_complex-real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_any_nan_real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_behavior_exact_x, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_f_complex-both, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_f_complex-imag, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_f_complex-real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_f_real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_x_complex-both, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_x_complex-imag, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_x_complex-real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_x_real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_xf_complex-both, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_xf_complex-imag, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_xf_complex-real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_half_inf_xf_real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_inf_complex-both, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_inf_complex-imag, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_inf_complex-real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_non_finite_inf_real, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_period, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_right_left_behavior, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_scalar_interpolation_point, test/torch_np/numpy_tests/lib/test_function_base.py::TestInterp::test_zero_dimensional_interpolation_point, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_2D, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_api, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_axis, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_complex, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_exception, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_extended_axis, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_extended_axis_invalid, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_fraction, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_2, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q1_axis0, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q1_axis2, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q1_axis3, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q1_axis4, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q1_axis_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q_7_axis0, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q_7_axis2, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q_7_axis3, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q_7_axis4, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_keepdims_out_q_7_axis_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_extrapolation, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype5_expected_dtype5_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype6_expected_dtype6_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype7_expected_dtype7_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_B_expected_dtype0_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_b_expected_dtype1_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_h_expected_dtype2_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_i_expected_dtype3_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_averaged_inverted_cdf_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_closest_observation_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_hazen_expected_27_5, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_interpolated_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_inverted_cdf_expected_20, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_linear_expected_29, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_median_unbiased_expected_27, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_normal_unbiased_expected_27_125, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_interpolation_input_dtype_l_expected_dtype4_method_weibull_expected_26, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_nan_1D_dtype_d, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_nan_1D_dtype_e, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_linear_nan_1D_dtype_f, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_B, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_b, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_d, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_e, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_f, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_h, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_i, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_lower_higher_dtype_l, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_B, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_b, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_d, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_e, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_f, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_h, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_i, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_midpoint_dtype_l, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nan_behavior, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nan_q, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_B, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_b, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_d, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_e, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_f, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_h, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_i, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_nearest_dtype_l, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_no_p_overwrite, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_out, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_out_nan, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_percentile_empty_dim, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_percentile_list, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_percentile_no_overwrite, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_percentile_out, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_percentile_overwrite, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_scalar_q, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_scalar_q_2, test/torch_np/numpy_tests/lib/test_function_base.py::TestPercentile::test_sequence, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_complex, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_correct_quantile_value, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_fraction, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_max_ulp, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_no_p_overwrite, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_hypo, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_averaged_inverted_cdf, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_closest_observation, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_hazen, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_higher, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_interpolated_inverted_cdf, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_inverted_cdf, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_linear, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_lower, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_median_unbiased, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_midpoint, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_nearest, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_normal_unbiased, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_monotonic_method_weibull, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_preserve_int_type_dtype_B, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_preserve_int_type_dtype_b, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_preserve_int_type_dtype_h, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_preserve_int_type_dtype_i, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_preserve_int_type_dtype_l, test/torch_np/numpy_tests/lib/test_function_base.py::TestQuantile::test_quantile_scalar_nan, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_array_like, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_axis_keyword, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_basic, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_basic_2, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_empty, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_extended_axis, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_extended_axis_invalid, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_keepdims, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_keepdims_2, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_keepdims_out_axis0, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_keepdims_out_axis2, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_keepdims_out_axis3, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_keepdims_out_axis4, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_keepdims_out_axis_1, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_nan_behavior, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_nan_behavior_2, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_nan_behavior_3, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_out, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_out_nan, test/torch_np/numpy_tests/lib/test_function_base.py::TestMedian::test_overwrite_keyword, test/torch_np/numpy_tests/lib/test_function_base.py::TestSortComplex::test_sort_complex, test/torch_np/numpy_tests/lib/test_function_base.py::TestSortComplex::test_sort_real_type_in_B_type_out_F, test/torch_np/numpy_tests/lib/test_function_base.py::TestSortComplex::test_sort_real_type_in_H_type_out_F, test/torch_np/numpy_tests/lib/test_function_base.py::TestSortComplex::test_sort_real_type_in_b_type_out_F, test/torch_np/numpy_tests/lib/test_function_base.py::TestSortComplex::test_sort_real_type_in_g_type_out_G, test/torch_np/numpy_tests/lib/test_function_base.py::TestSortComplex::test_sort_real_type_in_h_type_out_F, test/torch_np/numpy_tests/lib/test_function_base.py::TestSortComplex::test_sort_real_type_in_l_type_out_D 2025-08-14T23:25:43.8172353Z 2025-08-14T23:25:49.2450830Z Running test_jit 1/1 ... [2025-08-14 23:25:49.243473] 2025-08-14T23:25:49.2451633Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:25:49.2457837Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:25:49.243473] 2025-08-14T23:25:52.9306645Z 2025-08-14T23:25:52.9308068Z test_sympy_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sympy_utils_1.1_04bf197b0099f82b_.log 2025-08-14T23:25:52.9399742Z Running 209 items in this shard: test/test_sympy_utils.py::TestNumbers::test_float_cast, test/test_sympy_utils.py::TestNumbers::test_int_infinity, test/test_sympy_utils.py::TestNumbers::test_lt_self, test/test_sympy_utils.py::TestNumbers::test_mixed_oo_int_oo, test/test_sympy_utils.py::TestNumbers::test_relation, test/test_sympy_utils.py::TestValueRanges::test_binary_bool_ref_range_fn_and_, test/test_sympy_utils.py::TestValueRanges::test_binary_bool_ref_range_fn_bitwise_and, test/test_sympy_utils.py::TestValueRanges::test_binary_bool_ref_range_fn_bitwise_or, test/test_sympy_utils.py::TestValueRanges::test_binary_bool_ref_range_fn_or_, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_add_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_add_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_bitwise_and_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_bitwise_and_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_bitwise_or_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_bitwise_or_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_floordiv_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_floordiv_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_maximum_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_maximum_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_minimum_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_minimum_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_mod_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_mod_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_mul_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_mul_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_pow_by_natural_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_pow_by_natural_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_pow_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_pow_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_sub_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_sub_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_truediv_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_fn_truediv_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_add, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_bitwise_and, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_bitwise_or, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_eq, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_floordiv, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_ge, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_gt, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_le, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_lt, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_maximum, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_minimum, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_mod, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_mul, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_ne, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_pow, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_pow_by_natural, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_sub, test/test_sympy_utils.py::TestValueRanges::test_binary_ref_range_fn_truediv, test/test_sympy_utils.py::TestValueRanges::test_bitwise_ref_range_fn_bitwise_and, test/test_sympy_utils.py::TestValueRanges::test_bitwise_ref_range_fn_bitwise_or, test/test_sympy_utils.py::TestValueRanges::test_mul_zero_unknown, test/test_sympy_utils.py::TestValueRanges::test_pow_half, test/test_sympy_utils.py::TestValueRanges::test_unary_bool_ref_range_fn_not_, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_abs_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_abs_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_ceil_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_ceil_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_exp_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_exp_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_floor_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_floor_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_log_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_log_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_neg_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_neg_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_reciprocal_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_reciprocal_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_sqrt_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_sqrt_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_square_dtype_float, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_fn_square_dtype_int, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_abs, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_ceil, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_exp, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_floor, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_log, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_neg, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_reciprocal, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_sqrt, test/test_sympy_utils.py::TestValueRanges::test_unary_ref_range_fn_square, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_abs, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_add, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_and_, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_bitwise_and, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_bitwise_or, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_ceil, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_eq, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_exp, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_floor, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_floordiv, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_ge, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_gt, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_le, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_log, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_lt, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_maximum, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_minimum, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_mod, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_mul, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_ne, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_neg, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_not_, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_or_, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_pow, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_pow_by_natural, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_reciprocal, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_sqrt, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_square, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_sub, test/test_sympy_utils.py::TestSympyInterp::test_interp_fn_truediv, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_abs, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_add, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_and_, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_bitwise_and, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_bitwise_or, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_ceil, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_eq, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_exp, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_floor, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_floordiv, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_ge, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_gt, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_le, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_log, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_lt, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_maximum, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_minimum, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_mod, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_mul, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_ne, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_neg, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_not_, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_or_, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_pow, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_pow_by_natural, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_reciprocal, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_sqrt, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_square, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_sub, test/test_sympy_utils.py::TestSympyInterp::test_python_interp_fx_fn_truediv, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_abs, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_add, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_and_, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_bitwise_and, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_bitwise_or, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_ceil, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_eq, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_exp, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_floor, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_floordiv, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_ge, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_gt, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_le, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_log, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_lt, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_maximum, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_minimum, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_mod, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_mul, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_ne, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_neg, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_not_, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_or_, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_pow, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_pow_by_natural, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_reciprocal, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_sqrt, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_square, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_sub, test/test_sympy_utils.py::TestSympyInterp::test_tensor_interp_fn_truediv, test/test_sympy_utils.py::TestSympySolve::test_addition, test/test_sympy_utils.py::TestSympySolve::test_floordiv_Equality, test/test_sympy_utils.py::TestSympySolve::test_floordiv_GreaterThan, test/test_sympy_utils.py::TestSympySolve::test_floordiv_LessThan, test/test_sympy_utils.py::TestSympySolve::test_floordiv_StrictGreaterThan, test/test_sympy_utils.py::TestSympySolve::test_floordiv_StrictLessThan, test/test_sympy_utils.py::TestSympySolve::test_floordiv_Unequality, test/test_sympy_utils.py::TestSympySolve::test_floordiv_eq_simplify, test/test_sympy_utils.py::TestSympySolve::test_give_up, test/test_sympy_utils.py::TestSympySolve::test_multiplication_division_Equality, test/test_sympy_utils.py::TestSympySolve::test_multiplication_division_Unequality, test/test_sympy_utils.py::TestSympySolve::test_multiplication_division_inequality_GreaterThan, test/test_sympy_utils.py::TestSympySolve::test_multiplication_division_inequality_LessThan, test/test_sympy_utils.py::TestSympySolve::test_multiplication_division_inequality_StrictGreaterThan, test/test_sympy_utils.py::TestSympySolve::test_multiplication_division_inequality_StrictLessThan, test/test_sympy_utils.py::TestSympySolve::test_noop_Equality, test/test_sympy_utils.py::TestSympySolve::test_noop_GreaterThan, test/test_sympy_utils.py::TestSympySolve::test_noop_LessThan, test/test_sympy_utils.py::TestSympySolve::test_noop_StrictGreaterThan, test/test_sympy_utils.py::TestSympySolve::test_noop_StrictLessThan, test/test_sympy_utils.py::TestSympySolve::test_noop_Unequality, test/test_sympy_utils.py::TestSympySolve::test_noop_rhs_Equality, test/test_sympy_utils.py::TestSympySolve::test_noop_rhs_GreaterThan, test/test_sympy_utils.py::TestSympySolve::test_noop_rhs_LessThan, test/test_sympy_utils.py::TestSympySolve::test_noop_rhs_StrictGreaterThan, test/test_sympy_utils.py::TestSympySolve::test_noop_rhs_StrictLessThan, test/test_sympy_utils.py::TestSympySolve::test_noop_rhs_Unequality, test/test_sympy_utils.py::TestSympySolve::test_simple_floordiv_gcd, test/test_sympy_utils.py::TestSympySolve::test_z3_proof_floordiv_eq_simplify, test/test_sympy_utils.py::TestSympyFunctions::test_pickle, test/test_sympy_utils.py::TestSingletonInt::test_basic, test/test_sympy_utils.py::TestIdentity::test_cast_identity_float, test/test_sympy_utils.py::TestIdentity::test_cast_identity_illegal, test/test_sympy_utils.py::TestIdentity::test_cast_identity_int, test/test_sympy_utils.py::TestIdentity::test_expand_identity, test/test_sympy_utils.py::TestTypedExpr::test_typed_expr 2025-08-14T23:25:52.9506343Z 2025-08-14T23:25:59.0250184Z Running nn/test_packed_sequence 1/1 ... [2025-08-14 23:25:59.024279] 2025-08-14T23:25:59.0251008Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:25:59.0256833Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_packed_sequence.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:25:59.025460] 2025-08-14T23:26:04.9868129Z 2025-08-14T23:26:04.9869719Z nn/test_packed_sequence 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_packed_sequence_1.1_a3e6539f237973fc_.log 2025-08-14T23:26:04.9876030Z Running 12 items in this shard: test/nn/test_packed_sequence.py::PackedSequenceTest::test_pack_padded_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pack_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pad_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pad_sequence_with_non_iterable_sequences, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pad_sequence_with_tensor_sequences, test/nn/test_packed_sequence.py::PackedSequenceTest::test_to, test/nn/test_packed_sequence.py::PackedSequenceTest::test_to_memory_format, test/nn/test_packed_sequence.py::PackedSequenceTest::test_total_length, test/nn/test_packed_sequence.py::PackedSequenceTest::test_type_casts, test/nn/test_packed_sequence.py::PackedSequenceTest::test_unpack_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_unpad_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_wrong_order 2025-08-14T23:26:04.9880256Z 2025-08-14T23:26:11.0598478Z Running functorch/test_ops 1/8 ... [2025-08-14 23:26:11.057981] 2025-08-14T23:26:11.0598928Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:26:11.0604718Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:26:11.057981] 2025-08-14T23:28:09.4256810Z 2025-08-14T23:28:09.4258011Z test_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_1.1_5798ec292d5d1be0_.log 2025-08-14T23:28:09.5368164Z Running 2461 items in this shard: test/test_jit.py::TestTracer::test_call_traced_fn_from_traced_module, test/test_jit.py::TestTracer::test_call_traced_module_from_traced_module, test/test_jit.py::TestTracer::test_canonicalize_tensor_iterator, test/test_jit.py::TestTracer::test_constant, test/test_jit.py::TestTracer::test_conv, test/test_jit.py::TestTracer::test_export_no_reorder, test/test_jit.py::TestTracer::test_force_outplace_check_fill, test/test_jit.py::TestTracer::test_force_outplace_check_zero, test/test_jit.py::TestTracer::test_ge, test/test_jit.py::TestTracer::test_ge_cuda, test/test_jit.py::TestTracer::test_ge_optimized, test/test_jit.py::TestTracer::test_ge_unoptimized, test/test_jit.py::TestTracer::test_index_put, test/test_jit.py::TestTracer::test_index_put_trace_with_view, test/test_jit.py::TestTracer::test_index_put_trace_without_view, test/test_jit.py::TestTracer::test_inplace_check, test/test_jit.py::TestTracer::test_inplace_copy, test/test_jit.py::TestTracer::test_inplace_copy_force_outplace, test/test_jit.py::TestTracer::test_inplace_flags, test/test_jit.py::TestTracer::test_inplace_transplant, test/test_jit.py::TestTracer::test_inplace_warn, test/test_jit.py::TestTracer::test_input_dict_checkTrace_mut, test/test_jit.py::TestTracer::test_input_dict_empty, test/test_jit.py::TestTracer::test_input_dict_empty_list, test/test_jit.py::TestTracer::test_input_dict_insertion_order, test/test_jit.py::TestTracer::test_input_dict_of_dicts, test/test_jit.py::TestTracer::test_input_dict_of_lists, test/test_jit.py::TestTracer::test_input_dict_recursive, test/test_jit.py::TestTracer::test_input_dict_remembers_keys, test/test_jit.py::TestTracer::test_input_dict_unify, test/test_jit.py::TestTracer::test_input_flatten, test/test_jit.py::TestTracer::test_input_list_mixed_type, test/test_jit.py::TestTracer::test_input_list_of_tuples, test/test_jit.py::TestTracer::test_input_list_toplevel_flatten, test/test_jit.py::TestTracer::test_input_list_toplevel_flatten_direct, test/test_jit.py::TestTracer::test_input_tuple_of_dicts, test/test_jit.py::TestTracer::test_interpolate_trace, test/test_jit.py::TestTracer::test_large_nbr_kernel_args, test/test_jit.py::TestTracer::test_lhs_index_fails, test/test_jit.py::TestTracer::test_lhs_index_trivial, test/test_jit.py::TestTracer::test_max_pool, test/test_jit.py::TestTracer::test_nested_inplace, test/test_jit.py::TestTracer::test_non_tensor_tracing, test/test_jit.py::TestTracer::test_output_unflatten, test/test_jit.py::TestTracer::test_python_function, test/test_jit.py::TestTracer::test_python_function_tup, test/test_jit.py::TestTracer::test_repeated_input, test/test_jit.py::TestTracer::test_repeated_output, test/test_jit.py::TestTracer::test_shared_param, test/test_jit.py::TestTracer::test_simple, test/test_jit.py::TestTracer::test_tensor_with_grad_as_constant, test/test_jit.py::TestTracer::test_trace_aliased_parameter, test/test_jit.py::TestTracer::test_trace_annotation, test/test_jit.py::TestTracer::test_trace_arange, test/test_jit.py::TestTracer::test_trace_arange_with_grad, test/test_jit.py::TestTracer::test_trace_autograd_function, test/test_jit.py::TestTracer::test_trace_casts, test/test_jit.py::TestTracer::test_trace_checker_control_flow, test/test_jit.py::TestTracer::test_trace_checker_dot_data, test/test_jit.py::TestTracer::test_trace_checker_dropout_notrain, test/test_jit.py::TestTracer::test_trace_checker_dropout_train, test/test_jit.py::TestTracer::test_trace_checker_inplace_on_view, test/test_jit.py::TestTracer::test_trace_checker_memoization, test/test_jit.py::TestTracer::test_trace_checker_slice_lhs, test/test_jit.py::TestTracer::test_trace_checking_with_deprecated_name, test/test_jit.py::TestTracer::test_trace_checking_with_global_name, test/test_jit.py::TestTracer::test_trace_contiguous, test/test_jit.py::TestTracer::test_trace_contiguous_short_circuit, test/test_jit.py::TestTracer::test_trace_detach, test/test_jit.py::TestTracer::test_trace_detach_inplace, test/test_jit.py::TestTracer::test_trace_detach_inplace_redispatch, test/test_jit.py::TestTracer::test_trace_detach_redispatch, test/test_jit.py::TestTracer::test_trace_dict_input, test/test_jit.py::TestTracer::test_trace_dict_output, test/test_jit.py::TestTracer::test_trace_export_fns, test/test_jit.py::TestTracer::test_trace_export_fns_recursive, test/test_jit.py::TestTracer::test_trace_fork_join_and_module, test/test_jit.py::TestTracer::test_trace_full_dynamic_shape, test/test_jit.py::TestTracer::test_trace_func_argument_names_captured, test/test_jit.py::TestTracer::test_trace_index, test/test_jit.py::TestTracer::test_trace_index_constant, test/test_jit.py::TestTracer::test_trace_indexed_assignment, test/test_jit.py::TestTracer::test_trace_inline_shape, test/test_jit.py::TestTracer::test_trace_inverse, test/test_jit.py::TestTracer::test_trace_invert_module_hierarchy, test/test_jit.py::TestTracer::test_trace_legacy_ctor, test/test_jit.py::TestTracer::test_trace_module_argument_names_captured, test/test_jit.py::TestTracer::test_trace_modulelist, test/test_jit.py::TestTracer::test_trace_multi_output_function, test/test_jit.py::TestTracer::test_trace_namedtuple, test/test_jit.py::TestTracer::test_trace_nested_datatypes, test/test_jit.py::TestTracer::test_trace_nested_fn, test/test_jit.py::TestTracer::test_trace_no_duplicated_lifted_input_output, test/test_jit.py::TestTracer::test_trace_numel, test/test_jit.py::TestTracer::test_trace_optioanl_dtype, test/test_jit.py::TestTracer::test_trace_optional, test/test_jit.py::TestTracer::test_trace_out_operator_with_two_output, test/test_jit.py::TestTracer::test_trace_partial_func_argument_names_captured, test/test_jit.py::TestTracer::test_trace_random, test/test_jit.py::TestTracer::test_trace_records_names, test/test_jit.py::TestTracer::test_trace_save, test/test_jit.py::TestTracer::test_trace_save_load_copy, test/test_jit.py::TestTracer::test_trace_single_tuple, test/test_jit.py::TestTracer::test_trace_size, test/test_jit.py::TestTracer::test_trace_size_with_grad, test/test_jit.py::TestTracer::test_trace_skip_none_submodule, test/test_jit.py::TestTracer::test_trace_slice, test/test_jit.py::TestTracer::test_trace_slice_expr_complete_type, test/test_jit.py::TestTracer::test_trace_slice_full_dim, test/test_jit.py::TestTracer::test_trace_slice_setitem_dynamic_shape, test/test_jit.py::TestTracer::test_trace_slice_with_grad, test/test_jit.py::TestTracer::test_trace_tensor_factory, test/test_jit.py::TestTracer::test_trace_topk, test/test_jit.py::TestTracer::test_trace_tuple, test/test_jit.py::TestTracer::test_trace_variable_instantiation, test/test_jit.py::TestTracer::test_trace_warn, test/test_jit.py::TestTracer::test_trace_with_conditional_property, test/test_jit.py::TestTracer::test_trace_with_nested_strided_tensor_output, test/test_jit.py::TestTracer::test_trace_with_nested_tensor_list_output, test/test_jit.py::TestTracer::test_trace_with_number_list_output, test/test_jit.py::TestTracer::test_trace_with_tensor_list_output, test/test_jit.py::TestTracer::test_trace_with_tuple_tensor, test/test_jit.py::TestTracer::test_traced_module_cuda, test/test_jit.py::TestTracer::test_tracing_backward_hook_error, test/test_jit.py::TestTracer::test_tracing_hooks, test/test_jit.py::TestTracer::test_tracing_multiple_methods, test/test_jit.py::TestTracer::test_type_same_device, test/test_jit.py::TestTracer::test_typeas_trace_check, test/test_jit.py::TestTracer::test_wrapped_number, test/test_jit.py::TestMixTracingScripting::test_call_script_fn_from_traced_module, test/test_jit.py::TestMixTracingScripting::test_call_script_module_from_traced_module, test/test_jit.py::TestMixTracingScripting::test_call_traced_fn_from_script_fn, test/test_jit.py::TestMixTracingScripting::test_call_traced_mod_from_script_fn, test/test_jit.py::TestMixTracingScripting::test_call_tracing_fn_from_script_module, test/test_jit.py::TestMixTracingScripting::test_call_tracing_mod_from_script_module, test/test_jit.py::TestMixTracingScripting::test_jit_trace_callfunction_return_shapes, test/test_jit.py::TestMixTracingScripting::test_script_inline_trace_multiple_args, test/test_jit.py::TestMixTracingScripting::test_trace_dict_mix_script, test/test_jit.py::TestMixTracingScripting::test_trace_hierarchy, test/test_jit.py::TestMixTracingScripting::test_trace_linear, test/test_jit.py::TestMixTracingScripting::test_trace_mixed_by_script_with_dict_output, test/test_jit.py::TestMixTracingScripting::test_trace_of_script, test/test_jit.py::TestMixTracingScripting::test_trace_parameter, test/test_jit.py::TestMixTracingScripting::test_trace_returning_dict_with_tensor_tuples, test/test_jit.py::TestMixTracingScripting::test_trace_script, test/test_jit.py::TestMixTracingScripting::test_trace_script_returning_complex_dict, test/test_jit.py::TestMixTracingScripting::test_trace_with_size, test/test_jit.py::TestMixTracingScripting::test_traced_module_contains_scripted_interface_types, test/test_jit.py::TestMixTracingScripting::test_traced_module_implements_interface, test/test_jit.py::TestMixTracingScripting::test_tracing_indexing, test/test_jit.py::TestMixTracingScripting::test_tracing_slicing, test/test_jit.py::TestRecursiveScript::test_attributes, test/test_jit.py::TestRecursiveScript::test_class_compile, test/test_jit.py::TestRecursiveScript::test_constants_with_final, test/test_jit.py::TestRecursiveScript::test_dir, test/test_jit.py::TestRecursiveScript::test_error_stack, test/test_jit.py::TestRecursiveScript::test_error_stack_annotation, test/test_jit.py::TestRecursiveScript::test_error_stack_class, test/test_jit.py::TestRecursiveScript::test_error_stack_module, test/test_jit.py::TestRecursiveScript::test_failed_function_compilation, test/test_jit.py::TestRecursiveScript::test_function_attribute_in_submodule, test/test_jit.py::TestRecursiveScript::test_ignore_class, test/test_jit.py::TestRecursiveScript::test_inferred_nonetype, test/test_jit.py::TestRecursiveScript::test_init_error, test/test_jit.py::TestRecursiveScript::test_inner_traced_module, test/test_jit.py::TestRecursiveScript::test_iterable_modules, test/test_jit.py::TestRecursiveScript::test_method_call, test/test_jit.py::TestRecursiveScript::test_module_basic, test/test_jit.py::TestRecursiveScript::test_module_function_export, test/test_jit.py::TestRecursiveScript::test_module_name, test/test_jit.py::TestRecursiveScript::test_module_repr, test/test_jit.py::TestRecursiveScript::test_optional_module, test/test_jit.py::TestRecursiveScript::test_override_instance_method_ignore, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_basic, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_cycle, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_escape_hatch, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_iterable_modules, test/test_jit.py::TestRecursiveScript::test_python_function_attribute, test/test_jit.py::TestRecursiveScript::test_repeated_error_stack, test/test_jit.py::TestRecursiveScript::test_script_after_eval, test/test_jit.py::TestRecursiveScript::test_script_basic, test/test_jit.py::TestRecursiveScript::test_script_function_attribute, test/test_jit.py::TestRecursiveScript::test_script_loaded_module, test/test_jit.py::TestRecursiveScript::test_thread_safe_error_stacks, test/test_jit.py::TestTypeSharing::test_assign_python_attr, test/test_jit.py::TestTypeSharing::test_basic, test/test_jit.py::TestTypeSharing::test_builtin_function_different, test/test_jit.py::TestTypeSharing::test_builtin_function_same, test/test_jit.py::TestTypeSharing::test_constants, test/test_jit.py::TestTypeSharing::test_diff_attr_values, test/test_jit.py::TestTypeSharing::test_failed_attribute_compilation, test/test_jit.py::TestTypeSharing::test_ignored_fns, test/test_jit.py::TestTypeSharing::test_linear, test/test_jit.py::TestTypeSharing::test_loaded_modules_work, test/test_jit.py::TestTypeSharing::test_module_dict_same_type_different_name, test/test_jit.py::TestTypeSharing::test_mutate_attr_value, test/test_jit.py::TestTypeSharing::test_param_vs_attribute, test/test_jit.py::TestTypeSharing::test_python_function_attribute_different, test/test_jit.py::TestTypeSharing::test_python_function_attribute_same, test/test_jit.py::TestTypeSharing::test_same_but_different_classes, test/test_jit.py::TestTypeSharing::test_script_function_attribute_different, test/test_jit.py::TestTypeSharing::test_script_function_attribute_same, test/test_jit.py::TestTypeSharing::test_script_module_containing_traced_module, test/test_jit.py::TestTypeSharing::test_submodules, test/test_jit.py::TestTypeSharing::test_tracing_gives_different_types, test/test_jit.py::TestTypeSharing::test_type_not_shared_ignored_attributes, test/test_jit.py::TestTypeSharing::test_type_shared_ignored_attributes, test/test_jit.py::TestTypeSharing::test_type_sharing_define_in_init, test/test_jit.py::TestTypeSharing::test_type_sharing_disabled, test/test_jit.py::TestLogging::test_bump_numeric_counter, test/test_jit.py::TestLogging::test_counter_aggregation, test/test_jit.py::TestLogging::test_logging_levels_set, test/test_jit.py::TestLogging::test_time_measurement_counter, test/test_jit.py::TestLogging::test_time_measurement_counter_script, test/test_jit.py::TestLogging::test_trace_numeric_counter, test/test_jit.py::TestBackends::test_errors, test/test_jit.py::TestBackends::test_execution, test/test_jit.py::TestBackends::test_save_load, test/test_jit.py::TestBackendsWithCompiler::test_errors, test/test_jit.py::TestBackendsWithCompiler::test_execution, test/test_jit.py::TestNnapiBackend::test_adaptive_avg_pool2d, test/test_jit.py::TestNnapiBackend::test_avg_pool2d, test/test_jit.py::TestNnapiBackend::test_cat, test/test_jit.py::TestNnapiBackend::test_compile_spec_santiy, test/test_jit.py::TestNnapiBackend::test_conv2d, test/test_jit.py::TestNnapiBackend::test_conv2d_transpose, test/test_jit.py::TestNnapiBackend::test_dequantize, test/test_jit.py::TestNnapiBackend::test_detach, test/test_jit.py::TestNnapiBackend::test_flatten, test/test_jit.py::TestNnapiBackend::test_hardtanh, test/test_jit.py::TestNnapiBackend::test_linear, test/test_jit.py::TestNnapiBackend::test_log_softmax, test/test_jit.py::TestNnapiBackend::test_max_pool2d, test/test_jit.py::TestNnapiBackend::test_mean, test/test_jit.py::TestNnapiBackend::test_multi_output, test/test_jit.py::TestNnapiBackend::test_pointwise_binary, test/test_jit.py::TestNnapiBackend::test_pointwise_binary_const, test/test_jit.py::TestNnapiBackend::test_pointwise_unary, test/test_jit.py::TestNnapiBackend::test_prelu, test/test_jit.py::TestNnapiBackend::test_qadd, test/test_jit.py::TestNnapiBackend::test_qlinear, test/test_jit.py::TestNnapiBackend::test_quantize, test/test_jit.py::TestNnapiBackend::test_reshape, test/test_jit.py::TestNnapiBackend::test_seblock_mul, test/test_jit.py::TestNnapiBackend::test_slice, test/test_jit.py::TestNnapiBackend::test_softmax, test/test_jit.py::TestNnapiBackend::test_tensor_input, test/test_jit.py::TestNnapiBackend::test_to, test/test_jit.py::TestNnapiBackend::test_unsqueeze, test/test_jit.py::TestNnapiBackend::test_upsample_nearest2d, test/test_jit.py::TestList::test_comprehension_iterable, test/test_jit.py::TestList::test_comprehension_out_type_not_in_type, test/test_jit.py::TestList::test_comprehensions_basic, test/test_jit.py::TestList::test_comprehensions_basic_float, test/test_jit.py::TestList::test_comprehensions_two_comps, test/test_jit.py::TestList::test_copy_list_immutable, test/test_jit.py::TestList::test_copy_list_mutable, test/test_jit.py::TestList::test_del, test/test_jit.py::TestList::test_dict_keyword_is_correctly_typed, test/test_jit.py::TestList::test_dict_keyword_with_dict_comprehension, test/test_jit.py::TestList::test_dict_keyword_with_dict_comprehension_and_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_empty_dict_comprehension, test/test_jit.py::TestList::test_dict_keyword_with_empty_iterable, test/test_jit.py::TestList::test_dict_keyword_with_internal_aggregate_function, test/test_jit.py::TestList::test_dict_keyword_with_iterable, test/test_jit.py::TestList::test_dict_keyword_with_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_kwargs_using_container_values, test/test_jit.py::TestList::test_dict_keyword_with_mapping, test/test_jit.py::TestList::test_dict_keyword_with_mapping_and_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_mismatched_annotations, test/test_jit.py::TestList::test_dict_keyword_with_nested_call, test/test_jit.py::TestList::test_dict_keyword_with_previously_declared_variable, test/test_jit.py::TestList::test_dict_keyword_with_previously_declared_variable_and_kwargs, test/test_jit.py::TestList::test_extend_list_immutable, test/test_jit.py::TestList::test_extend_list_mutable, test/test_jit.py::TestList::test_in_check, test/test_jit.py::TestList::test_list_bool_conversion, test/test_jit.py::TestList::test_list_count, test/test_jit.py::TestList::test_list_count_not_existing, test/test_jit.py::TestList::test_list_gather, test/test_jit.py::TestList::test_list_index, test/test_jit.py::TestList::test_list_index_not_existing, test/test_jit.py::TestList::test_list_keyword, test/test_jit.py::TestList::test_list_len, test/test_jit.py::TestList::test_list_literal, test/test_jit.py::TestList::test_list_none, test/test_jit.py::TestList::test_list_ops, test/test_jit.py::TestList::test_list_slice, test/test_jit.py::TestList::test_list_sort, test/test_jit.py::TestList::test_list_unification_hint, test/test_jit.py::TestList::test_list_variance, test/test_jit.py::TestList::test_min_bool_list, test/test_jit.py::TestList::test_min_max_list, test/test_jit.py::TestList::test_min_max_single_list, test/test_jit.py::TestList::test_mutable_list_append, test/test_jit.py::TestList::test_mutable_list_append_2, test/test_jit.py::TestList::test_mutable_list_append_if, test/test_jit.py::TestList::test_mutable_list_append_if_else, test/test_jit.py::TestList::test_mutable_list_append_loop, test/test_jit.py::TestList::test_mutable_list_append_loop_if, test/test_jit.py::TestList::test_mutable_list_clear, test/test_jit.py::TestList::test_mutable_list_clear_empty, test/test_jit.py::TestList::test_mutable_list_function_inline, test/test_jit.py::TestList::test_mutable_list_insert, test/test_jit.py::TestList::test_mutable_list_insert_neg_out_of_bounds, test/test_jit.py::TestList::test_mutable_list_insert_negative, test/test_jit.py::TestList::test_mutable_list_insert_out_of_bounds, test/test_jit.py::TestList::test_mutable_list_nested_loop, test/test_jit.py::TestList::test_mutable_list_pop, test/test_jit.py::TestList::test_mutable_list_pop2, test/test_jit.py::TestList::test_mutable_list_pop_at, test/test_jit.py::TestList::test_mutable_list_pop_at2, test/test_jit.py::TestList::test_mutable_list_pop_at_negative, test/test_jit.py::TestList::test_mutable_list_pop_at_negative2, test/test_jit.py::TestList::test_mutable_list_pop_empty, test/test_jit.py::TestList::test_mutable_list_pop_slice, test/test_jit.py::TestList::test_mutable_list_remove, test/test_jit.py::TestList::test_mutable_list_remove2, test/test_jit.py::TestList::test_mutable_list_remove_not_existing, test/test_jit.py::TestList::test_mutable_list_remove_tensor, test/test_jit.py::TestList::test_mutable_list_reverse, test/test_jit.py::TestList::test_mutable_list_reverse_empty, test/test_jit.py::TestList::test_mutable_tensor_list_reverse, test/test_jit.py::TestList::test_no_element_type_annotation, test/test_jit.py::TestList::test_slice_index, test/test_jit.py::TestList::test_tensor_list_count, test/test_jit.py::TestList::test_tensor_list_count_not_existing, test/test_jit.py::TestList::test_tensor_list_index, test/test_jit.py::TestList::test_tensor_list_index_not_existing, test/test_jit.py::TestList::test_to_list, test/test_jit.py::TestList::test_to_list_gpu, test/test_jit.py::TestDict::test_aug_assign, test/test_jit.py::TestDict::test_basic, test/test_jit.py::TestDict::test_clear, test/test_jit.py::TestDict::test_copy, test/test_jit.py::TestDict::test_del, test/test_jit.py::TestDict::test_dict_bool_conversion, test/test_jit.py::TestDict::test_dict_preserves_order, test/test_jit.py::TestDict::test_dict_to_python, test/test_jit.py::TestDict::test_dict_variance, test/test_jit.py::TestDict::test_get, test/test_jit.py::TestDict::test_get_boolkey, test/test_jit.py::TestDict::test_items, test/test_jit.py::TestDict::test_key_type, test/test_jit.py::TestDict::test_keys, test/test_jit.py::TestDict::test_len, test/test_jit.py::TestDict::test_loop, test/test_jit.py::TestDict::test_membership, test/test_jit.py::TestDict::test_mutability, test/test_jit.py::TestDict::test_optional_dict_construct, test/test_jit.py::TestDict::test_ordered_dict, test/test_jit.py::TestDict::test_pop, test/test_jit.py::TestDict::test_popitem, test/test_jit.py::TestDict::test_setdefault, test/test_jit.py::TestDict::test_type_annotation_missing_contained_type, test/test_jit.py::TestDict::test_update, test/test_jit.py::TestDict::test_update_existing_key, test/test_jit.py::TestDict::test_values, test/test_jit.py::TestDict::test_view, test/test_jit.py::TestNamedTuple::test_namedtuple, test/test_jit.py::TestNamedTuple::test_namedtuple_as_attr, test/test_jit.py::TestNamedTuple::test_namedtuple_constant, test/test_jit.py::TestNamedTuple::test_namedtuple_input_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_inside_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_kwarg_construct, test/test_jit.py::TestNamedTuple::test_namedtuple_lower, test/test_jit.py::TestNamedTuple::test_namedtuple_resolution, test/test_jit.py::TestNamedTuple::test_namedtuple_resolution_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_serialization, test/test_jit.py::TestNamedTuple::test_namedtuple_slice_unpack, test/test_jit.py::TestNamedTuple::test_namedtuple_type_annotation, test/test_jit.py::TestNamedTuple::test_namedtuple_wrong_types, test/test_jit.py::TestNamedTuple::test_return_named_tuple, test/test_jit.py::TestScriptDict::test_bool, test/test_jit.py::TestScriptDict::test_contains, test/test_jit.py::TestScriptDict::test_delitem, test/test_jit.py::TestScriptDict::test_getitem, test/test_jit.py::TestScriptDict::test_items, test/test_jit.py::TestScriptDict::test_iter, test/test_jit.py::TestScriptDict::test_len, test/test_jit.py::TestScriptDict::test_nested, test/test_jit.py::TestScriptDict::test_reference_semantics, test/test_jit.py::TestScriptDict::test_repr, test/test_jit.py::TestScriptDict::test_setitem, test/test_jit.py::TestScriptList::test_append, test/test_jit.py::TestScriptList::test_bool, test/test_jit.py::TestScriptList::test_clear, test/test_jit.py::TestScriptList::test_contains, test/test_jit.py::TestScriptList::test_count, test/test_jit.py::TestScriptList::test_defaultdict, test/test_jit.py::TestScriptList::test_delitem, test/test_jit.py::TestScriptList::test_extend, test/test_jit.py::TestScriptList::test_getitem, test/test_jit.py::TestScriptList::test_insert, test/test_jit.py::TestScriptList::test_iter, test/test_jit.py::TestScriptList::test_len, test/test_jit.py::TestScriptList::test_nested, test/test_jit.py::TestScriptList::test_pop, test/test_jit.py::TestScriptList::test_reference_semantics, test/test_jit.py::TestScriptList::test_remove, test/test_jit.py::TestScriptList::test_repr, test/test_jit.py::TestScriptList::test_setitem, test/test_jit.py::TestAsync::test_async_future_type_python, test/test_jit.py::TestAsync::test_async_grad_guard_no_grad, test/test_jit.py::TestAsync::test_async_grad_guard_with_grad, test/test_jit.py::TestAsync::test_async_kwargs, test/test_jit.py::TestAsync::test_async_parsing, test/test_jit.py::TestAsync::test_async_python, test/test_jit.py::TestAsync::test_async_script, test/test_jit.py::TestAsync::test_async_script_capture, test/test_jit.py::TestAsync::test_async_script_error, test/test_jit.py::TestAsync::test_async_script_multi_forks, test/test_jit.py::TestAsync::test_async_script_multi_waits, test/test_jit.py::TestAsync::test_async_script_nested, test/test_jit.py::TestAsync::test_async_script_no_script_mod, test/test_jit.py::TestAsync::test_async_script_trace, test/test_jit.py::TestAsync::test_future_subtyping, test/test_jit.py::TestAsync::test_no_future_subtype_message, test/test_jit.py::TestAsync::test_trace_fork_wait, test/test_jit.py::TestAsync::test_trace_fork_wait_inline, test/test_jit.py::TestAsync::test_trace_fork_wait_leaking, test/test_jit.py::TestAsync::test_trace_fork_wait_list_modulecalls, test/test_jit.py::TestAsync::test_trace_modulecalls_with_different_output_types, test/test_jit.py::TestAwait::test_await_class_arg, test/test_jit.py::TestAwait::test_await_class_return, test/test_jit.py::TestAwait::test_await_eager_lazy, test/test_jit.py::TestAwait::test_await_func_arg, test/test_jit.py::TestAwait::test_await_getattr_implicit_convertion, test/test_jit.py::TestAwait::test_await_isinstance, test/test_jit.py::TestAwait::test_await_multiout_save, test/test_jit.py::TestAwait::test_await_nested, test/test_jit.py::TestAwait::test_await_out_of_interpreter, test/test_jit.py::TestAwait::test_await_python, test/test_jit.py::TestAwait::test_await_type_python, test/test_jit.py::TestAwait::test_awaitable_to_await, test/test_jit.py::TestAwait::test_eager_await_non_scriptable, test/test_jit.py::TestAwait::test_jit_trace, test/test_jit.py::TestAwait::test_nowait, test/test_jit.py::TestAwait::test_nowait_class, test/test_jit.py::TestAwait::test_script, test/test_jit.py::TestDataParallel::test_python_submodule_script, test/test_jit.py::TestDataParallel::test_shared_module, test/test_jit.py::TestDataParallel::test_tensor_sharing, test/test_jit.py::TestDataParallel::test_tensor_sharing_with_forward, test/test_jit.py::TestDataParallel::test_traced_module, test/test_jit.py::TestModels::test_alexnet, test/test_jit.py::TestModels::test_dcgan_models, test/test_jit.py::TestModels::test_dcgan_models_cuda, test/test_jit.py::TestModels::test_mnist, test/test_jit.py::TestModels::test_mnist_cuda, test/test_jit.py::TestModels::test_mnist_training_leaks_no_memory_cuda, test/test_jit.py::TestModels::test_neural_style, test/test_jit.py::TestModels::test_neural_style_cuda, test/test_jit.py::TestModels::test_reinforcement_learning, test/test_jit.py::TestModels::test_reinforcement_learning_cuda, test/test_jit.py::TestModels::test_script_module_script_resnet, test/test_jit.py::TestModels::test_script_module_trace_resnet18, test/test_jit.py::TestModels::test_snli, test/test_jit.py::TestModels::test_snli_cuda, test/test_jit.py::TestModels::test_super_resolution, test/test_jit.py::TestModels::test_super_resolution_cuda, test/test_jit.py::TestModels::test_time_sequence_prediction, test/test_jit.py::TestModels::test_vae, test/test_jit.py::TestModels::test_vae_cuda, test/test_jit.py::TestModules::test_script_module_with_constants_list, test/test_jit.py::TestAutodiffJit::test_autodiff_requires_grad_nograd, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs_profiled_twice, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs_side_effects, test/test_jit.py::TestAutodiffJit::test_undefined_tensor_lists, test/test_jit.py::TestAutodiffSubgraphSlicing::test_aliased_outputs, test/test_jit.py::TestAutodiffSubgraphSlicing::test_bias_as_arg, test/test_jit.py::TestAutodiffSubgraphSlicing::test_bias_as_module_attr, test/test_jit.py::TestAutodiffSubgraphSlicing::test_chunk_constant_script_ad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_constructed_bias, test/test_jit.py::TestAutodiffSubgraphSlicing::test_diff_graph_inline_threshold, test/test_jit.py::TestAutodiffSubgraphSlicing::test_differentiable_graph_ops_requires_grad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_does_not_create_cycles, test/test_jit.py::TestAutodiffSubgraphSlicing::test_does_not_merge_unrelated, test/test_jit.py::TestAutodiffSubgraphSlicing::test_has_profiled_info_aliasing_outputs, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merge_respects_aliasing, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_dense, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_down, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_up, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_without_cycles, test/test_jit.py::TestAutodiffSubgraphSlicing::test_prune_grad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_requires_grad_for_tensor_list, test/test_jit.py::TestAutodiffSubgraphSlicing::test_respects_lexical_scoping, test/test_jit.py::TestAutodiffSubgraphSlicing::test_simple_merge, test/test_jit.py::TestAutodiffSubgraphSlicing::test_simple_no_merge, test/test_jit.py::TestCustomOperators::test_calling_scripted_custom_op, test/test_jit.py::TestCustomOperators::test_calling_traced_custom_op, test/test_jit.py::TestCustomOperators::test_default_arguments_are_used, test/test_jit.py::TestCustomOperators::test_dynamic_op_registry, test/test_jit.py::TestCustomOperators::test_generic_list, test/test_jit.py::TestCustomOperators::test_getting_invalid_attr, test/test_jit.py::TestCustomOperators::test_passing_and_returning_lists, test/test_jit.py::TestCustomOperators::test_passing_one_positional_but_not_the_second, test/test_jit.py::TestCustomOperators::test_passing_too_few_args, test/test_jit.py::TestCustomOperators::test_passing_too_many_args, test/test_jit.py::TestCustomOperators::test_passing_unknown_kwargs, test/test_jit.py::TestCustomOperators::test_script_graph_contains_custom_op, test/test_jit.py::TestCustomOperators::test_script_graph_for_custom_ops_matches_traced_graph, test/test_jit.py::TestCustomOperators::test_simply_calling_an_operator, test/test_jit.py::TestCustomOperators::test_where_no_scalar, test/test_jit.py::TestGraphRewritePasses::test_fuse_linear, test/test_jit.py::TestClassType::test_cast_overloads, test/test_jit.py::TestClassType::test_class_attribute_wrong_type, test/test_jit.py::TestClassType::test_class_constant, test/test_jit.py::TestClassType::test_class_constructs_itself, test/test_jit.py::TestClassType::test_class_inheritance, test/test_jit.py::TestClassType::test_class_inheritance_implicit, test/test_jit.py::TestClassType::test_class_sorting, test/test_jit.py::TestClassType::test_class_specialization, test/test_jit.py::TestClassType::test_class_type_as_param, test/test_jit.py::TestClassType::test_classmethod, test/test_jit.py::TestClassType::test_conditional_set_attr, test/test_jit.py::TestClassType::test_custom_delete, test/test_jit.py::TestClassType::test_default_args, test/test_jit.py::TestClassType::test_get_attr, test/test_jit.py::TestClassType::test_get_attr_not_initialized, test/test_jit.py::TestClassType::test_get_with_method, test/test_jit.py::TestClassType::test_imported_classes, test/test_jit.py::TestClassType::test_in, test/test_jit.py::TestClassType::test_init_compiled_first, test/test_jit.py::TestClassType::test_interface, test/test_jit.py::TestClassType::test_optional_type_promotion, test/test_jit.py::TestClassType::test_out_of_order_methods, test/test_jit.py::TestClassType::test_overloaded_fn, test/test_jit.py::TestClassType::test_properties, test/test_jit.py::TestClassType::test_py_class_to_ivalue_missing_attribute, test/test_jit.py::TestClassType::test_python_interop, test/test_jit.py::TestClassType::test_recursive_class, test/test_jit.py::TestClassType::test_recursive_script_builtin_type_resolution, test/test_jit.py::TestClassType::test_recursive_script_module_builtin_type_resolution, test/test_jit.py::TestClassType::test_recursive_scripting, test/test_jit.py::TestClassType::test_recursive_scripting_failed, test/test_jit.py::TestClassType::test_reference_semantics, test/test_jit.py::TestClassType::test_save_load_with_classes, test/test_jit.py::TestClassType::test_save_load_with_classes_nested, test/test_jit.py::TestClassType::test_save_load_with_classes_returned, test/test_jit.py::TestClassType::test_schema_human_readable, test/test_jit.py::TestClassType::test_self_referential_method, test/test_jit.py::TestClassType::test_set_attr_in_method, test/test_jit.py::TestClassType::test_set_attr_non_initialized, test/test_jit.py::TestClassType::test_set_attr_type_mismatch, test/test_jit.py::TestClassType::test_staticmethod, test/test_jit.py::TestClassType::test_type_annotation, test/test_jit.py::TestClassType::test_type_annotations, test/test_jit.py::TestClassType::test_unresolved_class_attributes, test/test_jit.py::TestClassType::test_unused_method, test/test_jit.py::TestBuiltins::test_del, test/test_jit.py::TestBuiltins::test_del_multiple_operands, test/test_jit.py::TestBuiltins::test_has_attr, test/test_jit.py::TestBuiltins::test_has_attr_invalid_args, test/test_jit.py::TestBuiltins::test_torch_check, test/test_jit.py::TestBuiltins::test_torch_check_invalid_args, test/test_jit.py::TestTensorBuiltins::test_method_on_number, test/test_jit.py::TestTensorBuiltins::test_scalar_to_num_conversions, test/test_jit.py::TestTensorBuiltins::test_tensor_item, test/test_jit.py::TestTensorBuiltins::test_tensor_properties, test/test_jit.py::TestTensorBuiltins::test_tensor_subscript_assign, test/test_jit.py::TestTensorBuiltins::test_tensor_subscript_assign_device, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_inp_out, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_just_inp, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_just_out, test/test_jit.py::TestSymbolicShapeAnalysis::test_adaptive_avg_pool2d, test/test_jit.py::TestSymbolicShapeAnalysis::test_arange_shape, test/test_jit.py::TestSymbolicShapeAnalysis::test_binary_shape_fns_inplace, test/test_jit.py::TestSymbolicShapeAnalysis::test_binary_shape_functions, test/test_jit.py::TestSymbolicShapeAnalysis::test_conv_deconv, test/test_jit.py::TestSymbolicShapeAnalysis::test_convolution_backward, test/test_jit.py::TestSymbolicShapeAnalysis::test_cross_entropy_loss, test/test_jit.py::TestSymbolicShapeAnalysis::test_if_propagation, test/test_jit.py::TestSymbolicShapeAnalysis::test_partial_eval_graph_conv, test/test_jit.py::TestSymbolicShapeAnalysis::test_partial_eval_stitching, test/test_jit.py::TestSymbolicShapeAnalysis::test_refinement_through_graph_stitching, test/test_jit.py::TestSymbolicShapeAnalysis::test_register_function_error_checking, test/test_jit.py::TestSymbolicShapeAnalysis::test_returning_input_symbolic_shapes, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_analysis, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_concat, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_embedding_bag, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_function_includes, test/test_jit.py::TestSymbolicShapeAnalysis::test_shared_shape_graph, test/test_jit.py::TestSymbolicShapeAnalysis::test_size_and_sizes, test/test_jit.py::TestSymbolicShapeAnalysis::test_squeeze_dims, test/test_jit.py::TestSymbolicShapeAnalysis::test_stitching_concat, test/test_jit.py::TestSymbolicShapeAnalysis::test_stitching_multi_output, test/test_jit.py::TestSymbolicShapeAnalysis::test_sym_ir_parsing, test/test_jit.py::TestSymbolicShapeAnalysis::test_unary_shape_fns_inplace, test/test_jit.py::TestSymbolicShapeAnalysis::test_unary_shape_functions, test/test_jit.py::TestSymbolicShapeAnalysis::test_write, test/test_jit.py::TestOpDecompositions::test_op_decomposition, test/test_jit.py::TestOpDecompositions::test_registered_decomposition, test/test_jit.py::TestUnsupportedOps::test_factory_ops_requires_grad_fail, test/test_jit.py::TestUnsupportedOps::test_init_ops, test/test_jit.py::TestFreezing::test_freeze_interface_swapping_two_methods, test/test_jit.py::TestFreezing::test_freeze_interface_within_object, test/test_jit.py::TestFreezing::test_freeze_module, test/test_jit.py::TestFreezing::test_freeze_module_detach_gradient, test/test_jit.py::TestFreezing::test_freeze_module_in_training_mode, test/test_jit.py::TestFreezing::test_freeze_module_inlining, test/test_jit.py::TestFreezing::test_freeze_module_no_forward, test/test_jit.py::TestFreezing::test_freeze_module_return_self, test/test_jit.py::TestFreezing::test_freeze_module_return_sub_module, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr2, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr3, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr2, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr3, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr4, test/test_jit.py::TestFreezing::test_freeze_module_with_call_method, test/test_jit.py::TestFreezing::test_freeze_module_with_fork, test/test_jit.py::TestFreezing::test_freeze_module_with_fork2, test/test_jit.py::TestFreezing::test_freeze_module_with_fork_calling_module_method, test/test_jit.py::TestFreezing::test_freeze_module_with_helperfunction, test/test_jit.py::TestFreezing::test_freeze_module_with_inplace_mutable, test/test_jit.py::TestFreezing::test_freeze_module_with_list, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_dict, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_list, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_tensor, test/test_jit.py::TestFreezing::test_freeze_module_with_nested_fork, test/test_jit.py::TestFreezing::test_freeze_module_with_nestedaliasing, test/test_jit.py::TestFreezing::test_freeze_module_with_nestedaliasingscalar, test/test_jit.py::TestFreezing::test_freeze_module_with_non_static_module_container_index, test/test_jit.py::TestFreezing::test_freeze_module_with_overlapping_attrs, test/test_jit.py::TestFreezing::test_freeze_module_with_preserve_sub_module, test/test_jit.py::TestFreezing::test_freeze_module_with_preserve_sub_module_and_mutation, test/test_jit.py::TestFreezing::test_freeze_module_with_sharedclasstype, test/test_jit.py::TestFreezing::test_freeze_module_with_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_tensor, test/test_jit.py::TestFreezing::test_freeze_module_with_tuple, test/test_jit.py::TestFreezing::test_freeze_module_with_tupleoutput_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attribute_on_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attribute_on_unused_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method2, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method_on_submodule, test/test_jit.py::TestFreezing::test_freeze_no_forward, test/test_jit.py::TestFreezing::test_freeze_non_interface_module_swap, test/test_jit.py::TestFreezing::test_freeze_non_module_class_getattr, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces_same_name, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces_with_reassignment, test/test_jit.py::TestFreezing::test_freeze_with_interface_mutable, test/test_jit.py::TestFreezing::test_freeze_with_swapping_interfaces, test/test_jit.py::TestFreezing::test_module_getattr_indirection, test/test_jit.py::TestFreezing::test_module_with_shared_type_instances, test/test_jit.py::TestFrozenOptimizations::test_bn_not_broadcast_with_linear, test/test_jit.py::TestFrozenOptimizations::test_collapse_adjacent_conversions, test/test_jit.py::TestFrozenOptimizations::test_conv_add_folding, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding_autocast_scenario_cuda, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding_not_forward, test/test_jit.py::TestFrozenOptimizations::test_conv_hardswish, test/test_jit.py::TestFrozenOptimizations::test_conv_mul_add_bn, test/test_jit.py::TestFrozenOptimizations::test_conv_to_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_conv_to_mkldnn_no_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_freeze_conv_relu_fusion, test/test_jit.py::TestFrozenOptimizations::test_freeze_conv_relu_fusion_not_forward, test/test_jit.py::TestFrozenOptimizations::test_freeze_mkdlnn, test/test_jit.py::TestFrozenOptimizations::test_freeze_remove_dropout, test/test_jit.py::TestFrozenOptimizations::test_freeze_remove_feature_dropout, test/test_jit.py::TestFrozenOptimizations::test_hardswish_hardsigmoid, test/test_jit.py::TestFrozenOptimizations::test_incompatible_perf_formats, test/test_jit.py::TestFrozenOptimizations::test_linear_bn_folding, test/test_jit.py::TestFrozenOptimizations::test_linear_bn_folding_autocast_scenario_cuda, test/test_jit.py::TestFrozenOptimizations::test_linear_concat, test/test_jit.py::TestFrozenOptimizations::test_linear_concat_complex, test/test_jit.py::TestFrozenOptimizations::test_linear_concat_different_input, test/test_jit.py::TestFrozenOptimizations::test_linear_multiple_blocks, test/test_jit.py::TestFrozenOptimizations::test_linear_non_constant_weight, test/test_jit.py::TestFrozenOptimizations::test_linear_transpose, test/test_jit.py::TestFrozenOptimizations::test_maxpool_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_mkldnn_fuser_broadcasting, test/test_jit.py::TestFrozenOptimizations::test_mkldnn_inplace_removal, test/test_jit.py::TestFrozenOptimizations::test_numel_less_than_size_with_padding, test/test_jit.py::TestFrozenOptimizations::test_optimize_freeze_module, test/test_jit.py::TestFrozenOptimizations::test_pool2d_batchnorm, test/test_jit.py::TestFrozenOptimizations::test_pool3d_batchnorm, test/test_jit.py::TestFrozenOptimizations::test_remove_detach, test/test_jit.py::TestFrozenOptimizations::test_remove_detach_not_applied, test/test_jit.py::TestFrozenOptimizations::test_scalar_mul, test/test_jit.py::TestMKLDNNReinplacing::test_always_alive_values, test/test_jit.py::TestMKLDNNReinplacing::test_merge_liveness, test/test_jit.py::TestMKLDNNReinplacing::test_successful, test/test_jit.py::TestMKLDNNReinplacing::test_switch_inputs_to_inplace, test/test_jit.py::TestPeephole::test_conv_dim_folding, test/test_jit.py::TestPeephole::test_integer_refinement, test/test_jit.py::TestPeephole::test_noop_peephole, test/test_jit.py::TestPeephole::test_normalized_is_op, test/test_jit.py::TestPeephole::test_normalized_isnot_op, test/test_jit.py::TestPeephole::test_normalized_rsub, test/test_jit.py::TestPeephole::test_optimize_out_comparison_same_value, test/test_jit.py::TestPeephole::test_peephole, test/test_jit.py::TestPeephole::test_peephole_add_zero, test/test_jit.py::TestPeephole::test_peephole_arith, test/test_jit.py::TestPeephole::test_peephole_cuda, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_dict_modified, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_get_input_arg, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_keys_might_overlap, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_missing_key, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_overlapping_keys, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_unsupported_type, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_simple, test/test_jit.py::TestPeephole::test_peephole_dict_len, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_keys_might_overlap, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_overlapping_keys, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_unsupported_type, test/test_jit.py::TestPeephole::test_peephole_dynamic, test/test_jit.py::TestPeephole::test_peephole_int, test/test_jit.py::TestPeephole::test_peephole_len_list, test/test_jit.py::TestPeephole::test_peephole_list_len, test/test_jit.py::TestPeephole::test_peephole_list_ops, test/test_jit.py::TestPeephole::test_peephole_no_output_aliasing, test/test_jit.py::TestPeephole::test_peephole_optional_refine, test/test_jit.py::TestPeephole::test_peephole_slice_all_three_args, test/test_jit.py::TestPeephole::test_peephole_slice_one_empty_arg, test/test_jit.py::TestPeephole::test_peephole_slice_optimization_not_applied_list_modified, test/test_jit.py::TestPeephole::test_peephole_slice_optimization_not_applied_non_const_args, test/test_jit.py::TestPeephole::test_peephole_slice_two_empty_args, test/test_jit.py::TestPeephole::test_peephole_type_refinements, test/test_jit.py::TestPeephole::test_peephole_with_non_output_writes, test/test_jit.py::TestPeephole::test_peephole_with_writes, test/test_jit.py::TestPeephole::test_refine_integer_values, test/test_jit.py::TestPeephole::test_short_circuit_optimization, test/test_jit.py::TestAliasAnalysis::test_becomes_wildcard_annotations, test/test_jit.py::TestAliasAnalysis::test_multiple_compilation_units, test/test_jit.py::TestAliasAnalysis::test_nested_list_construct_not_wildcard, test/test_jit.py::TestAliasAnalysis::test_recursive_calls, test/test_jit.py::TestSaveLoad::test_different_functions, test/test_jit.py::TestSaveLoad::test_different_interfaces, test/test_jit.py::TestSaveLoad::test_different_modules, test/test_jit.py::TestSaveLoad::test_many_collisions, test/test_jit.py::TestSaveLoad::test_save_load_large_string_attribute, test/test_jit.py::TestSaveLoad::test_save_load_meta_tensors, test/test_jit.py::TestSaveLoad::test_save_load_meta_tensors_to_device, test/test_jit.py::TestSaveLoad::test_save_load_params_buffers_submodules, test/test_jit.py::TestSaveLoad::test_save_load_using_pathlib, test/test_jit.py::TestSaveLoad::test_save_load_with_extra_files, test/test_jit.py::TestSaveLoad::test_save_load_with_saved_traced_inputs, test/test_jit.py::TestSaveLoad::test_save_namedtuple_input_only, test/test_jit.py::TestSaveLoad::test_save_namedtuple_input_only_forwardref, test/test_jit.py::TestSaveLoad::test_save_namedtuple_output_only, test/test_jit.py::TestSaveLoad::test_save_nonexit_file, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_functions, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_interfaces, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_modules, test/test_jit.py::TestSaveLoadFlatbuffer::test_many_collisions, test/test_jit.py::TestSaveLoadFlatbuffer::test_module_info_flatbuffer, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_params_buffers_submodules, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_using_pathlib, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_with_extra_files, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_namedtuple_input_only, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_namedtuple_output_only, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_inplace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_reciprocal, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_scalar, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor_inplace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor_out, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_linspace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_linspace_out, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_logspace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_logspace_out, test/test_jit.py::TestModuleContainers::test_custom_container_forward, test/test_jit.py::TestModuleContainers::test_empty_dict_override_contains, test/test_jit.py::TestModuleContainers::test_module_inplace_construct, test/test_jit.py::TestModuleContainers::test_module_interface_special_methods, test/test_jit.py::TestModuleContainers::test_module_properties, test/test_jit.py::TestModuleContainers::test_moduledict, test/test_jit.py::TestModuleContainers::test_moduledict_getitem, test/test_jit.py::TestModuleContainers::test_moduledict_keyerror, test/test_jit.py::TestModuleContainers::test_normal_list_attribute_with_modules_error, test/test_jit.py::TestModuleContainers::test_parameterdict_script_getitem, test/test_jit.py::TestModuleContainers::test_parameterlist_script_getitem, test/test_jit.py::TestModuleContainers::test_parameterlist_script_iter, test/test_jit.py::TestModuleContainers::test_script_module_list_sequential, test/test_jit.py::TestModuleContainers::test_script_modulelist_index, test/test_jit.py::TestModuleContainers::test_sequential_intermediary_types, test/test_jit.py::TestModuleContainers::test_special_method_with_override, test/test_jit.py::TestModuleContainers::test_typed_module_dict, test/test_jit.py::TestModuleContainers::test_typed_module_list, test/test_jit.py::TestPythonBindings::test_add_input, test/test_jit.py::TestPythonBindings::test_aliasdb, test/test_jit.py::TestPythonBindings::test_canonicalize, test/test_jit.py::TestPythonBindings::test_cu_create_function, test/test_jit.py::TestPythonBindings::test_cu_get_functions, test/test_jit.py::TestPythonBindings::test_graph_create, test/test_jit.py::TestPythonBindings::test_graph_iterator_keepalive, test/test_jit.py::TestPythonBindings::test_invalidation, test/test_jit.py::TestPythonIr::test_param_strides, test/test_jit.py::TestPythonIr::test_permute_inputs_binding, test/test_jit.py::TestPythonIr::test_python_ir_utils, test/test_jit.py::TestPythonIr::test_python_ir_utils_graph, test/test_jit.py::TestFunctionalBlocks::test_subgraph_creation, test/test_jit.py::TestRemoveMutation::test_aten_inplace, test/test_jit.py::TestRemoveMutation::test_common_pytorch_list_ops, test/test_jit.py::TestRemoveMutation::test_if_output, test/test_jit.py::TestRemoveMutation::test_if_output_fail, test/test_jit.py::TestRemoveMutation::test_list_indexing_removal, test/test_jit.py::TestRemoveMutation::test_lists_append, test/test_jit.py::TestRemoveMutation::test_lists_insert, test/test_jit.py::TestRemoveMutation::test_special_mapped_op, test/test_jit.py::TestTorchbind::test_default_args, test/test_jit.py::TestTorchbind::test_hasattr, test/test_jit.py::TestTorchbind::test_lambda_as_constructor, test/test_jit.py::TestTorchbind::test_profiler_custom_op, test/test_jit.py::TestTorchbind::test_staticmethod, test/test_jit.py::TestTorchbind::test_torchbind, test/test_jit.py::TestTorchbind::test_torchbind_attr_exception, test/test_jit.py::TestTorchbind::test_torchbind_class_attr_recursive, test/test_jit.py::TestTorchbind::test_torchbind_class_attribute, test/test_jit.py::TestTorchbind::test_torchbind_deepcopy, test/test_jit.py::TestTorchbind::test_torchbind_def_property_getter_setter, test/test_jit.py::TestTorchbind::test_torchbind_def_property_just_getter, test/test_jit.py::TestTorchbind::test_torchbind_def_property_readwrite, test/test_jit.py::TestTorchbind::test_torchbind_getattr, test/test_jit.py::TestTorchbind::test_torchbind_getstate, test/test_jit.py::TestTorchbind::test_torchbind_instantiate_missing_class, test/test_jit.py::TestTorchbind::test_torchbind_lambda_method, test/test_jit.py::TestTorchbind::test_torchbind_no_init, test/test_jit.py::TestTorchbind::test_torchbind_optional_explicit_attr, test/test_jit.py::TestTorchbind::test_torchbind_pass_wrong_type, test/test_jit.py::TestTorchbind::test_torchbind_pickle_serialization, test/test_jit.py::TestTorchbind::test_torchbind_python_deepcopy, test/test_jit.py::TestTorchbind::test_torchbind_return_instance, test/test_jit.py::TestTorchbind::test_torchbind_return_instance_from_method, test/test_jit.py::TestTorchbind::test_torchbind_return_tuple, test/test_jit.py::TestTorchbind::test_torchbind_save_load, test/test_jit.py::TestTorchbind::test_torchbind_take_as_arg, test/test_jit.py::TestTorchbind::test_torchbind_take_instance_as_method_arg, test/test_jit.py::TestTorchbind::test_torchbind_tracing, test/test_jit.py::TestTorchbind::test_torchbind_tracing_nested, test/test_jit.py::TestModuleInterface::test_freeze_module_with_inplace_mutation_in_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_interface_and_fork, test/test_jit.py::TestModuleInterface::test_freeze_module_with_mutated_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_setattr_in_interface, test/test_jit.py::TestModuleInterface::test_module_apis_interface, test/test_jit.py::TestModuleInterface::test_module_doc_string, test/test_jit.py::TestModuleInterface::test_module_interface, test/test_jit.py::TestModuleInterface::test_module_interface_inheritance, test/test_jit.py::TestModuleInterface::test_module_interface_subtype, test/test_jit.py::TestModuleInterface::test_module_swap, test/test_jit.py::TestModuleInterface::test_module_swap_no_lazy_compile, test/test_jit.py::TestModuleInterface::test_module_swap_no_module_interface, test/test_jit.py::TestModuleInterface::test_module_swap_wrong_module, test/test_jit.py::TestModuleInterface::test_not_submodule_interface_call, test/test_jit.py::TestModuleInterface::test_script_module_as_interface_swap, test/test_jit.py::TestWith::test_with_as, test/test_jit.py::TestWith::test_with_errors, test/test_jit.py::TestWith::test_with_exceptions, test/test_jit.py::TestWith::test_with_no_as, test/test_jit.py::TestWith::test_with_no_grad, test/test_jit.py::TestWith::test_with_record_function, test/test_jit.py::TestEnum::test_closed_over_enum_constant, test/test_jit.py::TestEnum::test_enum_as_const, test/test_jit.py::TestEnum::test_enum_as_module_attribute, test/test_jit.py::TestEnum::test_enum_comp, test/test_jit.py::TestEnum::test_enum_comp_diff_classes, test/test_jit.py::TestEnum::test_enum_explicit_script, test/test_jit.py::TestEnum::test_enum_iterate, test/test_jit.py::TestEnum::test_enum_ivalue_type, test/test_jit.py::TestEnum::test_enum_module_return, test/test_jit.py::TestEnum::test_enum_name, test/test_jit.py::TestEnum::test_enum_return, test/test_jit.py::TestEnum::test_enum_value, test/test_jit.py::TestEnum::test_enum_value_types, test/test_jit.py::TestEnum::test_heterogenous_value_type_enum_error, test/test_jit.py::TestEnum::test_non_existent_enum_value, test/test_jit.py::TestEnum::test_string_enum_as_module_attribute, test/test_jit.py::TestEnum::test_typed_enum, test/test_jit.py::TestStringFormatting::test_modulo_operator, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_alternate_digit_placeholder, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_capital_exponent_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_char_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_true_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_digit_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_digit_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_double_percent_in_string, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_exponent_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_float_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_float_placeholder_and_float_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_lowercase_exponent_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_multiple_placeholders, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_percent_in_string, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_format_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_subscript, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_too_few_arguments, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_too_many_arguments, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_unknown_format_specifier, test/test_jit.py::TestProfiler::test_aliasing_merge, test/test_jit.py::TestProfiler::test_autograd_fallback_graph, test/test_jit.py::TestProfiler::test_fallback_graph_not_specialized, test/test_jit.py::TestProfiler::test_iterative_fusion, test/test_jit.py::TestProfiler::test_local_fusion_strategy, test/test_jit.py::TestProfiler::test_not_fusing_scalar_ops, test/test_jit.py::TestProfiler::test_not_optimizing_property, test/test_jit.py::TestProfiler::test_specialize_backward, test/test_jit.py::TestProfiler::test_specialized_types, test/test_jit.py::TestProfiler::test_tensor_constant, test/test_jit.py::TestProfiler::test_tensor_type_not_determined_by_inputs, test/test_jit.py::TestProfiler::test_use_not_profiled, test/test_jit.py::TestSlice::test_module_list_slicing, test/test_jit.py::TestSlice::test_slice_as_variable, test/test_jit.py::TestSlice::test_slice_dynamic_index, test/test_jit.py::TestSlice::test_slice_kwarg, test/test_jit.py::TestSlice::test_slice_one_none, test/test_jit.py::TestSlice::test_slice_start_stop, test/test_jit.py::TestSlice::test_slice_start_stop_step, test/test_jit.py::TestSlice::test_slice_start_stop_with_none, test/test_jit.py::TestSlice::test_slice_stop_clipped, test/test_jit.py::TestSlice::test_slice_stop_only, test/test_jit.py::TestSlice::test_slice_stop_only_with_nones, test/test_jit.py::TestSlice::test_slice_string, test/test_jit.py::TestSlice::test_slice_tensor, test/test_jit.py::TestSlice::test_slice_tensor_multidim, test/test_jit.py::TestSlice::test_slice_tensor_multidim_with_dots, test/test_jit.py::TestSlice::test_slice_three_nones, test/test_jit.py::TestSlice::test_slice_two_nones, test/test_jit.py::TestSlice::test_tuple_slicing, test/test_jit.py::TestIgnorableArgs::test_add_out_ignorable_args, test/test_jit.py::TestIgnorableArgs::test_slice_ignorable_args_for_slice, test/test_jit.py::TestHooks::test_forward_tuple_input, test/test_jit.py::TestHooks::test_hook_compilation_hint, test/test_jit.py::TestHooks::test_hook_hook_name_collision, test/test_jit.py::TestHooks::test_hook_method_name_collision, test/test_jit.py::TestHooks::test_module_direct_forward_invocation, test/test_jit.py::TestHooks::test_module_forward_multiple_inputs, test/test_jit.py::TestHooks::test_module_forward_single_input, test/test_jit.py::TestHooks::test_module_hook_return_nothing, test/test_jit.py::TestHooks::test_module_multiple_hooks_multiple_inputs, test/test_jit.py::TestHooks::test_module_multiple_hooks_single_input, test/test_jit.py::TestHooks::test_module_no_forward_input, test/test_jit.py::TestHooks::test_module_same_hook_repeated, test/test_jit.py::TestHooks::test_submodule_called_directly_with_hooks, test/test_jit.py::TestHooks::test_submodule_direct_forward_invocation, test/test_jit.py::TestHooks::test_submodule_forward_multiple_inputs, test/test_jit.py::TestHooks::test_submodule_forward_single_input, test/test_jit.py::TestHooks::test_submodule_forward_single_input_return_not_tupled, test/test_jit.py::TestHooks::test_submodule_hook_return_nothing, test/test_jit.py::TestHooks::test_submodule_multiple_hooks_multiple_inputs, test/test_jit.py::TestHooks::test_submodule_multiple_hooks_single_input, test/test_jit.py::TestHooks::test_submodule_no_forward_input, test/test_jit.py::TestHooks::test_submodule_same_hook_repeated, test/test_jit.py::TestHooks::test_wrong_hook_signatures, test/test_jit.py::TestHooks::test_wrong_pre_hook_signatures, test/test_jit.py::TestWarn::test_warn, test/test_jit.py::TestWarn::test_warn_multiple_calls_multiple_warnings, test/test_jit.py::TestWarn::test_warn_multiple_calls_same_func_diff_stack, test/test_jit.py::TestWarn::test_warn_once_per_func, test/test_jit.py::TestWarn::test_warn_once_per_func_in_loop, test/test_jit.py::TestWarn::test_warn_only_once, test/test_jit.py::TestWarn::test_warn_only_once_in_loop_func, test/test_jit.py::TestIsinstance::test_bool, test/test_jit.py::TestIsinstance::test_dict, test/test_jit.py::TestIsinstance::test_dict_nested, test/test_jit.py::TestIsinstance::test_dict_no_contained_type, test/test_jit.py::TestIsinstance::test_dict_tensor, test/test_jit.py::TestIsinstance::test_empty_container_special_cases, test/test_jit.py::TestIsinstance::test_empty_container_throws_warning_in_eager, test/test_jit.py::TestIsinstance::test_float, test/test_jit.py::TestIsinstance::test_if_else, test/test_jit.py::TestIsinstance::test_in_if, test/test_jit.py::TestIsinstance::test_in_while_loop, test/test_jit.py::TestIsinstance::test_int, test/test_jit.py::TestIsinstance::test_list, test/test_jit.py::TestIsinstance::test_list_nested, test/test_jit.py::TestIsinstance::test_list_no_contained_type, test/test_jit.py::TestIsinstance::test_list_tensor, test/test_jit.py::TestIsinstance::test_list_tensor_type_true, test/test_jit.py::TestIsinstance::test_nontuple_container_rhs_throws_in_eager, test/test_jit.py::TestIsinstance::test_optional, test/test_jit.py::TestIsinstance::test_optional_nested, test/test_jit.py::TestIsinstance::test_optional_no_contained_type, test/test_jit.py::TestIsinstance::test_optional_none, test/test_jit.py::TestIsinstance::test_tensor_type_false, test/test_jit.py::TestIsinstance::test_tuple, test/test_jit.py::TestIsinstance::test_tuple_nested, test/test_jit.py::TestIsinstance::test_tuple_no_contained_type, test/test_jit.py::TestIsinstance::test_tuple_rhs, test/test_jit.py::TestIsinstance::test_tuple_tensor, test/test_jit.py::TestIsinstance::test_type_refinement, test/test_jit.py::TestPythonBuiltinOP::test_add, test/test_jit.py::TestPythonBuiltinOP::test_adv_indexing_list, test/test_jit.py::TestPythonBuiltinOP::test_advancedindex, test/test_jit.py::TestPythonBuiltinOP::test_gather, test/test_jit.py::TestPythonBuiltinOP::test_index, test/test_jit.py::TestPythonBuiltinOP::test_index_ellipses, test/test_jit.py::TestPythonBuiltinOP::test_inf, test/test_jit.py::TestPythonBuiltinOP::test_matmul_py3, test/test_jit.py::TestPythonBuiltinOP::test_mul, test/test_jit.py::TestPythonBuiltinOP::test_pow, test/test_jit.py::TestPythonBuiltinOP::test_random, test/test_jit.py::TestPythonBuiltinOP::test_slice, test/test_jit.py::TestPythonBuiltinOP::test_stepped_tuple_slicing, test/test_jit.py::TestPythonBuiltinOP::test_str_to_float, test/test_jit.py::TestPythonBuiltinOP::test_triple, test/test_jit.py::TestTyping::test_bool_list_io, test/test_jit.py::TestTyping::test_dict_comprehension, test/test_jit.py::TestTyping::test_dict_comprehension_scope, test/test_jit.py::TestTyping::test_dict_comprehension_with_type_annotation, test/test_jit.py::TestTyping::test_dict_in_not_in, test/test_jit.py::TestTyping::test_dict_invalid_annotations, test/test_jit.py::TestTyping::test_dict_type_refinement_annotation_key_mismatch, test/test_jit.py::TestTyping::test_dict_type_refinement_annotation_value_mismatch, test/test_jit.py::TestTyping::test_for_in_dict, test/test_jit.py::TestTyping::test_for_in_string, test/test_jit.py::TestTyping::test_for_tuple_assign, test/test_jit.py::TestTyping::test_for_tuple_unpack, test/test_jit.py::TestTyping::test_inherited_annotations_python_310, test/test_jit.py::TestTyping::test_list_io, test/test_jit.py::TestTyping::test_list_iterables, test/test_jit.py::TestTyping::test_list_sum, test/test_jit.py::TestTyping::test_list_type_refinement_annotation_element_mismatch, test/test_jit.py::TestTyping::test_list_unification, test/test_jit.py::TestTyping::test_multiple_assign, test/test_jit.py::TestTyping::test_namedtuple_error_source_attribution, test/test_jit.py::TestTyping::test_namedtuple_good_error, test/test_jit.py::TestTyping::test_namedtuple_py2, test/test_jit.py::TestTyping::test_namedtuple_redefine, test/test_jit.py::TestTyping::test_nested_list, test/test_jit.py::TestTyping::test_opt_opt_refinement, test/test_jit.py::TestTyping::test_optional_conversion, test/test_jit.py::TestTyping::test_optional_refinement, test/test_jit.py::TestTyping::test_optional_tuple, test/test_jit.py::TestTyping::test_singleton_tuple_unpack, test/test_jit.py::TestTyping::test_sum_list_diff_elms, test/test_jit.py::TestTyping::test_sum_list_empty, test/test_jit.py::TestTyping::test_sum_list_literal, test/test_jit.py::TestTyping::test_sum_list_one, test/test_jit.py::TestTyping::test_sum_list_wrong_type, test/test_jit.py::TestTyping::test_tuple_assignments, test/test_jit.py::TestTyping::test_tuple_create_return, test/test_jit.py::TestTyping::test_tuple_io, test/test_jit.py::TestTyping::test_tuple_keyword, test/test_jit.py::TestTyping::test_tuple_specialization, test/test_jit.py::TestHash::test_hash_bool, test/test_jit.py::TestHash::test_hash_device, test/test_jit.py::TestHash::test_hash_float, test/test_jit.py::TestHash::test_hash_int, test/test_jit.py::TestHash::test_hash_none, test/test_jit.py::TestHash::test_hash_string, test/test_jit.py::TestHash::test_hash_tensor, test/test_jit.py::TestHash::test_hash_tuple, test/test_jit.py::TestHash::test_hash_tuple_nested_unhashable_type, test/test_jit.py::TestComplex::test_binary_op_complex_tensor, test/test_jit.py::TestComplex::test_comparison_ops, test/test_jit.py::TestComplex::test_complex_constants_and_ops, test/test_jit.py::TestComplex::test_complex_constructor, test/test_jit.py::TestComplex::test_complex_list_sum, test/test_jit.py::TestComplex::test_complex_parse, test/test_jit.py::TestComplex::test_complexdict, test/test_jit.py::TestComplex::test_complexlist, test/test_jit.py::TestComplex::test_div, test/test_jit.py::TestComplex::test_infj_nanj_pickle, test/test_jit.py::TestComplex::test_pickle, test/test_jit.py::TestComplex::test_script, test/test_jit.py::TestComplex::test_tensor_attributes, test/test_jit.py::TestComplex::test_torch_complex_constructor_with_tensor, test/test_jit.py::TestJitUtils::test_checkscriptassertraisesregex, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_hybrid, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_keyword_only, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_positional_only, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_positional_or_keyword, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_var_keyword, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_var_positional, test/test_jit.py::TestJitUtils::test_no_tracer_warn_context_manager, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_annotation_and_init_annotation, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_annotation_only, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_jit_annotation, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_dict, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_dict_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_list, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_list_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_optional, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_tensor, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_falsy_base_type, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_nonempty_container, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_attribute, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_dict, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_dict_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_list, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_list_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_optional, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_torch_jit_import, test/test_jit.py::TestTypesAndAnnotation::test_annotate_outside_init, test/test_jit.py::TestTypesAndAnnotation::test_bad_types, test/test_jit.py::TestTypesAndAnnotation::test_ignore_with_types, test/test_jit.py::TestTypesAndAnnotation::test_ignoring_fn_with_nonscriptable_types, test/test_jit.py::TestTypesAndAnnotation::test_ignoring_module_attributes, test/test_jit.py::TestTypesAndAnnotation::test_inferred_type_error_message, test/test_jit.py::TestTypesAndAnnotation::test_mismatched_annotation, test/test_jit.py::TestTypesAndAnnotation::test_optional_no_element_type_annotation, test/test_jit.py::TestTypesAndAnnotation::test_parser_bug, test/test_jit.py::TestTypesAndAnnotation::test_pep585_type, test/test_jit.py::TestTypesAndAnnotation::test_python_callable, test/test_jit.py::TestTypesAndAnnotation::test_reannotate, test/test_jit.py::TestTypesAndAnnotation::test_tuple_no_element_type_annotation, test/test_jit.py::TestTypesAndAnnotation::test_type_annotate_py3, test/test_jit.py::TestTypesAndAnnotation::test_types_as_values, test/test_jit.py::TestTypesAndAnnotation::test_unimported_type_resolution, test/test_jit.py::TestMisc::test_broadcasting_list, test/test_jit.py::TestMisc::test_export_opnames_interface, test/test_jit.py::TestMisc::test_future_isinstance, test/test_jit.py::TestMisc::test_hacked_twin, test/test_jit.py::TestMisc::test_if_returning_any, test/test_jit.py::TestMisc::test_jit_get_operation_order, test/test_jit.py::TestMisc::test_joined_str, test/test_jit.py::TestMisc::test_kwarg_support, test/test_jit.py::TestMisc::test_legacy_tensor_constructor, test/test_jit.py::TestMisc::test_list_literal_infer, test/test_jit.py::TestMisc::test_math_inf, test/test_jit.py::TestMisc::test_parse_ir_annotate, test/test_jit.py::TestMisc::test_parse_ir_single_element_tensor_negative, test/test_jit.py::TestMisc::test_parse_ir_single_element_tensor_positive, test/test_jit.py::TestMisc::test_pow_multiple_dtype, test/test_jit.py::TestMisc::test_script_many_decorators, test/test_jit.py::TestMisc::test_str_refine_any, test/test_jit.py::TestMisc::test_subexpression_Dict_int_Future, test/test_jit.py::TestMisc::test_subexpression_Future_annotate, test/test_jit.py::TestMisc::test_subexpression_List_Future, test/test_jit.py::TestMisc::test_subexpression_Optional, test/test_jit.py::TestMisc::test_subexpression_Tuple_int_int_Future, test/test_jit.py::TestMisc::test_tuple_subscripted_assign, test/test_jit.py::TestMisc::test_unsafe_hacked_twin, test/test_jit.py::TestUpgraders::test_add_value_to_version_map, test/test_jit.py::TestUpgraders::test_aten_div_scalar_at_3, test/test_jit.py::TestUpgraders::test_aten_div_tensor_at_3, test/test_jit.py::TestUpgraders::test_aten_div_tensor_out_at_3, test/test_jit.py::TestUpgraders::test_aten_full_at_4, test/test_jit.py::TestUpgraders::test_aten_full_other_variants, test/test_jit.py::TestUpgraders::test_aten_full_out_at_4, test/test_jit.py::TestUpgraders::test_aten_linspace, test/test_jit.py::TestUpgraders::test_aten_linspace_out, test/test_jit.py::TestUpgraders::test_aten_logspace, test/test_jit.py::TestUpgraders::test_aten_logspace_out, test/test_jit.py::TestUpgraders::test_aten_test_serialization, test/test_jit.py::TestUpgraders::test_populated_test_upgrader_graph, test/test_jit.py::TestUpgraders::test_populated_upgrader_graph, test/test_jit.py::TestTensorCreationOps::test_randperm_default_dtype, test/test_jit.py::TestTensorCreationOps::test_randperm_specifed_dtype, test/test_jit.py::TestTensorCreationOps::test_tril_indices_default_dtype, test/test_jit.py::TestTensorCreationOps::test_tril_indices_specified_dtype, test/test_jit.py::TestTensorCreationOps::test_triu_indices_default_dtype, test/test_jit.py::TestTensorCreationOps::test_triu_indices_specified_dtype, test/test_jit.py::TestModuleAPIs::test_customized_state_dict_methods, test/test_jit.py::TestModuleAPIs::test_default_state_dict_methods, test/test_jit.py::TestModuleAPIs::test_submodule_customized_state_dict_methods, test/test_jit.py::TestScriptProfile::test_basic, test/test_jit.py::TestScriptProfile::test_empty, test/test_jit.py::TestScriptProfile::test_multi, test/test_jit.py::TestScriptProfile::test_script, test/test_jit.py::TestScriptProfile::test_section, test/test_jit.py::TestFunctionalToInplaceActivation::test_check_no_type_promotion, test/test_jit.py::TestFunctionalToInplaceActivation::test_functional_to_inplace_activation, test/test_jit.py::TestFunctionalToInplaceActivation::test_no_functional_to_inplace, test/test_jit.py::TestFunctionalToInplaceActivation::test_resnet18_correctness, test/test_jit.py::TestInplaceToFunctionalActivation::test_inplace_to_functional_activation, test/test_jit.py::TestInplaceToFunctionalActivation::test_resnet18_correctness, test/test_jit.py::TestParametrization::test_scriptable, test/test_jit.py::TestParametrization::test_traceable, test/test_jit.py::TestGetDefaultAttr::test_getattr_named_tuple, test/test_jit.py::TestGetDefaultAttr::test_getattr_tuple, test/test_jit.py::TestGetDefaultAttr::test_getattr_with_default, test/test_jit.py::TestAtenPow::test_aten_pow_zero_negative_exponent, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_1, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_2, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_3, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_4, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_insert_pre_packed_linear_before_inline_and_conv_2d_op, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_insert_pre_packed_linear_op, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_replace_conv1d_with_conv2d, test/test_jit.py::TestUnion::test_check_union_annotation, test/test_jit.py::TestUnion::test_union_T_None_is_equivalent_to_optional_T, test/test_jit.py::TestUnion::test_union_argument_order_is_ignored, test/test_jit.py::TestUnion::test_union_argument_order_is_ignored_container, test/test_jit.py::TestUnion::test_union_as_annotation, test/test_jit.py::TestUnion::test_union_as_annotation_in_typed_container, test/test_jit.py::TestUnion::test_union_as_annotation_py2, test/test_jit.py::TestUnion::test_union_as_dict_key, test/test_jit.py::TestUnion::test_union_as_dict_value, test/test_jit.py::TestUnion::test_union_as_internal_tuple_type, test/test_jit.py::TestUnion::test_union_branching_does_not_autoinfer_undeclared_union, test/test_jit.py::TestUnion::test_union_branching_does_not_widen_existing_inferred_type, test/test_jit.py::TestUnion::test_union_branching_with_union_return_and_homogenous_types, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type_empty_container, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type_union, test/test_jit.py::TestUnion::test_union_in_class_constructor, test/test_jit.py::TestUnion::test_union_memory_aliasing, test/test_jit.py::TestUnion::test_union_module_with_union_class_variable, test/test_jit.py::TestUnion::test_union_module_with_union_instance_variable, test/test_jit.py::TestUnion::test_union_optional_of_union_is_flattened, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_container, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_optional, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_subtyping, test/test_jit.py::TestUnion::test_union_return_type, test/test_jit.py::TestUnion::test_union_schema_matching_on_internal_type, test/test_jit.py::TestUnion::test_union_serialization_preserves_type_annotations, test/test_jit.py::TestUnion::test_union_subclasses_larger_union, test/test_jit.py::TestUnion::test_union_subtractive_refinement, test/test_jit.py::TestUnion::test_union_subtractive_refinement_with_container, test/test_jit.py::TestUnion::test_union_type_refinement, test/test_jit.py::TestUnion::test_union_type_refinement_internal_declaration, test/test_jit.py::TestUnion::test_union_type_refinement_partial_static_refinement_tuple_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_partial_static_refinement_union_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_statically_false, test/test_jit.py::TestUnion::test_union_type_refinement_statically_true, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs_noncontained_type, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs_union, test/test_jit.py::TestUnion::test_union_type_refinement_union_rhs, test/test_jit.py::TestUnion::test_union_variable_can_be_reassigned, test/test_jit.py::TestUnion::test_union_with_collections, test/test_jit.py::TestUnion::test_union_with_dict_assignment, test/test_jit.py::TestUnion::test_union_with_enum, test/test_jit.py::TestUnion::test_union_with_list_assignment, test/test_jit.py::TestUnion::test_union_with_scalar_values, test/test_jit.py::TestUnion::test_unions_of_a_single_argument_vanish, test/test_jit.py::TestUnion::test_unions_of_unions_are_flattened, test/test_jit.py::TestBatchMM::test_batch_mm_no_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_permitted_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation_if_node, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation_multiple_adds, test/test_jit.py::TestBatchMM::test_batch_mm_side_permitted_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_side_prohibited_mutation_common_side, test/test_jit.py::TestBatchMM::test_batch_mm_side_prohibited_mutation_uncommon_side, test/test_jit.py::TestDtypeAnalysis::test_binary_scalar, test/test_jit.py::TestDtypeAnalysis::test_binary_tensors, test/test_jit.py::TestDtypeAnalysis::test_combined, test/test_jit.py::TestDtypeAnalysis::test_conv_no_mixed_args, test/test_jit.py::TestDtypeAnalysis::test_custom_rules, test/test_jit.py::TestDtypeAnalysis::test_unary, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float64, test/test_jit.py::TestDeviceAnalysis::test_custom_device_op, test/test_jit.py::TestDeviceAnalysis::test_device_apply, test/test_jit.py::TestDeviceAnalysis::test_device_arg, test/test_jit.py::TestDeviceAnalysis::test_device_if_propagation, test/test_jit.py::TestDeviceAnalysis::test_if_loop_mix, test/test_jit.py::TestDeviceAnalysis::test_loop_device_change, test/test_jit.py::TestDeviceAnalysis::test_loop_simple, test/test_jit.py::TestDeviceAnalysis::test_mobilenet, test/test_jit.py::TestDeviceAnalysis::test_nested_loops, test/test_jit.py::TestDeviceAnalysis::test_set_dtype, test/test_jit.py::TestDeviceAnalysis::test_simple, test/test_jit.py::TestDeviceAnalysis::test_tensor_as_fns, test/test_jit.py::TestDeviceAnalysis::test_while_change, test/test_jit.py::TestDeviceAnalysis::test_zerodim_cpu, test/test_jit.py::TestDeviceAnalysis::test_zerodim_gpu, test/test_jit.py::TestDeviceAnalysis::test_zerodim_no_device, test/test_jit.py::TestDCE::test_mutated_loop, test/test_jit.py::TestDCE::test_mutated_simple, test/test_jit.py::TestDCE::test_setattr_no_aliasdb, test/test_jit.py::TestDCE::test_setattr_removed, test/test_jit.py::TestSparse::test_freeze_sparse_coo, test/test_jit.py::TestSparse::test_freeze_sparse_csr, test/test_jit.py::TestSparse::test_serialize_sparse_coo, test/test_jit.py::TestSparse::test_serialize_sparse_csr, test/test_jit.py::TestTensorMethods::test_getitem, test/test_jit.py::TestTensorMethods::test_getitem_invalid, test/test_jit.py::TestDataclasses::test__post_init__, test/test_jit.py::TestDataclasses::test_comparators, test/test_jit.py::TestDataclasses::test_custom__eq__, test/test_jit.py::TestDataclasses::test_default_factories, test/test_jit.py::TestDataclasses::test_init_vars, test/test_jit.py::TestDataclasses::test_no_source, test/test_jit.py::TestDataclasses::test_use_unregistered_dataclass_raises, test/test_jit.py::TestGenerator::test_default_generator, test/test_jit.py::TestGenerator::test_generator_arg, test/test_jit.py::TestGenerator::test_save_load, test/test_jit.py::TestGenerator::test_script, test/test_jit.py::TestGenerator::test_trace, test/test_jit.py::TestJitProfiler::test_profiler, test/test_jit.py::TestJit::test_ModuleList, test/test_jit.py::TestJit::test_Sequential, test/test_jit.py::TestJit::test_T_mT_H_mH, test/test_jit.py::TestJit::test_add_relu_fusion, test/test_jit.py::TestJit::test_arg_configurations, test/test_jit.py::TestJit::test_attrs, test/test_jit.py::TestJit::test_batchnorm, test/test_jit.py::TestJit::test_big, test/test_jit.py::TestJit::test_conj_transpose, test/test_jit.py::TestJit::test_constant_insertion, test/test_jit.py::TestJit::test_constant_prop_aliasing_type, test/test_jit.py::TestJit::test_constant_prop_exception, test/test_jit.py::TestJit::test_constant_prop_if_constant, test/test_jit.py::TestJit::test_constant_prop_if_inline, test/test_jit.py::TestJit::test_constant_prop_loop_constant, test/test_jit.py::TestJit::test_constant_prop_nested, test/test_jit.py::TestJit::test_constant_prop_none, test/test_jit.py::TestJit::test_constant_prop_print, test/test_jit.py::TestJit::test_constant_prop_rand, test/test_jit.py::TestJit::test_constant_prop_remove_output, test/test_jit.py::TestJit::test_constant_prop_simple, test/test_jit.py::TestJit::test_constants_pkl, test/test_jit.py::TestJit::test_cpp, test/test_jit.py::TestJit::test_cse, test/test_jit.py::TestJit::test_cse_not_introduce_aliasing, test/test_jit.py::TestJit::test_cu_escaped_number, test/test_jit.py::TestJit::test_cuda_export_restore, test/test_jit.py::TestJit::test_debug_flush_compilation_cache, test/test_jit.py::TestJit::test_decompose_addmm, test/test_jit.py::TestJit::test_device_not_equal, test/test_jit.py::TestJit::test_diff_subgraph_clones_constants, test/test_jit.py::TestJit::test_disabled, test/test_jit.py::TestJit::test_dropout, test/test_jit.py::TestJit::test_dropout_cuda, test/test_jit.py::TestJit::test_dropout_func_requires_grad, test/test_jit.py::TestJit::test_dropout_module_requires_grad, test/test_jit.py::TestJit::test_einsum, test/test_jit.py::TestJit::test_element_size, test/test_jit.py::TestJit::test_expand_fold_quant_inputs, test/test_jit.py::TestJit::test_expand_quantlint, test/test_jit.py::TestJit::test_export_batchnorm, test/test_jit.py::TestJit::test_export_dropout, test/test_jit.py::TestJit::test_export_lstm, test/test_jit.py::TestJit::test_export_opnames, test/test_jit.py::TestJit::test_export_rnn, test/test_jit.py::TestJit::test_flags, test/test_jit.py::TestJit::test_function_default_values, test/test_jit.py::TestJit::test_hide_source_ranges_context_manager, test/test_jit.py::TestJit::test_import_method, test/test_jit.py::TestJit::test_inferred_as_tensor, test/test_jit.py::TestJit::test_layout, test/test_jit.py::TestJit::test_matrix_conj_transpose, test/test_jit.py::TestJit::test_matrix_transpose, test/test_jit.py::TestJit::test_module_default_values, test/test_jit.py::TestJit::test_mutable_default_values, test/test_jit.py::TestJit::test_native_dropout_corner_case, test/test_jit.py::TestJit::test_nn_conv, test/test_jit.py::TestJit::test_nn_lp_pool1d, test/test_jit.py::TestJit::test_nn_lp_pool2d, test/test_jit.py::TestJit::test_nn_padding, test/test_jit.py::TestJit::test_nn_padding_functional, test/test_jit.py::TestJit::test_no_erroneous_warnings, test/test_jit.py::TestJit::test_non_ascii_string, test/test_jit.py::TestJit::test_numel, test/test_jit.py::TestJit::test_pattern_based_module_rewrite, test/test_jit.py::TestJit::test_pattern_based_rewrite, test/test_jit.py::TestJit::test_pattern_based_rewrite_with_source_range_preserved, test/test_jit.py::TestJit::test_peephole_optimize_shape_ops, test/test_jit.py::TestJit::test_pretty_printer, test/test_jit.py::TestJit::test_print_classes_module, test/test_jit.py::TestJit::test_print_op_module, test/test_jit.py::TestJit::test_print_torch_ops_modules, test/test_jit.py::TestJit::test_python_bindings, test/test_jit.py::TestJit::test_python_ir, test/test_jit.py::TestJit::test_python_ivalue, test/test_jit.py::TestJit::test_pytorch_jit_env_off, test/test_jit.py::TestJit::test_recursive_cse, test/test_jit.py::TestJit::test_repeat_interleave_script, test/test_jit.py::TestJit::test_restore_device, test/test_jit.py::TestJit::test_restore_device_cuda, test/test_jit.py::TestJit::test_restore_shared_storage_on_cuda, test/test_jit.py::TestJit::test_script_autograd_grad, test/test_jit.py::TestJit::test_script_backward, test/test_jit.py::TestJit::test_script_backward_twice, test/test_jit.py::TestJit::test_script_bool_literal_conversion, test/test_jit.py::TestJit::test_script_fn_pkl, test/test_jit.py::TestJit::test_script_fn_valid_name, test/test_jit.py::TestJit::test_script_tensor_type, test/test_jit.py::TestJit::test_shape_analysis_broadcast, test/test_jit.py::TestJit::test_shape_analysis_masked_select, test/test_jit.py::TestJit::test_shape_analysis_unsqueeze_in_loop, test/test_jit.py::TestJit::test_sparse_csr_tensors, test/test_jit.py::TestJit::test_sparse_tensors, test/test_jit.py::TestJit::test_torch_complex, test/test_jit.py::TestJit::test_torch_load_error, test/test_jit.py::TestJit::test_torch_load_zipfile_check, test/test_jit.py::TestJit::test_torch_ops_kwonly, test/test_jit.py::TestJit::test_torch_ops_overloaded, test/test_jit.py::TestJit::test_torch_sum, test/test_jit.py::TestJit::test_trace_retains_train, test/test_jit.py::TestJit::test_train_eval, test/test_jit.py::TestJit::test_transpose, test/test_jit.py::TestJit::test_unchecked_cast, test/test_jit.py::TestJit::test_unique_state_dict, test/test_jit.py::TestJit::test_verify, test/test_jit.py::TestJit::test_warnings, test/test_jit.py::TestFrontend::test_dictionary_as_example_inputs_for_jit_trace, test/test_jit.py::TestFrontend::test_instancing_error, test/test_jit.py::TestScript::test_add_out, test/test_jit.py::TestScript::test_add_tuple_different_types, test/test_jit.py::TestScript::test_add_tuple_non_optional, test/test_jit.py::TestScript::test_add_tuple_optional, test/test_jit.py::TestScript::test_add_tuple_same_types, test/test_jit.py::TestScript::test_addmm_grad, test/test_jit.py::TestScript::test_alias_covariant_type_containers, test/test_jit.py::TestScript::test_all, test/test_jit.py::TestScript::test_annot_ast_mypy_fn, test/test_jit.py::TestScript::test_annot_ast_mypy_method, test/test_jit.py::TestScript::test_annot_ast_py3_fn, test/test_jit.py::TestScript::test_annot_ast_py3_method, test/test_jit.py::TestScript::test_annot_string_mypy_fn, test/test_jit.py::TestScript::test_annot_string_mypy_method, test/test_jit.py::TestScript::test_annot_string_py3_fn, test/test_jit.py::TestScript::test_annot_string_py3_method, test/test_jit.py::TestScript::test_annotated_script_fn, test/test_jit.py::TestScript::test_annotated_script_fn_arg_mismatch, test/test_jit.py::TestScript::test_annotated_script_fn_return_mismatch, test/test_jit.py::TestScript::test_annotated_script_method, test/test_jit.py::TestScript::test_annoying_doubles, test/test_jit.py::TestScript::test_any, test/test_jit.py::TestScript::test_assert_is_scripting_metacompile, test/test_jit.py::TestScript::test_assertion_optional_refinement, test/test_jit.py::TestScript::test_attr_module_constants, test/test_jit.py::TestScript::test_attr_qscheme_script, test/test_jit.py::TestScript::test_attribute_in_init, test/test_jit.py::TestScript::test_attribute_serialization, test/test_jit.py::TestScript::test_attribute_unpickling, test/test_jit.py::TestScript::test_augmented_assign, test/test_jit.py::TestScript::test_autodiff_complex, test/test_jit.py::TestScript::test_backend_cudnn_enabled, test/test_jit.py::TestScript::test_bad_multiline_annotations, test/test_jit.py::TestScript::test_bailout_loop_carried_deps_name_clash, test/test_jit.py::TestScript::test_bailout_loop_counter_transition, test/test_jit.py::TestScript::test_batch_norm_inference_backward_cuda, test/test_jit.py::TestScript::test_batchnorm_fuser_cpu, test/test_jit.py::TestScript::test_big_float_literals, test/test_jit.py::TestScript::test_big_int_literals, test/test_jit.py::TestScript::test_binary_op_shape, test/test_jit.py::TestScript::test_bitwise_ops, test/test_jit.py::TestScript::test_block_input_grad_in_loop, test/test_jit.py::TestScript::test_bool_augassign_bitwise_and, test/test_jit.py::TestScript::test_bool_augassign_bitwise_or, test/test_jit.py::TestScript::test_bool_augassign_bitwise_xor, test/test_jit.py::TestScript::test_bool_dispatch, test/test_jit.py::TestScript::test_boolean_literal_constant_metacompile, test/test_jit.py::TestScript::test_break_continue_error, test/test_jit.py::TestScript::test_breaks_continues, test/test_jit.py::TestScript::test_builtin_args, test/test_jit.py::TestScript::test_builtin_args_fails, test/test_jit.py::TestScript::test_builtin_function_attributes, test/test_jit.py::TestScript::test_builtin_use_as_value, test/test_jit.py::TestScript::test_call_ge, test/test_jit.py::TestScript::test_call_python_fn_from_script_fn, test/test_jit.py::TestScript::test_call_python_fn_from_script_module, test/test_jit.py::TestScript::test_call_python_fn_from_traced_module, test/test_jit.py::TestScript::test_call_python_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_python_mod_from_script_fn, test/test_jit.py::TestScript::test_call_python_mod_from_script_module, test/test_jit.py::TestScript::test_call_python_mod_from_traced_module, test/test_jit.py::TestScript::test_call_python_mod_from_tracing_fn, test/test_jit.py::TestScript::test_call_script_fn_from_script_fn, test/test_jit.py::TestScript::test_call_script_fn_from_script_module, test/test_jit.py::TestScript::test_call_script_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_script_mod_from_script_fn, test/test_jit.py::TestScript::test_call_script_mod_from_script_module, test/test_jit.py::TestScript::test_call_script_mod_from_tracing_fn, test/test_jit.py::TestScript::test_call_traced_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_traced_mod_from_tracing_fn, test/test_jit.py::TestScript::test_calls_in_type_annotations, test/test_jit.py::TestScript::test_canonicalize_control_outputs, test/test_jit.py::TestScript::test_cast, test/test_jit.py::TestScript::test_cat, test/test_jit.py::TestScript::test_cat_lifts, test/test_jit.py::TestScript::test_chr, test/test_jit.py::TestScript::test_circular_dependency, test/test_jit.py::TestScript::test_class_as_attribute, test/test_jit.py::TestScript::test_class_attribute, test/test_jit.py::TestScript::test_class_attribute_in_script, test/test_jit.py::TestScript::test_class_with_comment_at_lower_indentation, test/test_jit.py::TestScript::test_code_with_constants, test/test_jit.py::TestScript::test_code_with_constants_restore, test/test_jit.py::TestScript::test_comment_ignore_indent, test/test_jit.py::TestScript::test_compare_two_bool_inputs, test/test_jit.py::TestScript::test_compile_module_with_constant, test/test_jit.py::TestScript::test_conditional_casting, test/test_jit.py::TestScript::test_constant_as_attr, test/test_jit.py::TestScript::test_constant_pooling_introduce_aliasing, test/test_jit.py::TestScript::test_constant_pooling_none, test/test_jit.py::TestScript::test_constant_pooling_same_identity, test/test_jit.py::TestScript::test_context_manager, test/test_jit.py::TestScript::test_conv_error, test/test_jit.py::TestScript::test_convert_base, test/test_jit.py::TestScript::test_cpp_function_tensor_str, test/test_jit.py::TestScript::test_cpp_module_iterator, test/test_jit.py::TestScript::test_desugar_module, test/test_jit.py::TestScript::test_device_kwarg, test/test_jit.py::TestScript::test_device_type, test/test_jit.py::TestScript::test_device_type_cuda, test/test_jit.py::TestScript::test_dict_str, test/test_jit.py::TestScript::test_dir, test/test_jit.py::TestScript::test_divmod, test/test_jit.py::TestScript::test_dominated_bailout, test/test_jit.py::TestScript::test_dropout_eval, test/test_jit.py::TestScript::test_dtype_attr, test/test_jit.py::TestScript::test_dtype_op_shape, test/test_jit.py::TestScript::test_dtype_op_shape2, test/test_jit.py::TestScript::test_early_return_closure, test/test_jit.py::TestScript::test_early_return_fork_join, test/test_jit.py::TestScript::test_early_return_rewrite, test/test_jit.py::TestScript::test_early_return_type_refinement, test/test_jit.py::TestScript::test_early_returns_loops, test/test_jit.py::TestScript::test_ellipsis_const_end, test/test_jit.py::TestScript::test_ellipsis_const_mid, test/test_jit.py::TestScript::test_ellipsis_const_mid_select, test/test_jit.py::TestScript::test_ellipsis_const_start, test/test_jit.py::TestScript::test_ellipsis_end, test/test_jit.py::TestScript::test_ellipsis_mid, test/test_jit.py::TestScript::test_ellipsis_mid_select, test/test_jit.py::TestScript::test_ellipsis_start, test/test_jit.py::TestScript::test_embedding_renorm_grad_error, test/test_jit.py::TestScript::test_empty_like_memory_format_bc, test/test_jit.py::TestScript::test_empty_tuple_str, test/test_jit.py::TestScript::test_enumerate_modlist_range, test/test_jit.py::TestScript::test_erase_number_types, test/test_jit.py::TestScript::test_error, test/test_jit.py::TestScript::test_error_stacktrace, test/test_jit.py::TestScript::test_error_stacktrace_interface, test/test_jit.py::TestScript::test_eval_python, test/test_jit.py::TestScript::test_exception_exits_closure, test/test_jit.py::TestScript::test_exceptions_with_control_flow, test/test_jit.py::TestScript::test_expand, test/test_jit.py::TestScript::test_fibb, test/test_jit.py::TestScript::test_fibb_totally_better, test/test_jit.py::TestScript::test_file_format_serialization, test/test_jit.py::TestScript::test_file_line_error, test/test_jit.py::TestScript::test_file_line_error_class_defn, test/test_jit.py::TestScript::test_file_line_graph, test/test_jit.py::TestScript::test_file_line_save_load, test/test_jit.py::TestScript::test_file_line_string, test/test_jit.py::TestScript::test_file_line_trace, test/test_jit.py::TestScript::test_file_reader_no_memory_leak, test/test_jit.py::TestScript::test_filecheck, test/test_jit.py::TestScript::test_filecheck_parse, test/test_jit.py::TestScript::test_first_class_calls, test/test_jit.py::TestScript::test_first_class_module, test/test_jit.py::TestScript::test_floor_div, test/test_jit.py::TestScript::test_floordiv, test/test_jit.py::TestScript::test_for_else, test/test_jit.py::TestScript::test_for_in_dict, test/test_jit.py::TestScript::test_for_in_enumerate, test/test_jit.py::TestScript::test_for_in_range, test/test_jit.py::TestScript::test_for_in_range_ast, test/test_jit.py::TestScript::test_for_in_range_dynamic, test/test_jit.py::TestScript::test_for_in_range_if_ast, test/test_jit.py::TestScript::test_for_in_range_start_end, test/test_jit.py::TestScript::test_for_in_range_start_end_step, test/test_jit.py::TestScript::test_for_in_range_zero_step, test/test_jit.py::TestScript::test_for_in_string, test/test_jit.py::TestScript::test_for_in_tensors, test/test_jit.py::TestScript::test_for_in_tensors_fail_scalar, test/test_jit.py::TestScript::test_for_in_tensors_nested, test/test_jit.py::TestScript::test_for_in_tensors_rank0, test/test_jit.py::TestScript::test_for_in_zip, test/test_jit.py::TestScript::test_for_in_zip_enumerate, test/test_jit.py::TestScript::test_for_tuple_assign, test/test_jit.py::TestScript::test_for_tuple_unpack, test/test_jit.py::TestScript::test_format, test/test_jit.py::TestScript::test_func_call, test/test_jit.py::TestScript::test_function_compilation_caching, test/test_jit.py::TestScript::test_function_overload_misuse, test/test_jit.py::TestScript::test_function_overloading_isinstance, test/test_jit.py::TestScript::test_function_overloads, test/test_jit.py::TestScript::test_fuser_double_float_codegen, test/test_jit.py::TestScript::test_fuser_double_literal_precision, test/test_jit.py::TestScript::test_fuser_multiple_blocks, test/test_jit.py::TestScript::test_gather_dynamic_index, test/test_jit.py::TestScript::test_generic_list_errors, test/test_jit.py::TestScript::test_get_set_state, test/test_jit.py::TestScript::test_get_set_state_with_tensors, test/test_jit.py::TestScript::test_grad_from_script, test/test_jit.py::TestScript::test_hash, test/test_jit.py::TestScript::test_hex_literals, test/test_jit.py::TestScript::test_id, test/test_jit.py::TestScript::test_if, test/test_jit.py::TestScript::test_if_define, test/test_jit.py::TestScript::test_if_different_type, test/test_jit.py::TestScript::test_if_for_in_range, test/test_jit.py::TestScript::test_if_is_none_dispatch, test/test_jit.py::TestScript::test_if_list_cat, test/test_jit.py::TestScript::test_if_nest_while, test/test_jit.py::TestScript::test_if_noelse, test/test_jit.py::TestScript::test_if_not_defined_error, test/test_jit.py::TestScript::test_if_supertype, test/test_jit.py::TestScript::test_ignore_decorator, test/test_jit.py::TestScript::test_ignored_as_value, test/test_jit.py::TestScript::test_ignored_method_binding, test/test_jit.py::TestScript::test_ignored_props, test/test_jit.py::TestScript::test_import_constants_not_specialized, test/test_jit.py::TestScript::test_in_for_and_comp_expr, test/test_jit.py::TestScript::test_in_operator_with_two_strings, test/test_jit.py::TestScript::test_index, test/test_jit.py::TestScript::test_index_select_shape_prop, test/test_jit.py::TestScript::test_index_with_tuple, test/test_jit.py::TestScript::test_indexing_error, test/test_jit.py::TestScript::test_infer_size, test/test_jit.py::TestScript::test_inferred_error_msg, test/test_jit.py::TestScript::test_inherit_method, test/test_jit.py::TestScript::test_inline_and_run_annotated_script_fn, test/test_jit.py::TestScript::test_inlined_graph, test/test_jit.py::TestScript::test_inlining_cleanup, test/test_jit.py::TestScript::test_inplace_add, test/test_jit.py::TestScript::test_inplace_copy_script, test/test_jit.py::TestScript::test_input_keyword_in_schema, test/test_jit.py::TestScript::test_int_cast, test/test_jit.py::TestScript::test_integral_shape_inference, test/test_jit.py::TestScript::test_interpret_graph, test/test_jit.py::TestScript::test_interpreter_fuzz, test/test_jit.py::TestScript::test_intlist_args, test/test_jit.py::TestScript::test_invalid_call_arguments, test/test_jit.py::TestScript::test_invalid_lhs_assignment, test/test_jit.py::TestScript::test_invalid_prefix_annotation, test/test_jit.py::TestScript::test_irparser, test/test_jit.py::TestScript::test_is_after_use, test/test_jit.py::TestScript::test_is_isnot, test/test_jit.py::TestScript::test_is_optional, test/test_jit.py::TestScript::test_is_scripting, test/test_jit.py::TestScript::test_is_scripting_metacompile, test/test_jit.py::TestScript::test_isinstance, test/test_jit.py::TestScript::test_isinstance_dynamic, test/test_jit.py::TestScript::test_isinstance_metacompile, test/test_jit.py::TestScript::test_isinstance_refinement, test/test_jit.py::TestScript::test_jitter_bug, test/test_jit.py::TestScript::test_keyword, test/test_jit.py::TestScript::test_kwarg_expansion_error, test/test_jit.py::TestScript::test_kwargs_error_msg, test/test_jit.py::TestScript::test_lazy_script, test/test_jit.py::TestScript::test_lhs_advanced_indexing_assignment, test/test_jit.py::TestScript::test_lhs_advanced_indexing_augmented_assignment, test/test_jit.py::TestScript::test_lhs_indexing, test/test_jit.py::TestScript::test_lhs_indexing_increment, test/test_jit.py::TestScript::test_lhs_indexing_increment_list, test/test_jit.py::TestScript::test_lhs_indexing_increment_list_prim, test/test_jit.py::TestScript::test_lhs_indexing_list, test/test_jit.py::TestScript::test_lhs_indexing_multi, test/test_jit.py::TestScript::test_linear_grad, test/test_jit.py::TestScript::test_list_comprehension_modulelist, test/test_jit.py::TestScript::test_list_comprehension_variable_write, test/test_jit.py::TestScript::test_list_iterables, test/test_jit.py::TestScript::test_list_python_op, test/test_jit.py::TestScript::test_list_unify, test/test_jit.py::TestScript::test_literal, test/test_jit.py::TestScript::test_literals, test/test_jit.py::TestScript::test_logical_short_circuit, test/test_jit.py::TestScript::test_loop_liveness, test/test_jit.py::TestScript::test_loop_unroll_negative, test/test_jit.py::TestScript::test_loop_unroll_unused_counter, test/test_jit.py::TestScript::test_loop_unrolling, test/test_jit.py::TestScript::test_loop_unrolling_const, test/test_jit.py::TestScript::test_loop_unrolling_nested, test/test_jit.py::TestScript::test_lower_nested_tuples, test/test_jit.py::TestScript::test_math_ops, test/test_jit.py::TestScript::test_maxpool_guard_elimination, test/test_jit.py::TestScript::test_meshgrid, test/test_jit.py::TestScript::test_method_casts_script, test/test_jit.py::TestScript::test_method_no_self, test/test_jit.py::TestScript::test_method_overloading, test/test_jit.py::TestScript::test_missing_getstate, test/test_jit.py::TestScript::test_mm_batching, test/test_jit.py::TestScript::test_module_apis, test/test_jit.py::TestScript::test_module_attrs, test/test_jit.py::TestScript::test_module_copy_with_attributes, test/test_jit.py::TestScript::test_module_copying, test/test_jit.py::TestScript::test_module_error, test/test_jit.py::TestScript::test_module_method_reassignment, test/test_jit.py::TestScript::test_module_none_attrs, test/test_jit.py::TestScript::test_module_parameters_and_buffers, test/test_jit.py::TestScript::test_module_str, test/test_jit.py::TestScript::test_module_with_params_called_fails, test/test_jit.py::TestScript::test_multi_reduction, test/test_jit.py::TestScript::test_multi_starred_expr_lhs, test/test_jit.py::TestScript::test_multiline_annot_ast_py3_fn, test/test_jit.py::TestScript::test_multiline_optional_future_refinement, test/test_jit.py::TestScript::test_multiline_string_dedents, test/test_jit.py::TestScript::test_multiple_assign, test/test_jit.py::TestScript::test_multiple_assignment, test/test_jit.py::TestScript::test_mutable_dce, test/test_jit.py::TestScript::test_mutable_dce_block, test/test_jit.py::TestScript::test_mutable_dce_graph_input, test/test_jit.py::TestScript::test_mutable_dce_indirect_wildcard_write, test/test_jit.py::TestScript::test_mutable_dce_indirect_wildcards, test/test_jit.py::TestScript::test_mutable_dce_list, test/test_jit.py::TestScript::test_mutable_dce_loop, test/test_jit.py::TestScript::test_mutable_dce_wildcards, test/test_jit.py::TestScript::test_mutate_constant, test/test_jit.py::TestScript::test_mypy_type_ignore, test/test_jit.py::TestScript::test_named_buffers_are_iterable, test/test_jit.py::TestScript::test_namedtuple_attr, test/test_jit.py::TestScript::test_namedtuple_default_values_Tensor_type, test/test_jit.py::TestScript::test_namedtuple_default_values_container_type, test/test_jit.py::TestScript::test_namedtuple_default_values_missing, test/test_jit.py::TestScript::test_namedtuple_default_values_simple_type, test/test_jit.py::TestScript::test_namedtuple_default_values_using_factory_constructor, test/test_jit.py::TestScript::test_namedtuple_python, test/test_jit.py::TestScript::test_namedtuple_type_inference, test/test_jit.py::TestScript::test_narrow_copy, test/test_jit.py::TestScript::test_nested_aug_assign, test/test_jit.py::TestScript::test_nested_bailouts, test/test_jit.py::TestScript::test_nested_breaks, test/test_jit.py::TestScript::test_nested_list_construct, test/test_jit.py::TestScript::test_nested_select_assign, test/test_jit.py::TestScript::test_nn_GRU, test/test_jit.py::TestScript::test_nn_LSTM, test/test_jit.py::TestScript::test_nn_LSTM_with_layers, test/test_jit.py::TestScript::test_nn_init, test/test_jit.py::TestScript::test_nn_init_generator, test/test_jit.py::TestScript::test_no_dtype_shape, test/test_jit.py::TestScript::test_no_self_arg_ignore_function, test/test_jit.py::TestScript::test_non_final_return, test/test_jit.py::TestScript::test_none_type_str, test/test_jit.py::TestScript::test_not, test/test_jit.py::TestScript::test_not_initialized_err, test/test_jit.py::TestScript::test_ntuple_builtins, test/test_jit.py::TestScript::test_number_abs, test/test_jit.py::TestScript::test_number_augassign, test/test_jit.py::TestScript::test_number_augassign_bitwise_lshift, test/test_jit.py::TestScript::test_number_augassign_bitwise_pow, test/test_jit.py::TestScript::test_number_augassign_bitwise_rshift, test/test_jit.py::TestScript::test_number_div, test/test_jit.py::TestScript::test_number_math, test/test_jit.py::TestScript::test_number_neg, test/test_jit.py::TestScript::test_oneline_func, test/test_jit.py::TestScript::test_op_dtype, test/test_jit.py::TestScript::test_operator_precedence, test/test_jit.py::TestScript::test_optional_list, test/test_jit.py::TestScript::test_optional_tensor, test/test_jit.py::TestScript::test_ord, test/test_jit.py::TestScript::test_override_magic, test/test_jit.py::TestScript::test_pack_tuple_into_non_var, test/test_jit.py::TestScript::test_pack_unpack_nested, test/test_jit.py::TestScript::test_pack_unpack_state, test/test_jit.py::TestScript::test_parameter_order, test/test_jit.py::TestScript::test_parse_empty_tuple_annotation, test/test_jit.py::TestScript::test_parse_empty_tuple_annotation_element_error, test/test_jit.py::TestScript::test_parse_generator, test/test_jit.py::TestScript::test_parse_nested_names, test/test_jit.py::TestScript::test_parse_none_type_annotation, test/test_jit.py::TestScript::test_parse_scalar_tensor_constants, test/test_jit.py::TestScript::test_parse_tensor_constants, test/test_jit.py::TestScript::test_parser_kwargonly, test/test_jit.py::TestScript::test_parser_type_annotations, test/test_jit.py::TestScript::test_parser_type_annotations_comment, test/test_jit.py::TestScript::test_parser_type_annotations_incompatible_expression, test/test_jit.py::TestScript::test_parser_type_annotations_subscript_non_ident, test/test_jit.py::TestScript::test_parser_type_annotations_subscript_tensor, test/test_jit.py::TestScript::test_parser_type_annotations_unknown_type, test/test_jit.py::TestScript::test_partial_returns, test/test_jit.py::TestScript::test_pass, test/test_jit.py::TestScript::test_pickle_checkpoint, test/test_jit.py::TestScript::test_pickle_checkpoint_cuda, test/test_jit.py::TestScript::test_pickle_checkpoint_tup, test/test_jit.py::TestScript::test_pow_scalar_backward_cuda, test/test_jit.py::TestScript::test_pretty_print_function, test/test_jit.py::TestScript::test_prim_grad_undefined, test/test_jit.py::TestScript::test_print, test/test_jit.py::TestScript::test_print_kwargs, test/test_jit.py::TestScript::test_profiling_graph_executor, test/test_jit.py::TestScript::test_profiling_merge, test/test_jit.py::TestScript::test_pybind_type_comparisons, test/test_jit.py::TestScript::test_python_call, test/test_jit.py::TestScript::test_python_call_annotation, test/test_jit.py::TestScript::test_python_call_annoytation_failure, test/test_jit.py::TestScript::test_python_call_failure, test/test_jit.py::TestScript::test_python_call_non_tensor, test/test_jit.py::TestScript::test_python_call_non_tensor_wrong, test/test_jit.py::TestScript::test_python_frontend, test/test_jit.py::TestScript::test_python_frontend_py3, test/test_jit.py::TestScript::test_python_frontend_source_range, test/test_jit.py::TestScript::test_python_op_builtins, test/test_jit.py::TestScript::test_python_op_name, test/test_jit.py::TestScript::test_python_val_doesnt_have_attr, test/test_jit.py::TestScript::test_rand, test/test_jit.py::TestScript::test_rand_profiling, test/test_jit.py::TestScript::test_range_args, test/test_jit.py::TestScript::test_reassign_module_lhs, test/test_jit.py::TestScript::test_reassign_module_rhs, test/test_jit.py::TestScript::test_refine_tuple_types, test/test_jit.py::TestScript::test_remove_dropout, test/test_jit.py::TestScript::test_repeated_script_on_function, test/test_jit.py::TestScript::test_request_bailout, test/test_jit.py::TestScript::test_requires_grad_loop, test/test_jit.py::TestScript::test_rescripting_loaded_modules, test/test_jit.py::TestScript::test_resize_input_ops, test/test_jit.py::TestScript::test_return, test/test_jit.py::TestScript::test_return_stmt_not_at_end, test/test_jit.py::TestScript::test_return_tuple, test/test_jit.py::TestScript::test_robust_op_resolution, test/test_jit.py::TestScript::test_round, test/test_jit.py::TestScript::test_save_load_attr_error, test/test_jit.py::TestScript::test_script_annotation, test/test_jit.py::TestScript::test_script_bool_constant, test/test_jit.py::TestScript::test_script_chunk, test/test_jit.py::TestScript::test_script_clamp_none, test/test_jit.py::TestScript::test_script_copy, test/test_jit.py::TestScript::test_script_cu, test/test_jit.py::TestScript::test_script_define_order, test/test_jit.py::TestScript::test_script_define_order_recursive_fail, test/test_jit.py::TestScript::test_script_docstring, test/test_jit.py::TestScript::test_script_forward_method_replacement, test/test_jit.py::TestScript::test_script_get_device_cuda, test/test_jit.py::TestScript::test_script_get_tracing_state, test/test_jit.py::TestScript::test_script_is_tracing, test/test_jit.py::TestScript::test_script_kwargs_fn_call, test/test_jit.py::TestScript::test_script_method_docstring, test/test_jit.py::TestScript::test_script_method_torch_function_overload, test/test_jit.py::TestScript::test_script_module, test/test_jit.py::TestScript::test_script_module_call_noscript, test/test_jit.py::TestScript::test_script_module_const, test/test_jit.py::TestScript::test_script_module_const_submodule_fail, test/test_jit.py::TestScript::test_script_module_export_blocks, test/test_jit.py::TestScript::test_script_module_export_shared_storage, test/test_jit.py::TestScript::test_script_module_export_submodule, test/test_jit.py::TestScript::test_script_module_export_tensor_cuda, test/test_jit.py::TestScript::test_script_module_export_tensor_type, test/test_jit.py::TestScript::test_script_module_fail_exist, test/test_jit.py::TestScript::test_script_module_for, test/test_jit.py::TestScript::test_script_module_for2, test/test_jit.py::TestScript::test_script_module_invalid_consts, test/test_jit.py::TestScript::test_script_module_nochange_submodule, test/test_jit.py::TestScript::test_script_module_none_exist_fail, test/test_jit.py::TestScript::test_script_module_not_tuple, test/test_jit.py::TestScript::test_script_module_param_buffer_mutation, test/test_jit.py::TestScript::test_script_module_star_assign2, test/test_jit.py::TestScript::test_script_module_star_assign2_inplace, test/test_jit.py::TestScript::test_script_module_star_assign_fail_builtin, test/test_jit.py::TestScript::test_script_module_star_assign_fail_pythonop, test/test_jit.py::TestScript::test_script_module_tensor_subclass_argument, test/test_jit.py::TestScript::test_script_nested_mod_list, test/test_jit.py::TestScript::test_script_non_tensor_args_outputs, test/test_jit.py::TestScript::test_script_optional_none, test/test_jit.py::TestScript::test_script_outputs, test/test_jit.py::TestScript::test_script_pack_padded_sequence, test/test_jit.py::TestScript::test_script_pad_sequence_pack_sequence, test/test_jit.py::TestScript::test_script_scope, test/test_jit.py::TestScript::test_script_sequential_for, test/test_jit.py::TestScript::test_script_sequential_in_mod_list, test/test_jit.py::TestScript::test_script_sequential_multi_output_fail, test/test_jit.py::TestScript::test_script_sequential_orderdict, test/test_jit.py::TestScript::test_script_sequential_sliced_iteration, test/test_jit.py::TestScript::test_script_star_assign, test/test_jit.py::TestScript::test_script_star_expr, test/test_jit.py::TestScript::test_script_star_expr_string, test/test_jit.py::TestScript::test_scriptable_fn_as_attr, test/test_jit.py::TestScript::test_scriptmodule_multi_head_attn_cuda, test/test_jit.py::TestScript::test_scriptmodule_releases_tensors_cuda, test/test_jit.py::TestScript::test_scriptmodule_transformer_cuda, test/test_jit.py::TestScript::test_select_after_chunk, test/test_jit.py::TestScript::test_sequence_parsing, test/test_jit.py::TestScript::test_sequential_intermediary_types, test/test_jit.py::TestScript::test_serialization_big_ints, test/test_jit.py::TestScript::test_serialization_sharing, test/test_jit.py::TestScript::test_serialize_long_lines, test/test_jit.py::TestScript::test_serialized_source_ranges, test/test_jit.py::TestScript::test_serialized_source_ranges2, test/test_jit.py::TestScript::test_serialized_source_ranges_dont_jitter, test/test_jit.py::TestScript::test_serialized_source_ranges_graph, test/test_jit.py::TestScript::test_serialized_source_ranges_no_dups, test/test_jit.py::TestScript::test_set_attribute_through_optional, test/test_jit.py::TestScript::test_shape_analysis_grad_property, test/test_jit.py::TestScript::test_shape_analysis_loop, test/test_jit.py::TestScript::test_shape_prop_promote_scalar_arg, test/test_jit.py::TestScript::test_shape_prop_promotion, test/test_jit.py::TestScript::test_signed_float_zero, test/test_jit.py::TestScript::test_single_starred_expr_for_loop, test/test_jit.py::TestScript::test_single_starred_lhs, test/test_jit.py::TestScript::test_singleton_tuple_unpack, test/test_jit.py::TestScript::test_slice_guard_elimination, test/test_jit.py::TestScript::test_split, test/test_jit.py::TestScript::test_stack, test/test_jit.py::TestScript::test_static_if_prop, test/test_jit.py::TestScript::test_static_method_on_module, test/test_jit.py::TestScript::test_static_methods, test/test_jit.py::TestScript::test_str_cast, test/test_jit.py::TestScript::test_string_cu, test/test_jit.py::TestScript::test_string_device_implicit_conversion, test/test_jit.py::TestScript::test_string_frontend_elif, test/test_jit.py::TestScript::test_string_index, test/test_jit.py::TestScript::test_string_len, test/test_jit.py::TestScript::test_string_list, test/test_jit.py::TestScript::test_string_new_line, test/test_jit.py::TestScript::test_string_ops, test/test_jit.py::TestScript::test_string_print, test/test_jit.py::TestScript::test_string_single_escape, test/test_jit.py::TestScript::test_string_slicing, test/test_jit.py::TestScript::test_string_sort, test/test_jit.py::TestScript::test_string_sorted, test/test_jit.py::TestScript::test_submodule_attribute_serialization, test/test_jit.py::TestScript::test_submodule_twice, test/test_jit.py::TestScript::test_sum, test/test_jit.py::TestScript::test_sum_list_diff_elms, test/test_jit.py::TestScript::test_sum_list_empty, test/test_jit.py::TestScript::test_sum_list_literal, test/test_jit.py::TestScript::test_sum_list_one, test/test_jit.py::TestScript::test_sum_list_wrong_type, test/test_jit.py::TestScript::test_sys_stdout_override, test/test_jit.py::TestScript::test_tensor_as_tensor_shape_prop, test/test_jit.py::TestScript::test_tensor_data, test/test_jit.py::TestScript::test_tensor_device, test/test_jit.py::TestScript::test_tensor_dtype, test/test_jit.py::TestScript::test_tensor_grad, test/test_jit.py::TestScript::test_tensor_import_export, test/test_jit.py::TestScript::test_tensor_len, test/test_jit.py::TestScript::test_tensor_number_math, test/test_jit.py::TestScript::test_tensor_number_math_cuda, test/test_jit.py::TestScript::test_tensor_requires_grad, test/test_jit.py::TestScript::test_tensor_shape, test/test_jit.py::TestScript::test_tensor_subclasses, test/test_jit.py::TestScript::test_tensor_to, test/test_jit.py::TestScript::test_tensor_to_cpu, test/test_jit.py::TestScript::test_tensor_to_cuda, test/test_jit.py::TestScript::test_tensor_to_device, test/test_jit.py::TestScript::test_ternary, test/test_jit.py::TestScript::test_ternary_module_type_hint, test/test_jit.py::TestScript::test_ternary_right_associative, test/test_jit.py::TestScript::test_ternary_static_if, test/test_jit.py::TestScript::test_torch_any, test/test_jit.py::TestScript::test_torch_functional, test/test_jit.py::TestScript::test_torch_functional_tensordot_int, test/test_jit.py::TestScript::test_torch_functional_tensordot_list, test/test_jit.py::TestScript::test_torch_functional_tensordot_tensor, test/test_jit.py::TestScript::test_torch_functional_tensordot_tuple, test/test_jit.py::TestScript::test_torch_ignore_conversion_to_none, test/test_jit.py::TestScript::test_torch_manual_seed, test/test_jit.py::TestScript::test_torch_pow, test/test_jit.py::TestScript::test_torch_tensor_as_tensor, test/test_jit.py::TestScript::test_torch_tensor_as_tensor_empty_list, test/test_jit.py::TestScript::test_torch_tensor_bad_input, test/test_jit.py::TestScript::test_torch_tensor_dtype, test/test_jit.py::TestScript::test_torchscript_memoryformat, test/test_jit.py::TestScript::test_torchscript_multi_head_attn, test/test_jit.py::TestScript::test_torchscript_multi_head_attn_fast_path, test/test_jit.py::TestScript::test_training_param, test/test_jit.py::TestScript::test_tuple_assignments, test/test_jit.py::TestScript::test_tuple_error_msg, test/test_jit.py::TestScript::test_tuple_index_to_list, test/test_jit.py::TestScript::test_tuple_indexing, test/test_jit.py::TestScript::test_tuple_len, test/test_jit.py::TestScript::test_tuple_nested_sort, test/test_jit.py::TestScript::test_tuple_sort, test/test_jit.py::TestScript::test_tuple_sort_reverse, test/test_jit.py::TestScript::test_tuple_sorted, test/test_jit.py::TestScript::test_tuple_str, test/test_jit.py::TestScript::test_tuple_to_opt_list, test/test_jit.py::TestScript::test_tuple_unsortable_diff_type, test/test_jit.py::TestScript::test_tuple_unsortable_element_type, test/test_jit.py::TestScript::test_tuple_unsortable_nested_diff_type, test/test_jit.py::TestScript::test_type_annotate, test/test_jit.py::TestScript::test_type_annotation_module, test/test_jit.py::TestScript::test_type_annotation_py3, test/test_jit.py::TestScript::test_type_annotations, test/test_jit.py::TestScript::test_type_annotations_repeated_list, test/test_jit.py::TestScript::test_type_annotations_varargs, test/test_jit.py::TestScript::test_type_call_in_script, test/test_jit.py::TestScript::test_type_cast, test/test_jit.py::TestScript::test_type_comments_in_body, test/test_jit.py::TestScript::test_type_inferred_from_empty_annotation, test/test_jit.py::TestScript::test_unbind, test/test_jit.py::TestScript::test_unfold_zero_dim, test/test_jit.py::TestScript::test_unicode_comments, test/test_jit.py::TestScript::test_uninitialized, test/test_jit.py::TestScript::test_union_to_number, test/test_jit.py::TestScript::test_unknown_builtin, test/test_jit.py::TestScript::test_unmatched_type_annotation, test/test_jit.py::TestScript::test_unspecialized_any_binding, test/test_jit.py::TestScript::test_unsqueeze_guard_elimination, test/test_jit.py::TestScript::test_unsupported_builtin_error, test/test_jit.py::TestScript::test_unused_decorator, test/test_jit.py::TestScript::test_unwrap_optional_builtin, test/test_jit.py::TestScript::test_var_aug_assign, test/test_jit.py::TestScript::test_vararg_zeros, test/test_jit.py::TestScript::test_view_listconstruct_shape_prop, test/test_jit.py::TestScript::test_view_shape_prop, test/test_jit.py::TestScript::test_view_write, test/test_jit.py::TestScript::test_weak_cuda, test/test_jit.py::TestScript::test_where, test/test_jit.py::TestScript::test_where_method, test/test_jit.py::TestScript::test_while, test/test_jit.py::TestScript::test_while_nest_if, test/test_jit.py::TestScript::test_while_nonexistent_cond_value, test/test_jit.py::TestScript::test_while_nonexistent_value, test/test_jit.py::TestScript::test_while_write_outer_then_read, test/test_jit.py::TestScript::test_wrong_attr_lookup, test/test_jit.py::TestScript::test_wrong_implicit_expand, test/test_jit.py::TestScript::test_wrong_method_call_inputs, test/test_jit.py::TestScript::test_wrong_module_attr_lookup, test/test_jit.py::TestScript::test_wrong_return_type, test/test_jit.py::TestScript::test_wrong_use_as_callable, test/test_jit.py::TestScript::test_wrong_use_as_tuple, test/test_jit.py::TestScript::test_zero_dimension_tensor_trace, test/test_jit.py::TestScript::test_zeros, test/test_jit.py::TestScript::test_zip_enumerate_modulelist, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_weights_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_legacy_enum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_Bilinear, test/test_jit.py::TestJitGeneratedModule::test_nn_CELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad1size1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad2size1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_reflect_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_stride, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_padded, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_with_multiplier, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_groups_thnn, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_padding, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_reflect_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_1x1x1_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_dilated_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_stride, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_stride_padding, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose3d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose3d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_CrossMapLRN2d, test/test_jit.py::TestJitGeneratedModule::test_nn_ELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_discontiguous, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_max, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_max_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_mean_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sparse, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sum_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding_discontiguous, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding_sparse, test/test_jit.py::TestJitGeneratedModule::test_nn_Flatten, test/test_jit.py::TestJitGeneratedModule::test_nn_Flatten_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_no_batch_dim_input, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_no_batch_dim_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_GELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_GLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_GRUCell, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardsigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardswish_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardtanh_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_margin_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_delta, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_log_target, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_scalar_log_target, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_with_log_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_with_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce_complex, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_LSTMCell, test/test_jit.py::TestJitGeneratedModule::test_nn_LayerNorm_3d_no_affine_large_feature, test/test_jit.py::TestJitGeneratedModule::test_nn_LeakyReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_LogSigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_Mish_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_0d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_1d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_index_neg, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_1d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_margin_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_p_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiheadAttention, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights_ignore_index_neg, test/test_jit.py::TestJitGeneratedModule::test_nn_PReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_broadcast_lhs, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_broadcast_rhs, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_with_non_default_args, test/test_jit.py::TestJitGeneratedModule::test_nn_PixelShuffle, test/test_jit.py::TestJitGeneratedModule::test_nn_PixelUnshuffle, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_RNNCell, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_with_up_down, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_with_up_down_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_ReLU6_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_ReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d_complex, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SiLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Sigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_beta, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_zero_beta, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_Softplus_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Softshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Softsign_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Tanh_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Tanhshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Threshold_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Transformer, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerDecoderLayer_gelu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerDecoderLayer_relu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerEncoderLayer_gelu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerEncoderLayer_relu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_Transformer_multilayer_coder, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_Unflatten_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Unfold, test/test_jit.py::TestJitGeneratedModule::test_nn_Unfold_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_shared_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_skewed_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_skewed_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_tuple_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_shared_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_skewed_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_skewed_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_tuple_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_scale_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_scale_1d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_tuple_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_1d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d_launch_configs, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_3d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_3d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_scale_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_scale_3d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_tuple_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_tuple_3d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_dim0, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_dim3, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_lastdim, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_spatial, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_spatial_special, test/test_jit.py::TestJitGeneratedModule::test_nn_multimarginloss_1d_input_0d_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_dim0, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_dim3, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_lastdim, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_lastdim_dtype, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial_dtype, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial_special, test/test_jit.py::TestProducerVersion::test_version 2025-08-14T23:28:09.6434437Z 2025-08-14T23:28:16.0486460Z Running functorch/test_ops 6/8 ... [2025-08-14 23:28:16.042647] 2025-08-14T23:28:16.0487212Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:28:16.0496270Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=6', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:28:16.042647] 2025-08-14T23:32:44.7795053Z 2025-08-14T23:32:44.7795862Z test_ops 8/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_8.9_5b6e6493abe49b17_.log 2025-08-14T23:32:44.9001785Z Running 3782 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_H_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_bool_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_flatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_narrow_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unsafe_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___getitem___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rmod___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rmul___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_acos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atleast_2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_clone_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_exp2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_float_power_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fmod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_lcm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_rad2deg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_roll_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_trunc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_all_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_equal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_erfc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_fftshift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hypot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_put_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_inner_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isclose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_eigvals_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lstsq_grad_oriented_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_rank_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_norm_subgradients_at_zero_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_pinv_singular_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_qr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_vector_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logcumsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_argmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nanmedian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_native_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cosine_similarity_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_dropout2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool3d_grad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multilabel_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_replicate_negative_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rand_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_repeat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rsub_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_general_cosine_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_scaled_modified_bessel_k1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tensor_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unbind_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_uniform_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_var_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_var_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_zero__cpu, test/test_ops.py::TestCommonCPU::test_errors___ror___cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_errors_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_errors_copysign_cpu, test/test_ops.py::TestCommonCPU::test_errors_eye_cpu, test/test_ops.py::TestCommonCPU::test_errors_float_power_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmin_cpu, test/test_ops.py::TestCommonCPU::test_errors_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_errors_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_errors_igammac_cpu, test/test_ops.py::TestCommonCPU::test_errors_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_errors_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_errors_masked_select_cpu, test/test_ops.py::TestCommonCPU::test_errors_movedim_cpu, test/test_ops.py::TestCommonCPU::test_errors_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_errors_ne_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_ormqr_cpu, test/test_ops.py::TestCommonCPU::test_errors_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_errors_rot90_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_hann_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_kaiser_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_nuttall_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_errors_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_errors_take_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___radd___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rdiv___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rpow___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gather_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ge_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_inner_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_4inputs_with_extra_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_unary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_meshgrid_list_of_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nansum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cosine_embedding_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_local_response_norm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_circular_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_negative_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_outer_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_repeat_interleave_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tile_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___rxor___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__unsafe_masked_index_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__unsafe_masked_index_put_accumulate_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_all_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_as_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bfloat16_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_conj_physical_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diagonal_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_permuted_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_hfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_irfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_gather_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_item_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_kron_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nan_to_num_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ones_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_reciprocal_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_i1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_laguerre_polynomial_l_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_spherical_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_list_args_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tile_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_to_sparse_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_triu_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_vsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_zeros_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_T_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___getitem___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmatmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_decomposed_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cov_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagflat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gather_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_2inputs_2outputs_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kron_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_le_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cond_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_var_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_linear_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_linear_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_constant_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_nuc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randint_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randn_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_searchsorted_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sort_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_legendre_polynomial_p_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_list_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_sparse_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorsolve_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vecdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_pdist_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_roll_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_hann_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_unary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eig_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lstsq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_fro_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_permute_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_out_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning_T_cpu, test/test_ops.py::TestCommonCPU::test_out_warning___ror___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rsub___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_T_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_broadcast_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_chunk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_floor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_igamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_lcm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_minimum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_empty_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_rot90_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sgn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_to_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unfold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_vdot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argsort_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_chunk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_corrcoef_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_erfc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_float_power_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_frexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_histogram_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_hypot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_int_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_unary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lgamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cond_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_eigvals_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_inv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_ldl_factor_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_lu_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_matrix_power_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_matrix_rank_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_multi_dot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_solve_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_solve_triangular_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_tensorsolve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log1p_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mT_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_normalize_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_std_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_min_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_msort_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nanmean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_celu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_cosine_similarity_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_feature_alpha_dropout_with_train_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_grid_sample_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_hardsigmoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_local_response_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool1d_grad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_multi_head_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_rms_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_scaled_dot_product_attention_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_tanhshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_norm_inf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ones_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_pinverse_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_4_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_pow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_resize__cpu, test/test_ops.py::TestCommonCPU::test_out_warning_resolve_conj_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_roll_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_gaussian_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_hermite_polynomial_he_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_stft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch__scaled_mm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_transpose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unbind_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_as_real_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_where_cpu, test/test_ops.py::TestCommonCPU::test_out_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cauchy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igammac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_prelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_copysign_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_eq_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_flipud_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fmin_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_index_add_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_isclose_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_movedim_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_neg_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_shapes_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exponential_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_istft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_celu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_dropout_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hinge_embedding_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_layer_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softplus_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softshrink_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_complex_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_left_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float8_e5m2, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igammac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_imag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nextafter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_gelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_glu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pdist_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_allclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_imag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lcm_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_group_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softplus_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_number_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_int32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_corrcoef_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dist_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hash_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lstsq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_tensorsolve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vander_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_reflect_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_nuc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_outer_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pinverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resolve_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_slice_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_allclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cauchy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_erfinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ifft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_histogram_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logical_not_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_native_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nextafter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_decimals_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signbit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_aminmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_clamp_max_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_equal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_hfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_floor_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isneginf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_allclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_clamp_max_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_equal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resize_as__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_svd_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_alias_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_aminmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_any_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ceil_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_clone_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_erfc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_hash_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isposinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_zeta_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_where_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___radd___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cumprod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_eye_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_flip_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_flipud_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isreal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_empty_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_permute_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_permute_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_randn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_reciprocal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sgn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_square_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unfold_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addcmul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_asin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_bfloat16_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_bool_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cartesian_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cholesky_inverse_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cholesky_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_count_nonzero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumprod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_hstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_imag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_put_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_binary_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_unary_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_kron_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_lerp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cross_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eig_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_inv_ex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_pinv_hermitian_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_qr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_svd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logdet_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_and_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_lu_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_lu_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_std_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_matrix_exp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_linear_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_constant_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_pow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_reshape_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resolve_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_rot90_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sgn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_split_list_args_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_square_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_take_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_to_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unbind_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unflatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_unbiased_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_H_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_chalf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_char_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_as_strided_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_conj_physical_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cumsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_index_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isnan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log10_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_narrow_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_t_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_view_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_vstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_acosh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_char_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_conj_physical_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_corrcoef_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_empty_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_hfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_full_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_istft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eigvals_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_ldl_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_matrix_power_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logdet_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_matrix_exp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ne_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv3d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_normalize_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_unfold_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_qr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resize_as__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_slice_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_split_with_sizes_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_squeeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_std_mean_unbiased_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_std_unbiased_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_t_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tensordot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_trapezoid_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unfold_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_var_mean_unbiased_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_as_real_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zeros_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___rsub___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__batch_norm_with_update_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_T_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_bool_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_double_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_int_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_acos_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ceil_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cumsum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_empty_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_erfinv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_hfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_hfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ihfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_floor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log1p_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_lt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_relu6_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_relu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softplus_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_permute_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_i1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sqrt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_square_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_t_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_vstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_where_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_xlogy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__segment_reduce_lengths_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_alias_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_all_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_arange_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argwhere_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cfloat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_char_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_deg2rad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_erf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_flipud_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_full_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_grid_sampler_2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_histogram_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_reduce_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log10_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lu_unpack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_argmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_matmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_min_binary_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_min_reduction_no_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nanmean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_empty_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_zeros_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_avg_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_linear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_relu6_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_upsample_nearest_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_norm_nuc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_normal_in_place_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_pca_lowrank_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_reciprocal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resize_as__cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_decimals_0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sgn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_gaussian_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_hamming_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_j1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_erfcx_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_modified_bessel_i1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_zeta_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_split_with_sizes_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_stft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_trapz_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unbind_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unique_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_polar_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_acosh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_all_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_allclose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_arange_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_asinh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_right_shift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cauchy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clamp_min_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_diagonal_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_digamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_dsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_empty_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_eye_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_frac_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ge__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_copy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lcm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_not_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_masked_fill__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mvlgamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_neg_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_zeros_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_celu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_softmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ones_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_scalar_tensor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_expit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_true_divide__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_byte_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_as_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_asin__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_xor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cauchy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_dot_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erf__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expm1__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_exponential_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_eye_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_rfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_float_power_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_floor_divide__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_full_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_gcd_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_hsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_igammac_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_select_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_not__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_or__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_zeros_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nextafter__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_softplus_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ones_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rtruediv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_erfcx_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_i0e_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_squeeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_stft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sub__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_swap_axes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tan__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tanh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tril__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_var_mean_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rmod___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_H_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_and_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cauchy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_irfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_irfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isneginf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_normal_number_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rsqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_count_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagonal_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_native_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_floor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_eye_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_irfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_igammac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lcm_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_tensorinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_narrow_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_permute_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randn_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_hann_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestFakeTensorCPU::test_fake_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_allclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_irfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_histc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_imag_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_int_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isreal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mH_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_normal_number_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_positive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_blackman_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tril_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unravel_index_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_int8, test/test_ops.py::TestTagsCPU::test_tags_H_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rmod___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rxor___cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_double_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_half_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_addr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_arange_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_block_diag_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_dot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_exp2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expand_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fmod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isreal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_mul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_permute_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_positive_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_roll_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_round_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sgn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_bessel_j1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sum_to_size_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_trace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unfold_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_vsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argsort_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atleast_3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_broadcast_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cfloat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diagflat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_div_floor_rounding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_flip_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ge_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_geqrf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_histc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_imag_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags_inner_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isposinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_istft_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags_kthvalue_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lgamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eigh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_inv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lstsq_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_factor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_pinv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logaddexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_matmul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_ones_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_dropout_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_embedding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_glu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_relu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nonzero_static_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_outer_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_renorm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_repeat_interleave_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scalar_tensor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_select_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_entr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_std_unbiased_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_stft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_take_along_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_take_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_to_sparse_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_triangular_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_triu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trunc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unbind_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_uniform_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unique_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_var_mean_unbiased_cpu_float32 2025-08-14T23:32:45.0155731Z 2025-08-14T23:32:50.1060696Z Running functorch/test_ops 7/8 ... [2025-08-14 23:32:50.105745] 2025-08-14T23:32:50.1061559Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:32:50.1067669Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=7', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:32:50.106342] 2025-08-14T23:34:04.6842169Z 2025-08-14T23:34:04.6843096Z functorch/test_ops 1/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_1.8_d8d6c6b634b5a083_.log 2025-08-14T23:34:04.7312982Z Running 1268 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_data_write_errors_under_transform_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_cross_entropy_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_l1_loss_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_log_softmax_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_mse_loss_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmax_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_floor_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_floor_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_lt_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_conj_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_contiguous_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_flatten_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_hsplit_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_list_args_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_list_args_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_reshape_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_resolve_neg_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unsqueeze_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unsqueeze_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_block_diag_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bool_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_to_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cdouble_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_inverse_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cross_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumulative_trapezoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_permuted_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erfc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erfinv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fill_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ge_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogram_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_int_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isfinite_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isposinf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_unary_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lerp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lgamma_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cond_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cross_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_householder_product_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_factor_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_svd_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_and_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matmul_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_binary_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_multinomial_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_channel_shuffle_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_no_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_bag_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_instance_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_kl_div_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pdist_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_threshold_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_triplet_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nonzero_static_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_fro_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten_index_put_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_outer_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_positive_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reshape_as_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reshape_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scalar_tensor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sgn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_hamming_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sparse_sampled_addmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_airy_ai_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_v_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i1e_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_ndtr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sqrt_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_stack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsafe_split_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyCubeAutogradFunction_cpu_float32 2025-08-14T23:34:04.7756800Z 2025-08-14T23:34:10.2822444Z Running functorch/test_aotdispatch 2/7 ... [2025-08-14 23:34:10.282030] 2025-08-14T23:34:10.2831614Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:34:10.2833617Z 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-08-14 23:34:10.282605] 2025-08-14T23:35:22.3929160Z 2025-08-14T23:35:22.3930252Z functorch/test_ops 6/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_6.8_af630d10683a4e7c_.log 2025-08-14T23:35:22.4385155Z Running 1249 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_bool_raises_topk_cpu_bool, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amax_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmin_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_le_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_sort_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_tensor_with_scalar_list_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_diagonal_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_mT_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_permute_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_permute_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SortGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ZeroGradientsGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmatmul___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmul___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rpow___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_all_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cauchy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_chalf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_max_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumsum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diag_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_floor_rounding_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_geqrf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gradient_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_i0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_add_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isclose_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isnan_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isneginf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_kron_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_tensorinv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_or_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_long_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_argmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_argmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_binary_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_reduction_no_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_msort_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ne_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_full_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_binary_cross_entropy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_celu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_area_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_reflect_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rms_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_selu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_upsample_bilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_upsample_nearest_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_permute_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_qr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_renorm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize__cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rsub_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_select_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_nuttall_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_u_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_polygamma_special_polygamma_n_0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_svd_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tanh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_triangular_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_xlogy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zero__cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvmapjvp_linalg_solve_cpu 2025-08-14T23:35:22.4818268Z 2025-08-14T23:35:27.7583814Z Running functorch/test_aotdispatch 7/7 ... [2025-08-14 23:35:27.758166] 2025-08-14T23:35:27.7584650Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:35:27.7591073Z 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-08-14 23:35:27.758758] 2025-08-14T23:40:43.5743113Z 2025-08-14T23:40:43.5744628Z functorch/test_aotdispatch 2/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_2.7_04fb316b44c8d9d5_.log 2025-08-14T23:40:43.5894781Z Running 290 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_nested_subclasses_non_homogenous, 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::TestAOTAutogradWithDynamo::test_subclasses_mixed_mode, 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_subclasses_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_view_and_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_view_detach 2025-08-14T23:40:43.6032882Z 2025-08-14T23:40:48.6296128Z Running test_schema_check 1/1 ... [2025-08-14 23:40:48.624227] 2025-08-14T23:40:48.6296616Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:40:48.6302800Z 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-08-14 23:40:48.629878] 2025-08-14T23:41:41.3874902Z 2025-08-14T23:41:41.3875937Z test_schema_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_schema_check_1.1_49c0c110f5e3eb6f_.log 2025-08-14T23:41:41.6589554Z Running 6023 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_hash_tensor_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hash_tensor_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-08-14T23:41:41.9088535Z 2025-08-14T23:41:46.5593776Z Running test_datapipe 1/1 ... [2025-08-14 23:41:46.557700] 2025-08-14T23:41:46.5594243Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:41:46.5600396Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_datapipe.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:41:46.557700] 2025-08-14T23:42:05.1793927Z 2025-08-14T23:42:05.1794683Z test_datapipe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_datapipe_1.1_755fee82ebf36084_.log 2025-08-14T23:42:05.1824901Z Running 94 items in this shard: test/test_datapipe.py::TestDataChunk::test_as_string, test/test_datapipe.py::TestDataChunk::test_getitem, test/test_datapipe.py::TestDataChunk::test_iter, test/test_datapipe.py::TestDataChunk::test_len, test/test_datapipe.py::TestDataChunk::test_random_shuffle, test/test_datapipe.py::TestDataChunk::test_reverse, test/test_datapipe.py::TestDataChunk::test_sort, test/test_datapipe.py::TestStreamWrapper::test_api, test/test_datapipe.py::TestStreamWrapper::test_dir, test/test_datapipe.py::TestStreamWrapper::test_pickle, test/test_datapipe.py::TestStreamWrapper::test_repr, test/test_datapipe.py::TestIterableDataPipeBasic::test_demux_mux_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_groupby_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_listdirfiles_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_listdirfilesdeterministic_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_map_with_col_file_handle_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_openfilesfromdisk_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_routeddecoder_iterable_datapipe, test/test_datapipe.py::TestCaptureDataFrame::test_basic_capture, test/test_datapipe.py::TestDataFramesPipes::test_batch, test/test_datapipe.py::TestDataFramesPipes::test_capture, test/test_datapipe.py::TestDataFramesPipes::test_collate, test/test_datapipe.py::TestDataFramesPipes::test_filter, test/test_datapipe.py::TestDataFramesPipes::test_shuffle, test/test_datapipe.py::TestDataFramesPipes::test_unbatch, test/test_datapipe.py::TestFunctionalIterDataPipe::test_batch_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_collate_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_concat_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_demux_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_docstring, test/test_datapipe.py::TestFunctionalIterDataPipe::test_filter_datapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_fork_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_iterable_wrapper_datapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_dict_with_col_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_tuple_list_with_col_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_mux_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_sampler_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_serializable, test/test_datapipe.py::TestFunctionalIterDataPipe::test_serializable_with_dill, test/test_datapipe.py::TestFunctionalIterDataPipe::test_shuffler_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_stream_reader_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_unbatch_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_zip_iterdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_batch_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_concat_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_docstring, test/test_datapipe.py::TestFunctionalMapDataPipe::test_map_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_sequence_wrapper_datapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_serializable, test/test_datapipe.py::TestFunctionalMapDataPipe::test_serializable_with_dill, test/test_datapipe.py::TestFunctionalMapDataPipe::test_shuffler_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_zip_mapdatapipe, test/test_datapipe.py::TestTyping::test_compile_time, test/test_datapipe.py::TestTyping::test_construct_time, test/test_datapipe.py::TestTyping::test_isinstance, test/test_datapipe.py::TestTyping::test_issubinstance, test/test_datapipe.py::TestTyping::test_protocol, test/test_datapipe.py::TestTyping::test_reinforce, test/test_datapipe.py::TestTyping::test_runtime, test/test_datapipe.py::TestTyping::test_subtype, test/test_datapipe.py::TestGraph::test_simple_traverse, test/test_datapipe.py::TestGraph::test_traverse_circular_datapipe, test/test_datapipe.py::TestGraph::test_traverse_forked, test/test_datapipe.py::TestGraph::test_traverse_mapdatapipe, test/test_datapipe.py::TestGraph::test_traverse_mixdatapipe, test/test_datapipe.py::TestGraph::test_traverse_unhashable_datapipe, test/test_datapipe.py::TestSerialization::test_spawn_lambdas_iter, test/test_datapipe.py::TestSerialization::test_spawn_lambdas_map, test/test_datapipe.py::TestCircularSerialization::test_circular_serialization_with_dill, test/test_datapipe.py::TestCircularSerialization::test_circular_serialization_with_pickle, test/test_datapipe.py::TestSharding::test_legacy_custom_sharding, test/test_datapipe.py::TestSharding::test_legacy_custom_sharding_with_old_dataloader, test/test_datapipe.py::TestSharding::test_multi_sharding, test/test_datapipe.py::TestSharding::test_old_dataloader, test/test_datapipe.py::TestSharding::test_sharding_groups, test/test_datapipe.py::TestSharding::test_sharding_groups_in_legacy_grouping_package, test/test_datapipe.py::TestSharding::test_sharding_length, test/test_datapipe.py::TestSharding::test_simple_sharding, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_buggy, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_constraint_multiple_outputs, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_generator, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_new_object, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_self_next, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_generator_function, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_generator_function_exception, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_next, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_next_exception, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_return_self, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_custom_non_generator, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_custom_self_next, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph_repeated, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph_with_serialization 2025-08-14T23:42:05.1852170Z 2025-08-14T23:42:10.7795648Z Running test_bundled_inputs 1/1 ... [2025-08-14 23:42:10.779363] 2025-08-14T23:42:10.7796552Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:42:10.7806873Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_bundled_inputs.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:42:10.780391] 2025-08-14T23:42:17.4512404Z 2025-08-14T23:42:17.4513777Z test_bundled_inputs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_bundled_inputs_1.1_005cd9571c0e8dc5_.log 2025-08-14T23:42:17.4521980Z Running 12 items in this shard: test/test_bundled_inputs.py::TestBundledInputs::test_bad_inputs, test/test_bundled_inputs.py::TestBundledInputs::test_dict_args, test/test_bundled_inputs.py::TestBundledInputs::test_double_augment_fail, test/test_bundled_inputs.py::TestBundledInputs::test_double_augment_non_mutator, test/test_bundled_inputs.py::TestBundledInputs::test_double_augment_success, test/test_bundled_inputs.py::TestBundledInputs::test_large_tensor_with_inflation, test/test_bundled_inputs.py::TestBundledInputs::test_multiple_methods_with_inputs, test/test_bundled_inputs.py::TestBundledInputs::test_multiple_methods_with_inputs_both_defined_failure, test/test_bundled_inputs.py::TestBundledInputs::test_multiple_methods_with_inputs_neither_defined_failure, test/test_bundled_inputs.py::TestBundledInputs::test_non_tensors, test/test_bundled_inputs.py::TestBundledInputs::test_rejected_tensors, test/test_bundled_inputs.py::TestBundledInputs::test_single_tensors 2025-08-14T23:42:17.4529057Z 2025-08-14T23:42:22.6717399Z Running profiler/test_execution_trace 1/1 ... [2025-08-14 23:42:22.669833] 2025-08-14T23:42:22.6717916Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:42:22.6737002Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_execution_trace.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:42:22.669833] 2025-08-14T23:42:28.2002696Z 2025-08-14T23:42:28.2004194Z profiler/test_execution_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_execution_trace_1.1_84eaab1e10bcf0ba_.log 2025-08-14T23:42:28.2015717Z Running 13 items in this shard: test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_alone_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_env_disabled_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_env_enabled_with_kineto_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_env_enabled_with_pt2_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_nested_tensor_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_no_capture_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_record_integral_tensor_data_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_record_integral_tensor_range_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_repeat_in_loop_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_start_stop_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_with_kineto_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_execution_trace_with_pt2_cpu, test/profiler/test_execution_trace.py::TestExecutionTraceCPU::test_triton_fx_graph_with_et_cpu 2025-08-14T23:42:28.2025915Z 2025-08-14T23:42:33.9638741Z Running lazy/test_generator 1/1 ... [2025-08-14 23:42:33.963667] 2025-08-14T23:42:33.9639554Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:42:33.9649716Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_generator.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:42:33.964311] 2025-08-14T23:42:39.6160532Z 2025-08-14T23:42:39.6162132Z lazy/test_generator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_generator_1.1_4411afad05e7b75c_.log 2025-08-14T23:42:39.6163541Z Running 2 items in this shard: test/lazy/test_generator.py::LazyGeneratorTest::test_generator, test/lazy/test_generator.py::LazyGeneratorTest::test_generator_causes_multiple_compiles 2025-08-14T23:42:39.6164296Z 2025-08-14T23:42:44.8419648Z Running torch_np/numpy_tests/core/test_indexing 1/1 ... [2025-08-14 23:42:44.841301] 2025-08-14T23:42:44.8420544Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:42:44.8426673Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_indexing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:42:44.842493] 2025-08-14T23:42:50.1036927Z 2025-08-14T23:42:50.1038232Z torch_np/numpy_tests/core/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_indexing_1.1_7c8ed2f33254706d_.log 2025-08-14T23:42:50.1066574Z Running 67 items in this shard: test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_assignment_value_mismatch, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_indexing_list, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_indexing_onedim, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_indexing_twodim, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_shape_mismatch, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_broaderrors_indexing, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_broken_sequence_not_nd_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_ellipsis_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_ellipsis_index_2, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_empty_fancy_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_empty_tuple_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_everything_returns_views, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_index_no_array_to_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_index_no_floats, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_indexing_array_negative_strides, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_indexing_array_weird_strides, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_memory_order, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_none_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_nontuple_ndindex, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_reverse_strides_and_subspace_bufferinit, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_reversed_strides_result_allocation, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_same_kind_index_casting, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_scalar_array_bool, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_single_bool_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_single_int_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_slicing_no_floats, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_small_regressions, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_32_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_32_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_40_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_40_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_32_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_32_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_40_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_40_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_32_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_32_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_40_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_40_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_fancy_indices_special_case, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_trivial_fancy_not_possible, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_trivial_fancy_out_of_bounds, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_tuple_subclass, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_uncontiguous_subspace_assignment, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_error_reports_correct_shape_index0, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_error_reports_correct_shape_index1, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_error_reports_correct_shape_index2, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_subspace, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_index_is_larger, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_prepend_not_one, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_prepending_ones, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_simple_broadcasting_errors, test/torch_np/numpy_tests/core/test_indexing.py::TestFancyIndexingCast::test_boolean_index_cast_assign, test/torch_np/numpy_tests/core/test_indexing.py::TestMultiIndexingAutomated::test_1d, test/torch_np/numpy_tests/core/test_indexing.py::TestMultiIndexingAutomated::test_boolean, test/torch_np/numpy_tests/core/test_indexing.py::TestMultiIndexingAutomated::test_multidim, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_non_integer_argument_errors, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_non_integer_sequence_multiplication, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_reduce_axis_float_index, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_valid_indexing, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_valid_slicing, test/torch_np/numpy_tests/core/test_indexing.py::TestBooleanIndexing::test_bool_as_int_argument_errors, test/torch_np/numpy_tests/core/test_indexing.py::TestBooleanIndexing::test_boolean_indexing_fast_path, test/torch_np/numpy_tests/core/test_indexing.py::TestBooleanIndexing::test_boolean_indexing_weirdness, test/torch_np/numpy_tests/core/test_indexing.py::TestArrayToIndexDeprecation::test_array_to_index_error, test/torch_np/numpy_tests/core/test_indexing.py::TestNonIntegerArrayLike::test_basic, test/torch_np/numpy_tests/core/test_indexing.py::TestMultipleEllipsisError::test_basic 2025-08-14T23:42:50.1093169Z 2025-08-14T23:42:50.1479313Z 2025-08-14T23:42:50.1480378Z functorch/test_ops 7/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_7.8_98ca7e251a9c5599_.log 2025-08-14T23:42:50.1963885Z Running 1306 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ceil_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ceil_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_lt_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_maximum_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_expand_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_unbind_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_mT_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_narrow_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_select_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_special_grad_op_jvp_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_H_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ScaleGradGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rsub___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__softmax_backward_data_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_acos_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmm_decomposed_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_aminmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_partial_views_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atanh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_byte_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cartesian_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_char_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_conj_physical_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumprod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_digamma_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_eq_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exp2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_power_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_floor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frac_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gather_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_heaviside_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_histogramdd_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hsplit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hstack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_fill_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_amax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_2inputs_2outputs_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ldexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvals_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lstsq_grad_oriented_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linspace_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log10_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_softmax_with_dtype_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lt_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mT_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_prod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_std_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_sum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_var_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_maximum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_reduction_no_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_minimum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmedian_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_dropout_backward_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_batch_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_similarity_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardshrink_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_bilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool3d_grad_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mse_loss_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multi_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pixel_unshuffle_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_unfold_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pinverse_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rand_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_roll_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_sum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_select_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_blackman_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_gaussian_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_cosine_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_j0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_y0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_w_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_entr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_laguerre_polynomial_l_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_spherical_bessel_j0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_list_args_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_stft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tan_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trunc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unbind_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unique_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_mean_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_as_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyTakeAutogradFunction_cpu_float32 2025-08-14T23:42:50.2418711Z 2025-08-14T23:42:55.2849809Z Running test_maskedtensor 1/1 ... [2025-08-14 23:42:55.284630] 2025-08-14T23:42:55.2850592Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:42:55.2857013Z 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-08-14 23:42:55.284630] 2025-08-14T23:42:55.4439866Z Running test_tensorboard 1/1 ... [2025-08-14 23:42:55.433716] 2025-08-14T23:42:55.4446142Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:42:55.4447968Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorboard.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:42:55.433716] 2025-08-14T23:43:02.6868208Z 2025-08-14T23:43:02.6869855Z test_tensorboard 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorboard_1.1_f9f15d5a837431ad_.log 2025-08-14T23:43:02.6899112Z Running 50 items in this shard: test/test_tensorboard.py::TestTensorBoardPyTorchNumpy::test_pytorch_autograd_np, test/test_tensorboard.py::TestTensorBoardPyTorchNumpy::test_pytorch_histogram, test/test_tensorboard.py::TestTensorBoardPyTorchNumpy::test_pytorch_histogram_raw, test/test_tensorboard.py::TestTensorBoardPyTorchNumpy::test_pytorch_np, test/test_tensorboard.py::TestTensorBoardPyTorchNumpy::test_pytorch_write, test/test_tensorboard.py::TestTensorBoardUtils::test_convert_to_HWC_dtype_remains_same, test/test_tensorboard.py::TestTensorBoardUtils::test_numpy_vid_uint8, test/test_tensorboard.py::TestTensorBoardUtils::test_prepare_video, test/test_tensorboard.py::TestTensorBoardUtils::test_to_HWC, test/test_tensorboard.py::TestTensorBoardWriter::test_writer, test/test_tensorboard.py::TestTensorBoardSummaryWriter::test_pathlib, test/test_tensorboard.py::TestTensorBoardSummaryWriter::test_summary_writer_close, test/test_tensorboard.py::TestTensorBoardSummaryWriter::test_summary_writer_ctx, test/test_tensorboard.py::TestTensorBoardEmbedding::test_embedding, test/test_tensorboard.py::TestTensorBoardEmbedding::test_embedding_64, test/test_tensorboard.py::TestTensorBoardSummary::test_audio, test/test_tensorboard.py::TestTensorBoardSummary::test_custom_scalars, test/test_tensorboard.py::TestTensorBoardSummary::test_empty_input, test/test_tensorboard.py::TestTensorBoardSummary::test_float32_image, test/test_tensorboard.py::TestTensorBoardSummary::test_histogram_auto, test/test_tensorboard.py::TestTensorBoardSummary::test_histogram_doane, test/test_tensorboard.py::TestTensorBoardSummary::test_histogram_fd, test/test_tensorboard.py::TestTensorBoardSummary::test_image_with_3_channel_batched, test/test_tensorboard.py::TestTensorBoardSummary::test_image_with_boxes, test/test_tensorboard.py::TestTensorBoardSummary::test_image_with_one_channel, test/test_tensorboard.py::TestTensorBoardSummary::test_image_with_one_channel_batched, test/test_tensorboard.py::TestTensorBoardSummary::test_image_without_channel, test/test_tensorboard.py::TestTensorBoardSummary::test_list_input, test/test_tensorboard.py::TestTensorBoardSummary::test_mesh, test/test_tensorboard.py::TestTensorBoardSummary::test_scalar_new_style, test/test_tensorboard.py::TestTensorBoardSummary::test_text, test/test_tensorboard.py::TestTensorBoardSummary::test_uint8_image, test/test_tensorboard.py::TestTensorBoardSummary::test_video, test/test_tensorboard.py::TestTensorBoardPytorchGraph::test_mlp_graph, test/test_tensorboard.py::TestTensorBoardPytorchGraph::test_nested_nn_squential, test/test_tensorboard.py::TestTensorBoardPytorchGraph::test_pytorch_graph, test/test_tensorboard.py::TestTensorBoardPytorchGraph::test_pytorch_graph_dict_input, test/test_tensorboard.py::TestTensorBoardPytorchGraph::test_torchvision_smoke, test/test_tensorboard.py::TestTensorBoardPytorchGraph::test_wrong_input_size, test/test_tensorboard.py::TestTensorBoardFigure::test_figure, test/test_tensorboard.py::TestTensorBoardFigure::test_figure_list, test/test_tensorboard.py::TestTensorBoardNumpy::test_pytorch_np_expect_fail, test/test_tensorboard.py::TestTensorBoardNumpy::test_scalar, test/test_tensorboard.py::TestTensorProtoSummary::test_complex_tensor_proto, test/test_tensorboard.py::TestTensorProtoSummary::test_empty_tensor_proto, test/test_tensorboard.py::TestTensorProtoSummary::test_float_tensor_proto, test/test_tensorboard.py::TestTensorProtoSummary::test_half_tensor_proto_bfloat16_proto_type_14, test/test_tensorboard.py::TestTensorProtoSummary::test_half_tensor_proto_float16_proto_type_19, test/test_tensorboard.py::TestTensorProtoSummary::test_int_tensor_proto, test/test_tensorboard.py::TestTensorProtoSummary::test_scalar_tensor_proto 2025-08-14T23:43:02.6925478Z 2025-08-14T23:43:08.9610769Z Running torch_np/numpy_tests/lib/test_type_check 1/1 ... [2025-08-14 23:43:08.960418] 2025-08-14T23:43:08.9619116Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:43:08.9620298Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_type_check.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:43:08.960418] 2025-08-14T23:43:15.0146090Z 2025-08-14T23:43:15.0147334Z torch_np/numpy_tests/lib/test_type_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_type_check_1.1_009da3641d8a6bad_.log 2025-08-14T23:43:15.0166193Z Running 50 items in this shard: test/torch_np/numpy_tests/lib/test_type_check.py::TestCommonType::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestMintypecode::test_default_1, test/torch_np/numpy_tests/lib/test_type_check.py::TestMintypecode::test_default_2, test/torch_np/numpy_tests/lib/test_type_check.py::TestMintypecode::test_default_3, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsscalar::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestReal::test_cmplx, test/torch_np/numpy_tests/lib/test_type_check.py::TestReal::test_real, test/torch_np/numpy_tests/lib/test_type_check.py::TestImag::test_cmplx, test/torch_np/numpy_tests/lib/test_type_check.py::TestImag::test_real, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplex::test_fail, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplex::test_pass, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsreal::test_fail, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsreal::test_isreal_real, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsreal::test_pass, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplexobj::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplexobj::test_list, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplexobj::test_scalar, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsrealobj::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_complex, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_complex1, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_goodvalues, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_ind, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_integer, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_neginf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_posinf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_complex, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_complex1, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_goodvalues, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_ind, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_integer, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_neginf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_posinf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_goodvalues, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_ind, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_neginf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_neginf_scalar, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_posinf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_posinf_scalar, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsposinf::test_generic, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsneginf::test_generic, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_array, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_complex_bad, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_complex_bad2, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_complex_good, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_do_not_rewrite_previous_keyword, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_float, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_generic, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_integer, test/torch_np/numpy_tests/lib/test_type_check.py::TestRealIfClose::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestArrayConversion::test_asfarray 2025-08-14T23:43:15.0183647Z 2025-08-14T23:43:20.7156755Z Running lazy/test_ts_opinfo 1/1 ... [2025-08-14 23:43:20.715437] 2025-08-14T23:43:20.7157249Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:43:20.7163431Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_ts_opinfo.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:43:20.716012] 2025-08-14T23:43:24.0538810Z 2025-08-14T23:43:24.0540030Z test_maskedtensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_maskedtensor_1.1_776d2cbc7952387e_.log 2025-08-14T23:43:24.0842262Z Running 955 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_device_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_to_dtype_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-08-14T23:43:24.1132916Z 2025-08-14T23:43:29.3263013Z Running test_mkldnn_fusion 1/1 ... [2025-08-14 23:43:29.326107] 2025-08-14T23:43:29.3263977Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:43:29.3274411Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkldnn_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-08-14 23:43:29.327129] 2025-08-14T23:43:48.9544472Z 2025-08-14T23:43:48.9546382Z lazy/test_ts_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_ts_opinfo_1.1_2b38c75e293f8ae5_.log 2025-08-14T23:43:48.9743476Z Running 292 items in this shard: test/lazy/test_ts_opinfo.py::TestLazyTensor::testConvolutionBackward, test/lazy/test_ts_opinfo.py::TestLazyTensor::test_tensor_ctr, test/lazy/test_ts_opinfo.py::TestLazyTensor::test_view_mark_step_preserved, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness__softmax_backward_data_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_abs_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_add_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_addcmul_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_addmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_addmm_decomposed_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_alias_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_arange_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_as_strided_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_as_strided_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_baddbmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_block_diag_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_bmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_cat_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_clamp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_clamp_min_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_constant_pad_nd_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_cos_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_cumsum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_diag_embed_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_diagonal_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_diagonal_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_div_floor_rounding_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_div_no_rounding_mode_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_div_trunc_rounding_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_empty_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_empty_strided_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_eq_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_exp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_expand_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_flip_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_floor_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_frac_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_gather_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_ge_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_grid_sampler_2d_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_gt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_le_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_log2_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_log_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_logsumexp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_lt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_masked_fill_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_max_binary_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_max_pool2d_with_indices_backward_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_max_reduction_no_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_max_reduction_with_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_maximum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_mean_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_min_binary_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_min_reduction_no_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_min_reduction_with_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_minimum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_mm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_mul_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_mv_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_narrow_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_native_batch_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_native_dropout_backward_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_native_layer_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_ne_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_neg_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_new_empty_strided_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_norm_fro_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_norm_inf_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_norm_nuc_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_permute_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_reciprocal_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_remainder_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_repeat_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_rsqrt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_scatter_add_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_select_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_sgn_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_sigmoid_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_slice_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_sort_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_sqrt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_squeeze_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_stack_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_std_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_std_unbiased_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_sub_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_sum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_t_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_tanh_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_topk_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_trace_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_transpose_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_tril_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_triu_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_trunc_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_unfold_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_uniform_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_unsqueeze_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_view_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir__softmax_backward_data_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_abs_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_add_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_addcmul_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_addmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_addmm_decomposed_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_alias_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_arange_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_as_strided_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_as_strided_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_baddbmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_block_diag_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_bmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_cat_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_clamp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_clamp_min_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_constant_pad_nd_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_cos_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_cumsum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_diag_embed_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_diagonal_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_diagonal_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_div_floor_rounding_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_div_no_rounding_mode_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_div_trunc_rounding_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_empty_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_empty_strided_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_eq_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_exp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_expand_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_flip_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_floor_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_frac_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_gather_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_ge_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_grid_sampler_2d_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_gt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_le_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_log2_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_log_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_logsumexp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_lt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_masked_fill_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_max_binary_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_max_pool2d_with_indices_backward_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_max_reduction_no_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_max_reduction_with_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_maximum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_mean_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_min_binary_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_min_reduction_no_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_min_reduction_with_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_minimum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_mm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_mul_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_mv_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_narrow_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_native_batch_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_native_dropout_backward_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_native_layer_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_ne_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_neg_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_new_empty_strided_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_norm_fro_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_norm_inf_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_norm_nuc_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_permute_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_reciprocal_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_remainder_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_repeat_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_rsqrt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_scatter_add_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_select_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_sgn_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_sigmoid_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_slice_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_sort_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_sqrt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_squeeze_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_stack_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_std_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_std_unbiased_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_sub_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_sum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_t_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_tanh_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_topk_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_trace_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_transpose_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_tril_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_triu_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_trunc_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_unfold_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_uniform_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_unsqueeze_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_correctness_with_reusing_ir_view_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy__softmax_backward_data_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_abs_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_add_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_addcdiv_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_addcmul_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_addmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_addmm_decomposed_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_alias_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_arange_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_as_strided_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_as_strided_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_baddbmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_bernoulli_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_bmm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_cat_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_clamp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_clamp_min_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_constant_pad_nd_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_cos_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_cumsum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_diagonal_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_diagonal_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_div_floor_rounding_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_div_no_rounding_mode_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_div_trunc_rounding_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_empty_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_empty_strided_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_eq_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_exp_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_expand_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_flip_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_floor_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_frac_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_gather_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_ge_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_grid_sampler_2d_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_gt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_le_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_log2_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_log_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_lt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_masked_fill_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_max_binary_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_max_pool2d_with_indices_backward_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_max_reduction_no_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_max_reduction_with_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_maximum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_mean_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_min_binary_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_min_reduction_no_dim_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_minimum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_mm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_mul_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_mv_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_native_batch_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_native_dropout_backward_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_native_layer_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_ne_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_neg_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_norm_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_norm_fro_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_norm_inf_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_permute_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_pow_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_reciprocal_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_remainder_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_repeat_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_rsqrt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_scatter_add_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_select_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_sgn_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_sigmoid_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_slice_scatter_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_sort_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_sqrt_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_squeeze_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_stack_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_std_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_std_unbiased_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_sub_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_sum_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_t_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_tanh_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_topk_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_trace_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_transpose_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_tril_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_triu_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_trunc_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_unfold_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_uniform_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_unsqueeze_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyOpInfoCPU::test_dispatched_to_lazy_view_copy_cpu_float32, test/lazy/test_ts_opinfo.py::TestLazyDynamicOps::test_adaptiveavgpool3d_dynamic, test/lazy/test_ts_opinfo.py::TestLazyDynamicOps::test_nonzero_dynamic 2025-08-14T23:43:48.9990503Z 2025-08-14T23:43:55.7265268Z Running benchmark_utils/test_benchmark_utils 1/1 ... [2025-08-14 23:43:55.726230] 2025-08-14T23:43:55.7266417Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:43:55.7273539Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'benchmark_utils/test_benchmark_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:43:55.726948] 2025-08-14T23:44:02.3878291Z 2025-08-14T23:44:02.3879868Z benchmark_utils/test_benchmark_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/benchmark_utils.test_benchmark_utils_1.1_2212a92bb1b95e8c_.log 2025-08-14T23:44:02.3886902Z Running 9 items in this shard: test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_adaptive_timer, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_collect_callgrind, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_collect_cpp_callgrind, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_compare, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_cpp_timer, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_fuzzer, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_manipulate_callgrind_stats, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_timer, test/benchmark_utils/test_benchmark_utils.py::TestBenchmarkUtils::test_timer_tiny_fast_snippet 2025-08-14T23:44:02.3894654Z 2025-08-14T23:44:09.2638962Z Running test_linalg 1/1 ... [2025-08-14 23:44:09.263623] 2025-08-14T23:44:09.2639398Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:44:09.2650882Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_linalg.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:44:09.264857] 2025-08-14T23:44:12.7165714Z 2025-08-14T23:44:12.7166620Z test_mkldnn_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_fusion_1.1_43ddaa86e6e8a956_.log 2025-08-14T23:44:12.7169733Z Running 8 items in this shard: test/test_mkldnn_fusion.py::TestMkldnnFusion::test_conv_binary_fusion_ops, test/test_mkldnn_fusion.py::TestMkldnnFusion::test_conv_transpose_unary_fusion_ops, test/test_mkldnn_fusion.py::TestMkldnnFusion::test_conv_unary_fusion_nnc, test/test_mkldnn_fusion.py::TestMkldnnFusion::test_conv_unary_fusion_ops, test/test_mkldnn_fusion.py::TestMkldnnFusion::test_linear_binary_fusion_ops, test/test_mkldnn_fusion.py::TestMkldnnFusion::test_linear_unary_fusion_ops, test/test_mkldnn_fusion.py::TestMkldnnFusion::test_single_conv, test/test_mkldnn_fusion.py::TestMkldnnFusion::test_unsupported_conv 2025-08-14T23:44:12.7172241Z 2025-08-14T23:44:18.1873603Z Running test_futures 1/1 ... [2025-08-14 23:44:18.184970] 2025-08-14T23:44:18.1874090Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:44:18.1879950Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_futures.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:44:18.184970] 2025-08-14T23:44:23.5829888Z 2025-08-14T23:44:23.5831318Z test_futures 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_futures_1.1_93bd42456491c0f5_.log 2025-08-14T23:44:23.5838633Z Running 22 items in this shard: test/test_futures.py::TestFuture::test_add_done_callback_error_is_ignored, test/test_futures.py::TestFuture::test_add_done_callback_maintains_callback_order, test/test_futures.py::TestFuture::test_add_done_callback_no_arg_error_is_ignored, test/test_futures.py::TestFuture::test_add_done_callback_simple, test/test_futures.py::TestFuture::test_chained_then, test/test_futures.py::TestFuture::test_collect_all, test/test_futures.py::TestFuture::test_done, test/test_futures.py::TestFuture::test_done_exception, test/test_futures.py::TestFuture::test_interleaving_then_and_add_done_callback_maintains_callback_order, test/test_futures.py::TestFuture::test_interleaving_then_and_add_done_callback_propagates_error, test/test_futures.py::TestFuture::test_mark_future_twice, test/test_futures.py::TestFuture::test_pickle_future, test/test_futures.py::TestFuture::test_set_exception, test/test_futures.py::TestFuture::test_set_exception_multithreading, test/test_futures.py::TestFuture::test_then, test/test_futures.py::TestFuture::test_then_no_arg, test/test_futures.py::TestFuture::test_then_raise, test/test_futures.py::TestFuture::test_then_wrong_arg, test/test_futures.py::TestFuture::test_wait, test/test_futures.py::TestFuture::test_wait_all, test/test_futures.py::TestFuture::test_wait_multi_thread, test/test_futures.py::TestFuture::test_wait_none 2025-08-14T23:44:23.5843933Z 2025-08-14T23:44:28.8953537Z Running torch_np/numpy_tests/lib/test_histograms 1/1 ... [2025-08-14 23:44:28.895151] 2025-08-14T23:44:28.8954154Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:44:28.8961064Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_histograms.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:44:28.895890] 2025-08-14T23:44:35.1022427Z 2025-08-14T23:44:35.1023644Z torch_np/numpy_tests/lib/test_histograms 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_histograms_1.1_d948c8865542e976_.log 2025-08-14T23:44:35.1046132Z Running 60 items in this shard: test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_arr_weights_mismatch, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_big_arrays, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_bin_array_dims, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_bin_edge_cases, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_bool_conversion, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_density, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_empty, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_error_binnum_type, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_exotic_weights, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_f32_rounding, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_finite_range, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_histogram_bin_edges, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_invalid_range, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_last_bin_inclusive_range, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_no_side_effects, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_object_array_of_0d, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_one_bin, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_outliers, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_precision, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_signed_overflow_bounds, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_signed_overflow_bounds_2, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_simple, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_some_nan_values, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_type, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_unsigned_monotonicity_check, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogram::test_weights, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_empty, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_incorrect_methods, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_limited_variance, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_novariance, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_outlier, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_scott_vs_stone, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_signed_integer_data_bins_auto, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_signed_integer_data_bins_doane, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_signed_integer_data_bins_fd, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_signed_integer_data_bins_rice, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_signed_integer_data_bins_scott, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_signed_integer_data_bins_stone, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_signed_integer_data_bins_sturges, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_simple, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_simple_range, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_simple_weighted, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramOptimBinNums::test_small, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_bins_array, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_bins_error_2, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_bins_errors, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_density_non_uniform_1d, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_density_non_uniform_2d, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_edge_dtype, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_empty, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_equal_edges, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_finite_range, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_identical_samples, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_inf_edges, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_large_integers, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_rightmost_binedge, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_shape_3d, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_shape_4d, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_simple, test/torch_np/numpy_tests/lib/test_histograms.py::TestHistogramdd::test_weights 2025-08-14T23:44:35.1067094Z 2025-08-14T23:44:40.9303782Z Running optim/test_optim 1/1 ... [2025-08-14 23:44:40.929183] 2025-08-14T23:44:40.9309905Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:44:40.9311767Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_optim.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:44:40.930819] 2025-08-14T23:44:45.7317758Z 2025-08-14T23:44:45.7318997Z optim/test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_optim_1.1_24d8fbfac9f6005e_.log 2025-08-14T23:44:45.7320745Z 2025-08-14T23:44:51.7431552Z Running nn/test_embedding 1/1 ... [2025-08-14 23:44:51.742908] 2025-08-14T23:44:51.7432827Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:44:51.7442379Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_embedding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:44:51.743908] 2025-08-14T23:45:05.1883745Z 2025-08-14T23:45:05.1884687Z nn/test_embedding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_embedding_1.1_1ea643fb794ee15f_.log 2025-08-14T23:45:05.1963792Z Running 165 items in this shard: test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_bag_from_pretrained, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_bag_from_pretrained_padding_idx, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_bag_functional, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_bag_padding_idx_error, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_float32, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_float64, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_int16, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_int32, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_int64, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_int8, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_options, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_padding_idx, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_from_pretrained_uint8, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_functional, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_max_norm, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_max_norm_unsorted_repeating_indices, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_sparse_basic, test/nn/test_embedding.py::TestEmbeddingNN::test_embedding_sparse_empty_tensor, test/nn/test_embedding.py::TestEmbeddingNN::test_embeddingbag_from_pretrained, test/nn/test_embedding.py::TestEmbeddingNN::test_embeddingbag_from_pretrained_options, test/nn/test_embedding.py::TestEmbeddingNN::test_embeddingbag_include_last_offset, test/nn/test_embedding.py::TestEmbeddingNN::test_large_tensors, test/nn/test_embedding.py::TestEmbeddingNN::test_move_sparse_half_embedding, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int32_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_empty_per_sample_weights_and_offsets_cpu_int64_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int32_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_new_offsets_cpu_int64_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_no_offsets_cpu_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_no_offsets_cpu_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_no_offsets_cpu_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_no_offsets_cpu_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int32_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_and_offsets_cpu_int64_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_failures_cpu_int32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_failures_cpu_int32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_failures_cpu_int64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_EmbeddingBag_per_sample_weights_failures_cpu_int64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_backward_cpu_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_1D_padding_idx_cpu_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_1D_padding_idx_cpu_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_2D_padding_idx_cpu_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_2D_padding_idx_cpu_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_bfloat16_cpu_int32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_bfloat16_cpu_int32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_bfloat16_cpu_int64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_bfloat16_cpu_int64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int32_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_device_cpu_int64_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_dimension_errors_cpu, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_empty_input_cpu_int32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_empty_input_cpu_int32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_empty_input_cpu_int64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_empty_input_cpu_int64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_half_cpu_int32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_half_cpu_int32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_half_cpu_int64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_half_cpu_int64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int32_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int32_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int32_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int32_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int32_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int64_bfloat16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int64_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int64_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_non_contiguous_weight_cpu_int64_int64_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_max_cpu_float32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_max_cpu_float32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_max_cpu_float64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_max_cpu_float64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_mean_cpu_float32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_mean_cpu_float32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_mean_cpu_float64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_mean_cpu_float64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_sum_cpu_float32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_sum_cpu_float32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_sum_cpu_float64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx0_mode_sum_cpu_float64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_max_cpu_float32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_max_cpu_float32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_max_cpu_float64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_max_cpu_float64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_mean_cpu_float32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_mean_cpu_float32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_mean_cpu_float64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_mean_cpu_float64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_sum_cpu_float32_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_sum_cpu_float32_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_sum_cpu_float64_int32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_out_of_bounds_idx_padding_idx_0_mode_sum_cpu_float64_int64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_per_sample_weights_grad_bag_use_grad_False_per_sample_weights_use_grad_False_cpu, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_per_sample_weights_grad_bag_use_grad_False_per_sample_weights_use_grad_True_cpu, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_per_sample_weights_grad_bag_use_grad_True_per_sample_weights_use_grad_False_cpu, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_bag_per_sample_weights_grad_bag_use_grad_True_per_sample_weights_use_grad_True_cpu, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_dense_grad_cpu, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_max_norm_backward_cpu_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_max_norm_device_cpu_float16, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_max_norm_device_cpu_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_max_norm_device_cpu_float64, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_max_norm_fwd_AD_cpu_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_padding_idx_cpu_float32, test/nn/test_embedding.py::TestEmbeddingNNDeviceTypeCPU::test_embedding_scalar_weight_error_cpu 2025-08-14T23:45:05.2049180Z 2025-08-14T23:45:10.2639222Z Running nn/test_dropout 1/1 ... [2025-08-14 23:45:10.263716] 2025-08-14T23:45:10.2639690Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:45:10.2646482Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_dropout.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:45:10.263716] 2025-08-14T23:45:15.9532799Z 2025-08-14T23:45:15.9533716Z nn/test_dropout 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_dropout_1.1_13086eb436272110_.log 2025-08-14T23:45:15.9537476Z Running 9 items in this shard: test/nn/test_dropout.py::TestDropoutNN::test_AlphaDropout, test/nn/test_dropout.py::TestDropoutNN::test_FeatureAlphaDropout, test/nn/test_dropout.py::TestDropoutNN::test_invalid_dropout_p, test/nn/test_dropout.py::TestDropoutNN::test_native_dropout_corner_case, test/nn/test_dropout.py::TestDropoutNNDeviceTypeCPU::test_Dropout1d_cpu_float64, test/nn/test_dropout.py::TestDropoutNNDeviceTypeCPU::test_Dropout2d_cpu, test/nn/test_dropout.py::TestDropoutNNDeviceTypeCPU::test_Dropout3d_cpu, test/nn/test_dropout.py::TestDropoutNNDeviceTypeCPU::test_Dropout_cpu, test/nn/test_dropout.py::TestDropoutNNDeviceTypeCPU::test_empty_dropout_cpu 2025-08-14T23:45:15.9540245Z 2025-08-14T23:45:21.4740961Z Running test_autograd 1/1 ... [2025-08-14 23:45:21.473769] 2025-08-14T23:45:21.4741683Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:45:21.4749639Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autograd.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:45:21.474368] 2025-08-14T23:45:52.8729828Z 2025-08-14T23:45:52.8731380Z functorch/test_aotdispatch 7/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_7.7_986f13579880d041_.log 2025-08-14T23:45:52.8904584Z Running 320 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_backward_pass_autocast_custom, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_pass_autocast_on, 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_min_cut_partitioner_raise_getitems, 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_backward_pass_autocast_off, 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_mutations_in_bw_detached_from_tangent, 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_subclasses_mixed, 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-08-14T23:45:52.9069304Z 2025-08-14T23:45:58.4943046Z Running torch_np/numpy_tests/core/test_scalarmath 1/1 ... [2025-08-14 23:45:58.492037] 2025-08-14T23:45:58.4943753Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:45:58.4952743Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalarmath.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:45:58.492037] 2025-08-14T23:46:25.1051833Z 2025-08-14T23:46:25.1053324Z test_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autograd_1.1_882de3d7a76a9a74_.log 2025-08-14T23:46:25.1322303Z Running 649 items in this shard: test/test_autograd.py::TestAutograd::test_access_saved_tensor_twice_without_recomputation_works, test/test_autograd.py::TestAutograd::test_accumulate_grad, test/test_autograd.py::TestAutograd::test_accumulate_grad_posthooks_can_observe_tensor_prehook, test/test_autograd.py::TestAutograd::test_accumulate_grad_posthooks_should_not_execute, test/test_autograd.py::TestAutograd::test_accumulate_grad_tensor_reference, test/test_autograd.py::TestAutograd::test_accumulate_grad_with_zero_numel_grad, test/test_autograd.py::TestAutograd::test_anomaly_assign_parent_cleanup, test/test_autograd.py::TestAutograd::test_anomaly_detect_nan, test/test_autograd.py::TestAutograd::test_anomaly_grad_warnings, test/test_autograd.py::TestAutograd::test_anomaly_mode_no_check_nan, test/test_autograd.py::TestAutograd::test_attribute_deletion, test/test_autograd.py::TestAutograd::test_autograd_inplace_view_of_view, test/test_autograd.py::TestAutograd::test_autograd_inplace_views_creation_meta, test/test_autograd.py::TestAutograd::test_autograd_inplace_views_cross_dtype, test/test_autograd.py::TestAutograd::test_autograd_multiple_views_python, test/test_autograd.py::TestAutograd::test_autograd_node_isinstance, test/test_autograd.py::TestAutograd::test_autograd_print_tensor, test/test_autograd.py::TestAutograd::test_autograd_python_custom_function_inplace, test/test_autograd.py::TestAutograd::test_autograd_simple_views_python, test/test_autograd.py::TestAutograd::test_autograd_views_codegen, test/test_autograd.py::TestAutograd::test_backward, test/test_autograd.py::TestAutograd::test_backward_badcalls, test/test_autograd.py::TestAutograd::test_backward_copy, test/test_autograd.py::TestAutograd::test_backward_create_graph_warns, test/test_autograd.py::TestAutograd::test_backward_hook_relative_ordering, test/test_autograd.py::TestAutograd::test_backward_no_grad, test/test_autograd.py::TestAutograd::test_backward_to_node, test/test_autograd.py::TestAutograd::test_backward_twice_retained_graph_with_saved_values, test/test_autograd.py::TestAutograd::test_backward_twice_retained_graph_without_saved_values, test/test_autograd.py::TestAutograd::test_backward_twice_with_saved_values, test/test_autograd.py::TestAutograd::test_backward_twice_without_saved_values, test/test_autograd.py::TestAutograd::test_backward_with_inputs, test/test_autograd.py::TestAutograd::test_backward_with_nonleaf_inputs, test/test_autograd.py::TestAutograd::test_backward_with_scalar_input, test/test_autograd.py::TestAutograd::test_calculate_shape_util, test/test_autograd.py::TestAutograd::test_callback_adds_callback, test/test_autograd.py::TestAutograd::test_callback_propagates_errors_from_device_thread, test/test_autograd.py::TestAutograd::test_cant_create_saved_tensors, test/test_autograd.py::TestAutograd::test_checkpoint_detects_non_determinism, test/test_autograd.py::TestAutograd::test_checkpoint_sequential_warns_if_use_reentrant_not_passed_explcitly, test/test_autograd.py::TestAutograd::test_checkpoint_valid_reset_on_error, test/test_autograd.py::TestAutograd::test_checkpoint_warns_if_use_reentrant_not_passed_explcitly, test/test_autograd.py::TestAutograd::test_checkpointing, test/test_autograd.py::TestAutograd::test_checkpointing_non_reentrant_autocast_cpu, test/test_autograd.py::TestAutograd::test_checkpointing_non_reentrant_autocast_gpu, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_arbitrary_input_output, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_correct_grad, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_custom_function_works, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_dataparallel, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_detached_tensor_use_reentrant_False, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_detached_tensor_use_reentrant_True, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_input_requires_grad_False, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_input_requires_grad_True, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_memory_savings, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_parameter_used_in_an_out, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_saved_object_identity, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_with_context_fn, test/test_autograd.py::TestAutograd::test_copy_slices_graph_task_updates, test/test_autograd.py::TestAutograd::test_create_graph_and_full_backward_hook_cycle, test/test_autograd.py::TestAutograd::test_current_graph_task_execution_order, test/test_autograd.py::TestAutograd::test_current_graph_task_id, test/test_autograd.py::TestAutograd::test_current_node, test/test_autograd.py::TestAutograd::test_custom_autograd_no_early_free, test/test_autograd.py::TestAutograd::test_custom_autograd_repeated_grad_grad, test/test_autograd.py::TestAutograd::test_custom_function_cycle, test/test_autograd.py::TestAutograd::test_custom_function_error, test/test_autograd.py::TestAutograd::test_custom_function_exception, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_forward_is_no_op, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_inplace_checks, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_non_differentiable, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_non_tensor_before_tensor_args, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_view_checks, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_wrong_formula, test/test_autograd.py::TestAutograd::test_custom_function_inplace_on_non_default_view, test/test_autograd.py::TestAutograd::test_custom_function_inplace_on_view_of_leaf, test/test_autograd.py::TestAutograd::test_custom_function_local_inplace, test/test_autograd.py::TestAutograd::test_custom_function_mark_dirty_not_differentiable, test/test_autograd.py::TestAutograd::test_custom_function_mark_output_view_of_intermediate, test/test_autograd.py::TestAutograd::test_custom_function_no_tensors, test/test_autograd.py::TestAutograd::test_custom_function_non_tensor_inputs_outputs, test/test_autograd.py::TestAutograd::test_custom_function_preserve_torch_function_when_return_as_is, test/test_autograd.py::TestAutograd::test_custom_function_return_view_in_nograd, test/test_autograd.py::TestAutograd::test_custom_function_save_for_forward, test/test_autograd.py::TestAutograd::test_custom_function_saved_tensors, test/test_autograd.py::TestAutograd::test_custom_function_setup_context_multi_input, test/test_autograd.py::TestAutograd::test_custom_function_setup_context_multi_output, test/test_autograd.py::TestAutograd::test_custom_function_setup_context_simple, test/test_autograd.py::TestAutograd::test_custom_function_vmap_defaults, test/test_autograd.py::TestAutograd::test_deep_reentrant, test/test_autograd.py::TestAutograd::test_default_saved_tensors_hooks_double_backward, test/test_autograd.py::TestAutograd::test_dep_nograd, test/test_autograd.py::TestAutograd::test_dependent_backward, test/test_autograd.py::TestAutograd::test_detach, test/test_autograd.py::TestAutograd::test_detach_base, test/test_autograd.py::TestAutograd::test_detach_then_inplace_raises_in_autograd, test/test_autograd.py::TestAutograd::test_diagonal_expanded_v, test/test_autograd.py::TestAutograd::test_dir, test/test_autograd.py::TestAutograd::test_disabling_saved_tensor_hooks, test/test_autograd.py::TestAutograd::test_disabling_saved_tensor_hooks_nested, test/test_autograd.py::TestAutograd::test_dont_materialize_grads, test/test_autograd.py::TestAutograd::test_duplicate_backward_root, test/test_autograd.py::TestAutograd::test_enable_grad_decorator_no_paren, test/test_autograd.py::TestAutograd::test_first_grad_fn_access_in_no_grad_mode, test/test_autograd.py::TestAutograd::test_free_deep_graph, test/test_autograd.py::TestAutograd::test_free_deep_graph_complicated, test/test_autograd.py::TestAutograd::test_free_deep_graph_pyfunction, test/test_autograd.py::TestAutograd::test_full_backward_hook_double_backward, test/test_autograd.py::TestAutograd::test_function, test/test_autograd.py::TestAutograd::test_function_returns_input, test/test_autograd.py::TestAutograd::test_function_returns_undefined_tensor, test/test_autograd.py::TestAutograd::test_gc_in_destructor, test/test_autograd.py::TestAutograd::test_grad, test/test_autograd.py::TestAutograd::test_grad_badcalls, test/test_autograd.py::TestAutograd::test_grad_batched_grad, test/test_autograd.py::TestAutograd::test_grad_empty_inputs, test/test_autograd.py::TestAutograd::test_grad_fn_attr_bindings, test/test_autograd.py::TestAutograd::test_grad_fn_badcalls, test/test_autograd.py::TestAutograd::test_grad_fn_input_metadata, test/test_autograd.py::TestAutograd::test_grad_fn_prehooks, test/test_autograd.py::TestAutograd::test_grad_fn_prehooks_multiple_outputs, test/test_autograd.py::TestAutograd::test_grad_fn_prehooks_remove_hooks, test/test_autograd.py::TestAutograd::test_grad_materialize_grads, test/test_autograd.py::TestAutograd::test_grad_mode_class_decoration, test/test_autograd.py::TestAutograd::test_grad_mode_restored_reentrant, test/test_autograd.py::TestAutograd::test_grad_nonleaf, test/test_autograd.py::TestAutograd::test_grad_nonleaf_many_outputs, test/test_autograd.py::TestAutograd::test_grad_nonleaf_register_hook, test/test_autograd.py::TestAutograd::test_grad_to_node, test/test_autograd.py::TestAutograd::test_grad_to_node_inplace, test/test_autograd.py::TestAutograd::test_grad_to_node_materialize, test/test_autograd.py::TestAutograd::test_grad_to_node_multi, test/test_autograd.py::TestAutograd::test_grad_to_node_set, test/test_autograd.py::TestAutograd::test_grad_unreachable, test/test_autograd.py::TestAutograd::test_grad_unreachable_discovery, test/test_autograd.py::TestAutograd::test_gradcheck_backward_mul_by_grad_output, test/test_autograd.py::TestAutograd::test_gradcheck_check_batched_grad, test/test_autograd.py::TestAutograd::test_gradcheck_check_forward_or_backward_only, test/test_autograd.py::TestAutograd::test_gradcheck_check_no_differentiable_outputs, test/test_autograd.py::TestAutograd::test_gradcheck_complex_non_complex_outputs, test/test_autograd.py::TestAutograd::test_gradcheck_custom_error, test/test_autograd.py::TestAutograd::test_gradcheck_default_device_placement_context, test/test_autograd.py::TestAutograd::test_gradcheck_dense_and_sparse_inputs, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad_batched_grad, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad_respects_requires_grad, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad_runs_with_no_requires_grad, test/test_autograd.py::TestAutograd::test_gradcheck_get_analytical_jacobian, test/test_autograd.py::TestAutograd::test_gradcheck_get_numerical_jacobian, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout0, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout1, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout2, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout3, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout4, test/test_autograd.py::TestAutograd::test_gradcheck_jacobian_mismatch, test/test_autograd.py::TestAutograd::test_gradcheck_multiple_mkldnn_inputs, test/test_autograd.py::TestAutograd::test_gradcheck_nondeterministic, test/test_autograd.py::TestAutograd::test_gradcheck_output_shape_or_dtype_depend_on_values, test/test_autograd.py::TestAutograd::test_gradcheck_single_input, test/test_autograd.py::TestAutograd::test_gradcheck_test_outputs, test/test_autograd.py::TestAutograd::test_gradcheck_undefined_grad, test/test_autograd.py::TestAutograd::test_gradcheck_validates_input_mkldnn, test/test_autograd.py::TestAutograd::test_gradcheck_validates_inputs, test/test_autograd.py::TestAutograd::test_gradient_edge_graph_ownership, test/test_autograd.py::TestAutograd::test_gradient_edge_output, test/test_autograd.py::TestAutograd::test_graph_save_on_cpu, test/test_autograd.py::TestAutograd::test_graph_save_on_cpu_cuda, test/test_autograd.py::TestAutograd::test_hessian_vector, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_False_use_tensor_hook_False, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_False_use_tensor_hook_True, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_True_use_tensor_hook_False, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_True_use_tensor_hook_True, test/test_autograd.py::TestAutograd::test_hook_edge_case_when_called_with_grad, test/test_autograd.py::TestAutograd::test_hook_none, test/test_autograd.py::TestAutograd::test_hook_with_no_name, test/test_autograd.py::TestAutograd::test_hooks, test/test_autograd.py::TestAutograd::test_hooks_cpp, test/test_autograd.py::TestAutograd::test_increment_version, test/test_autograd.py::TestAutograd::test_index_backward_does_not_save_tensor, test/test_autograd.py::TestAutograd::test_indexing, test/test_autograd.py::TestAutograd::test_indexing_duplicates, test/test_autograd.py::TestAutograd::test_inplace, test/test_autograd.py::TestAutograd::test_inplace_not_requires_grad, test/test_autograd.py::TestAutograd::test_inplace_on_view_backward, test/test_autograd.py::TestAutograd::test_inplace_on_view_leaf_errors, test/test_autograd.py::TestAutograd::test_inplace_on_view_saved_output, test/test_autograd.py::TestAutograd::test_inplace_on_view_weak_grad_fn, test/test_autograd.py::TestAutograd::test_input_buffer_accum, test/test_autograd.py::TestAutograd::test_integer_outputs, test/test_autograd.py::TestAutograd::test_invalid_gradients, test/test_autograd.py::TestAutograd::test_isolated_node, test/test_autograd.py::TestAutograd::test_leaf_assignment, test/test_autograd.py::TestAutograd::test_legacy_function_deprecation_exception, test/test_autograd.py::TestAutograd::test_lobpcg, test/test_autograd.py::TestAutograd::test_mark_non_differentiable, test/test_autograd.py::TestAutograd::test_mark_non_differentiable_mixed, test/test_autograd.py::TestAutograd::test_mark_non_differentiable_none, test/test_autograd.py::TestAutograd::test_materialize_grads, test/test_autograd.py::TestAutograd::test_multi_backward, test/test_autograd.py::TestAutograd::test_multi_backward_no_grad, test/test_autograd.py::TestAutograd::test_multi_grad_all_hooks, test/test_autograd.py::TestAutograd::test_multi_grad_any_hooks, test/test_autograd.py::TestAutograd::test_multi_grad_hooks_invalid_mode, test/test_autograd.py::TestAutograd::test_multiple_insert_removal_caching, test/test_autograd.py::TestAutograd::test_named_tensor_for_complex_views, test/test_autograd.py::TestAutograd::test_naughty_anomaly_access, test/test_autograd.py::TestAutograd::test_naughty_autograd_function_attribute_access, test/test_autograd.py::TestAutograd::test_naughty_autograd_function_stashing_ctx, test/test_autograd.py::TestAutograd::test_nested_anomaly_detect_nan, test/test_autograd.py::TestAutograd::test_nested_anomaly_printstack_cleanup, test/test_autograd.py::TestAutograd::test_next_functions, test/test_autograd.py::TestAutograd::test_no_grad, test/test_autograd.py::TestAutograd::test_no_grad_assignment, test/test_autograd.py::TestAutograd::test_no_grad_copy, test/test_autograd.py::TestAutograd::test_no_grad_copy_sparse, test/test_autograd.py::TestAutograd::test_no_grad_input, test/test_autograd.py::TestAutograd::test_no_grad_modifies_version, test/test_autograd.py::TestAutograd::test_no_grad_python_function, test/test_autograd.py::TestAutograd::test_no_requires_grad_inplace, test/test_autograd.py::TestAutograd::test_no_unnecessary_save, test/test_autograd.py::TestAutograd::test_no_unnecessary_unwrapping, test/test_autograd.py::TestAutograd::test_node_ordering_when_none_returned, test/test_autograd.py::TestAutograd::test_node_post_hook_registered_during_unpack_hook, test/test_autograd.py::TestAutograd::test_not_implemented_fwad, test/test_autograd.py::TestAutograd::test_not_implemented_grad, test/test_autograd.py::TestAutograd::test_numpy_requires_grad, test/test_autograd.py::TestAutograd::test_once_differentiable, test/test_autograd.py::TestAutograd::test_out_variant_raises_when_inputs_require_grad, test/test_autograd.py::TestAutograd::test_pack_hook_with_inplace_modification_should_fail, test/test_autograd.py::TestAutograd::test_pickle, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_e2e, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_gets_cleaned_up, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_multiple_hooks, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_multiple_tensors, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_on_non_leaf, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_ordering, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_returns_not_None, test/test_autograd.py::TestAutograd::test_pow_zero_tensor_gradient, test/test_autograd.py::TestAutograd::test_power_function, test/test_autograd.py::TestAutograd::test_prehook_ordering, test/test_autograd.py::TestAutograd::test_profiler, test/test_autograd.py::TestAutograd::test_profiler_aggregation_fake, test/test_autograd.py::TestAutograd::test_profiler_aggregation_lstm, test/test_autograd.py::TestAutograd::test_profiler_aggregation_table, test/test_autograd.py::TestAutograd::test_profiler_function_event_avg, test/test_autograd.py::TestAutograd::test_profiler_propagation, test/test_autograd.py::TestAutograd::test_profiler_seq_nr, test/test_autograd.py::TestAutograd::test_profiler_shapes, test/test_autograd.py::TestAutograd::test_profiler_unboxed_only, test/test_autograd.py::TestAutograd::test_pynode_destruction_deadlock, test/test_autograd.py::TestAutograd::test_record_function, test/test_autograd.py::TestAutograd::test_record_function_callbacks, test/test_autograd.py::TestAutograd::test_record_function_legacy, test/test_autograd.py::TestAutograd::test_record_function_multithreaded, test/test_autograd.py::TestAutograd::test_reentrant_child_error, test/test_autograd.py::TestAutograd::test_reentrant_priority, test/test_autograd.py::TestAutograd::test_reentrant_with_callbacks_both_depths, test/test_autograd.py::TestAutograd::test_reentrant_with_callbacks_depth_0, test/test_autograd.py::TestAutograd::test_reentrant_with_callbacks_depth_1, test/test_autograd.py::TestAutograd::test_reentrant_with_leaf_variable_hook, test/test_autograd.py::TestAutograd::test_reentrant_with_non_leaf_variable_hook, test/test_autograd.py::TestAutograd::test_requires_grad, test/test_autograd.py::TestAutograd::test_requires_grad_, test/test_autograd.py::TestAutograd::test_requires_grad_inplace, test/test_autograd.py::TestAutograd::test_retain_grad, test/test_autograd.py::TestAutograd::test_retain_grad_cycle, test/test_autograd.py::TestAutograd::test_retain_grad_inplace, test/test_autograd.py::TestAutograd::test_retain_grad_inplace_over_view, test/test_autograd.py::TestAutograd::test_retains_grad_can_always_observe_tensor_prehook, test/test_autograd.py::TestAutograd::test_retains_grad_inplace_multiple_outputs, test/test_autograd.py::TestAutograd::test_return_duplicate, test/test_autograd.py::TestAutograd::test_return_duplicate_inplace, test/test_autograd.py::TestAutograd::test_return_leaf, test/test_autograd.py::TestAutograd::test_return_leaf_inplace, test/test_autograd.py::TestAutograd::test_save_none_for_backward, test/test_autograd.py::TestAutograd::test_save_on_cpu_and_checkpoint, test/test_autograd.py::TestAutograd::test_save_output_nr, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_custom_error_propagation, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_custom_function_intermediates, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_extra_enter_during_bw_no_leak, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_extra_exit_during_bw_no_crash, test/test_autograd.py::TestAutograd::test_saved_tensors_hook_version_counter_not_shared, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_did_not_save_original_with_default_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_did_not_save_original_with_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_saved_original_with_default_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_saved_original_with_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_saved_original_inplace_detach, test/test_autograd.py::TestAutograd::test_saved_variable_version_counter, test/test_autograd.py::TestAutograd::test_saved_variables_deprecated, test/test_autograd.py::TestAutograd::test_saving_variable_to_disk, test/test_autograd.py::TestAutograd::test_scalar_grad_mixed_device, test/test_autograd.py::TestAutograd::test_select_expanded_v, test/test_autograd.py::TestAutograd::test_select_sum, test/test_autograd.py::TestAutograd::test_set_data_preserve_pyobj, test/test_autograd.py::TestAutograd::test_set_data_self_requires_grad, test/test_autograd.py::TestAutograd::test_set_data_tensorimpl_type, test/test_autograd.py::TestAutograd::test_set_grad_coroutines, test/test_autograd.py::TestAutograd::test_set_grad_coroutines_benign_exceptions, test/test_autograd.py::TestAutograd::test_set_grad_coroutines_critical_exceptions, test/test_autograd.py::TestAutograd::test_set_grad_coroutines_exit, test/test_autograd.py::TestAutograd::test_set_grad_enabled, test/test_autograd.py::TestAutograd::test_set_grad_enabled_wraps, test/test_autograd.py::TestAutograd::test_set_grad_generator_functions, test/test_autograd.py::TestAutograd::test_set_grad_generator_functions_recursive, test/test_autograd.py::TestAutograd::test_set_materialize_non_diff_grads, test/test_autograd.py::TestAutograd::test_setitem, test/test_autograd.py::TestAutograd::test_setitem_mask, test/test_autograd.py::TestAutograd::test_setting_default_saved_variable_hooks_twice_should_not_fail, test/test_autograd.py::TestAutograd::test_setting_default_saved_variable_hooks_twice_should_use_inner, test/test_autograd.py::TestAutograd::test_setup_context_when_forward_has_default_args, test/test_autograd.py::TestAutograd::test_shape, test/test_autograd.py::TestAutograd::test_sharded_grad, test/test_autograd.py::TestAutograd::test_simple_reentrant, test/test_autograd.py::TestAutograd::test_slice_expanded_v, test/test_autograd.py::TestAutograd::test_sparse_gather_both_scalar, test/test_autograd.py::TestAutograd::test_sparse_gather_dim0, test/test_autograd.py::TestAutograd::test_sparse_gather_dim1, test/test_autograd.py::TestAutograd::test_sparse_gather_dim_neg, test/test_autograd.py::TestAutograd::test_sparse_gather_ind_scalar, test/test_autograd.py::TestAutograd::test_sparse_gather_x_scalar, test/test_autograd.py::TestAutograd::test_sparse_mm_backward, test/test_autograd.py::TestAutograd::test_tensor_grad_warnings, test/test_autograd.py::TestAutograd::test_tensor_hooks_inplace, test/test_autograd.py::TestAutograd::test_tensor_hooks_inplace_multiple_outputs, test/test_autograd.py::TestAutograd::test_tensor_hooks_inplace_over_view, test/test_autograd.py::TestAutograd::test_thread_shutdown, test/test_autograd.py::TestAutograd::test_to_sparse_backward, test/test_autograd.py::TestAutograd::test_too_many_grads, test/test_autograd.py::TestAutograd::test_type_conversions, test/test_autograd.py::TestAutograd::test_unpack_hooks_exec_count, test/test_autograd.py::TestAutograd::test_unrelated_inputs, test/test_autograd.py::TestAutograd::test_unsafe_set_version_counter, test/test_autograd.py::TestAutograd::test_unused_output, test/test_autograd.py::TestAutograd::test_var_mean_differentiable, test/test_autograd.py::TestAutograd::test_variable_traverse, test/test_autograd.py::TestAutograd::test_version_counter, test/test_autograd.py::TestAutograd::test_view_func_replay, test/test_autograd.py::TestAutograd::test_view_func_replay_with_modified_state, test/test_autograd.py::TestAutograd::test_view_replay_enabled, test/test_autograd.py::TestAutograd::test_volatile_deprecated, test/test_autograd.py::TestAutograd::test_will_engine_execute_node, test/test_autograd.py::TestAutograd::test_wrapped_number_saved_tensors_hooks, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_inplace_on_view_not_same_layout, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_inplace_on_view_same_layout, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_metadata_check_for_storage_numel_skipped, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_out_of_place_basic, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_out_of_place_not_same_layout, test/test_autograd.py::TestAutogradForwardMode::test_advanced_packing_unpacking, test/test_autograd.py::TestAutogradForwardMode::test_backward_graph_destruction, test/test_autograd.py::TestAutogradForwardMode::test_basic_packing_unpacking, test/test_autograd.py::TestAutogradForwardMode::test_codegen_ignores_undefined_outputs, test/test_autograd.py::TestAutogradForwardMode::test_create_new_zeros_with_same_meta, test/test_autograd.py::TestAutogradForwardMode::test_default_level, test/test_autograd.py::TestAutogradForwardMode::test_detach_view_tracking, test/test_autograd.py::TestAutogradForwardMode::test_forward_level_cleanup, test/test_autograd.py::TestAutogradForwardMode::test_fwd_grad_enabled, test/test_autograd.py::TestAutogradForwardMode::test_grad_cleanup, test/test_autograd.py::TestAutogradForwardMode::test_make_dual_forbid_integral_dtype, test/test_autograd.py::TestAutogradForwardMode::test_make_dual_inference_tensor_in_inference_mode, test/test_autograd.py::TestAutogradForwardMode::test_make_dual_torch_dispatch, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_check_conj, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_checks_ignores_size_zero, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_checks_storage_numel, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_ignore_storage_offset_for_zero_numel_tensor, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_when_primal_has_conj_bit, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_when_primal_has_neg_bit, test/test_autograd.py::TestAutogradForwardMode::test_nested_level, test/test_autograd.py::TestAutogradForwardMode::test_non_differentiable, test/test_autograd.py::TestAutogradForwardMode::test_out_variant, test/test_autograd.py::TestAutogradForwardMode::test_print, test/test_autograd.py::TestAutogradForwardMode::test_set_fw_grad_having_own_fw_grad_at_same_level, test/test_autograd.py::TestAutogradForwardMode::test_set_fwd_grad_enabled, test/test_autograd.py::TestAutogradForwardMode::test_size_check, test/test_autograd.py::TestAutogradForwardMode::test_view_inplace_always_creates_a_view, test/test_autograd.py::TestAutogradForwardMode::test_view_inplace_differentiable_views, test/test_autograd.py::TestAutogradForwardMode::test_view_inplace_non_differentiable_views, test/test_autograd.py::TestAllowMutationOnSaved::test_backward_out_of_context, test/test_autograd.py::TestAllowMutationOnSaved::test_basic, test/test_autograd.py::TestAllowMutationOnSaved::test_disallow_nesting, test/test_autograd.py::TestAllowMutationOnSaved::test_double_backward, test/test_autograd.py::TestAllowMutationOnSaved::test_inplace_foreach, test/test_autograd.py::TestAllowMutationOnSaved::test_save_base_and_modify_view, test/test_autograd.py::TestAllowMutationOnSaved::test_save_view_modify_base, test/test_autograd.py::TestAllowMutationOnSaved::test_saved_but_not_anymore, test/test_autograd.py::TestAllowMutationOnSaved::test_saved_same_tensor_different_versions, test/test_autograd.py::TestAllowMutationOnSaved::test_saved_same_tensor_many_times, test/test_autograd.py::TestAllowMutationOnSaved::test_views, test/test_autograd.py::TestAllowMutationOnSaved::test_with_math_views, test/test_autograd.py::TestAllowMutationOnSaved::test_with_out_variant, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_context_manager, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_decorator, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_existing_autograd_session, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_handle_direct_view_on_rebase, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_handle_indirect_view_on_rebase, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_inf_mode_functional_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_inf_mode_inplace_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_inf_mode_view_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_normal_mode_functional_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_normal_mode_inplace_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_normal_mode_view_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_tensor_creation, test/test_autograd.py::TestAutogradInferenceMode::test_mix_inference_and_normal_tensor_functional_op, test/test_autograd.py::TestAutogradInferenceMode::test_mix_inference_and_normal_tensor_inplace_op, test/test_autograd.py::TestAutogradInferenceMode::test_mix_inference_and_normal_tensor_view_op, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_inplace_output_in_inference_mode, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_inplace_output_in_normal_mode, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_view_output_in_inference_mode, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_view_output_in_normal_mode, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_multi_producer_case_4_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_2_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_3_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_3_correctness_non_default_ambient_stream, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_4_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_side_stream_backward_overlap, test/test_autograd.py::TestMultithreadAutograd::test_cat_stack_r_to_c, test/test_autograd.py::TestMultithreadAutograd::test_custom_function_propagates_errors_from_device_thread, test/test_autograd.py::TestMultithreadAutograd::test_dataparallel_saved_tensors_hooks, test/test_autograd.py::TestMultithreadAutograd::test_fork_join_in_middle, test/test_autograd.py::TestMultithreadAutograd::test_multi_grad_all_hooks, test/test_autograd.py::TestMultithreadAutograd::test_multi_grad_any_hooks, test/test_autograd.py::TestMultithreadAutograd::test_multithreaded_exception_propagation, test/test_autograd.py::TestMultithreadAutograd::test_preserve_backtrace, test/test_autograd.py::TestMultithreadAutograd::test_python_thread_in_middle, test/test_autograd.py::TestMultithreadAutograd::test_set_multithreading_enabled_as_context_manager_and_function, test/test_autograd.py::TestMultithreadAutograd::test_simple_backward, test/test_autograd.py::TestMultithreadAutograd::test_simple_backward_same_input, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_kwargs_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_kwargs_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_non_tensor_inputs_and_outputs_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_non_tensor_inputs_and_outputs_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_reentrant_backwards_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_reentrant_backwards_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_same_graph_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_same_graph_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_set_early_stop, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_set_early_stop_no_recompution_needed, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_two_children_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_two_children_early_stop_True, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_bad_inputs, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_can_only_trigger_recompute_once, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_flops_and_mem, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_function_with_more_than_one_output, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_function_with_non_tensor_output, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_output_already_has_autograd_meta, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_policy_with_state, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_storage_lifetime, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_subclass_dispatching_sizes, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_version_counter, test/test_autograd.py::TestAutogradComplex::test_view_func_for_complex_views, test/test_autograd.py::TestAutogradComplex::test_view_with_multi_output, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_cuda_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_cuda_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_vectorize_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_vectorize_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_match_vhp_hvp_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_match_vhp_hvp_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_vectorized_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_vectorized_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_multi_input_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_multi_input_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_simple_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_simple_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_unrelated_outputs_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_unrelated_outputs_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_raises_no_warnings_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_raises_no_warnings_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_vectorize_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_vectorize_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_match_vjp_jvp_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_match_vjp_jvp_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_vectorized_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_vectorized_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_vectorized_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_vectorized_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_devices_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_devices_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_dtype_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_dtype_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_multi_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_multi_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_simple_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_simple_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_unrelated_outputs_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_unrelated_outputs_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_zero_dim_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_zero_dim_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_raises_no_warnings_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_raises_no_warnings_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_scalar_logging_tensor, test/test_autograd.py::TestAutogradLogging::test_logging, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_advanced_indexing_backwards_large_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_advanced_indexing_backwards_memory_format_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_backward_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_complex_scalar_backward_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy__cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy_forward_ad_broadcasting_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy_forward_ad_same_layout_copies_grad_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy_r_to_c_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_cross_device_reentrant_autograd_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_free_unneeded_tensor_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_grad_assignment_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_gradcheck_input_output_different_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_multiple_output_view_of_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_backprop_base_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_backprop_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_backprop_view_of_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_gradcheck_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_makes_base_require_grad_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_modify_base_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_multi_output_safe_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_multi_output_unsafe_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_multiple_outputs_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_non_contig_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_of_multiple_output_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_of_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_python_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_then_no_grad_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_undefined_grad_output_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inputbuffer_add_multidevice_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_min_max_median_backprops_to_all_values_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_mv_grad_stride_0_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_non_differentiable_ops_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_parameter_resize_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_pin_memory_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_pow_real_negative_base_complex_exponent_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_profiler_emit_itt_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_profiler_emit_nvtx_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_pyscalar_conversions_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_reentrant_parent_error_on_cpu_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_requires_grad_factory_cpu_float32, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_requires_grad_factory_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_resize_version_bump_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_rnn_backward_to_input_but_not_parameters_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_scatter_index_reduce_amin_amax_backprops_to_all_values_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_scatter_index_reduce_prod_gradgrad_error_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_float32, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int16, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int32, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int8, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_simple_reentrant_cross_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_backward_cpu_complex128, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_backward_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_ctor_getter_backward_cpu_complex128, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_ctor_getter_backward_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_mask_autograd_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_strided_leaf_grad_layout_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_to_r_to_c_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_unused_output_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_warning_in_backward_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_where_functional_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_where_scalar_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_zero_dim_param_mixed_device_grad_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_autograd_composite_implicit_and_dispatch_registration_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_autograd_multiple_dispatch_registrations_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_backward_single_threaded_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_backward_tls_stash_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_foward_mode_AD_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_is_retain_graph_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_per_dispatch_key_input_saving_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_set_sequence_nr_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_view_copy_cpu 2025-08-14T23:46:25.1535931Z 2025-08-14T23:46:30.9173083Z Running test_functional_optim 1/1 ... [2025-08-14 23:46:30.916958] 2025-08-14T23:46:30.9173613Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:46:30.9180313Z 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-08-14 23:46:30.917537] 2025-08-14T23:46:36.1182214Z 2025-08-14T23:46:36.1184128Z torch_np/numpy_tests/core/test_scalarmath 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalarmath_1.1_3309e51549c2406f_.log 2025-08-14T23:46:36.1334624Z Running 186 items in this shard: test/torch_np/numpy_tests/core/test_scalarmath.py::TestTypes::test_leak, test/torch_np/numpy_tests/core/test_scalarmath.py::TestTypes::test_type_add, test/torch_np/numpy_tests/core/test_scalarmath.py::TestTypes::test_type_create, test/torch_np/numpy_tests/core/test_scalarmath.py::TestTypes::test_types, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBaseMath::test_blocked, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBaseMath::test_lower_align, test/torch_np/numpy_tests/core/test_scalarmath.py::TestPower::test_integers_to_negative_integer_power, test/torch_np/numpy_tests/core/test_scalarmath.py::TestPower::test_large_types, test/torch_np/numpy_tests/core/test_scalarmath.py::TestPower::test_mixed_types, test/torch_np/numpy_tests/core/test_scalarmath.py::TestPower::test_modular_power, test/torch_np/numpy_tests/core/test_scalarmath.py::TestPower::test_small_types, test/torch_np/numpy_tests/core/test_scalarmath.py::TestModulus::test_float_modulus_corner_cases_dt_d, test/torch_np/numpy_tests/core/test_scalarmath.py::TestModulus::test_float_modulus_corner_cases_dt_e, test/torch_np/numpy_tests/core/test_scalarmath.py::TestModulus::test_float_modulus_corner_cases_dt_f, test/torch_np/numpy_tests/core/test_scalarmath.py::TestModulus::test_float_modulus_exact, test/torch_np/numpy_tests/core/test_scalarmath.py::TestModulus::test_float_modulus_roundoff, test/torch_np/numpy_tests/core/test_scalarmath.py::TestModulus::test_modulus_basic, test/torch_np/numpy_tests/core/test_scalarmath.py::TestComplexDivision::test_branches, test/torch_np/numpy_tests/core/test_scalarmath.py::TestComplexDivision::test_signed_zeros, test/torch_np/numpy_tests/core/test_scalarmath.py::TestComplexDivision::test_zero_division, test/torch_np/numpy_tests/core/test_scalarmath.py::TestConversion::test_iinfo_long_values_1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestConversion::test_iinfo_long_values_2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestConversion::test_int_from_long, test/torch_np/numpy_tests/core/test_scalarmath.py::TestConversion::test_int_raise_behaviour, test/torch_np/numpy_tests/core/test_scalarmath.py::TestConversion::test_numpy_scalar_relational_operators, test/torch_np/numpy_tests/core/test_scalarmath.py::TestConversion::test_numpy_scalar_relational_operators_2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestConversion::test_scalar_comparison_to_none, test/torch_np/numpy_tests/core/test_scalarmath.py::TestRepr::test_float_repr, test/torch_np/numpy_tests/core/test_scalarmath.py::TestMultiply::test_no_seq_repeat_basic_array_like, test/torch_np/numpy_tests/core/test_scalarmath.py::TestMultiply::test_seq_repeat, test/torch_np/numpy_tests/core/test_scalarmath.py::TestNegative::test_exceptions, test/torch_np/numpy_tests/core/test_scalarmath.py::TestNegative::test_result, test/torch_np/numpy_tests/core/test_scalarmath.py::TestSubtract::test_exceptions, test/torch_np/numpy_tests/core/test_scalarmath.py::TestSubtract::test_result, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_builtin_abs_dtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_builtin_abs_dtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_builtin_abs_dtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_builtin_abs_dtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_builtin_abs_dtype4, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_numpy_abs_dtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_numpy_abs_dtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_numpy_abs_dtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_numpy_abs_dtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestAbs::test_numpy_abs_dtype4, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_B_op0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_B_op1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_b_op0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_b_op1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_h_op0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_h_op1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_i_op0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_i_op1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_l_op0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestBitShifts::test_shift_all_bits_type_code_l_op1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_complex_hashes_type_code_D, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_complex_hashes_type_code_F, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_float_and_complex_hashes_type_code_D, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_float_and_complex_hashes_type_code_F, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_float_and_complex_hashes_type_code_d, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_float_and_complex_hashes_type_code_e, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_float_and_complex_hashes_type_code_f, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_integer_hashes_type_code_B, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_integer_hashes_type_code_b, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_integer_hashes_type_code_h, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_integer_hashes_type_code_i, test/torch_np/numpy_tests/core/test_scalarmath.py::TestHash::test_integer_hashes_type_code_l, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_B_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_B_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_b_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_b_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_h_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_h_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_i_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_i_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_l_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_divbyzero_dtype_l_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_B_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_B_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_B_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_b_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_b_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_b_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_h_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_h_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_h_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_i_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_i_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_i_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_l_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_l_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_integer_operation_overflow_dtype_l_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_b_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_b_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_b_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_b_operation3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_h_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_h_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_h_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_h_operation3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_i_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_i_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_i_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_i_operation3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_l_operation0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_l_operation1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_l_operation2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_signed_integer_overflow_dtype_l_operation3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarOpsMisc::test_scalar_unsigned_integer_overflow_dtype_B, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____add_____rop_____radd___op8_cmp_False_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____add_____rop_____radd___op8_cmp_False_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____add_____rop_____radd___op8_cmp_False_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____add_____rop_____radd___op8_cmp_False_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____eq_____rop_____eq___op2_cmp_True_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____eq_____rop_____eq___op2_cmp_True_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____eq_____rop_____eq___op2_cmp_True_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____eq_____rop_____eq___op2_cmp_True_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____floordiv_____rop_____rfloordiv___op6_cmp_False_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____floordiv_____rop_____rfloordiv___op6_cmp_False_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____floordiv_____rop_____rfloordiv___op6_cmp_False_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____floordiv_____rop_____rfloordiv___op6_cmp_False_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ge_____rop_____le___op5_cmp_True_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ge_____rop_____le___op5_cmp_True_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ge_____rop_____le___op5_cmp_True_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ge_____rop_____le___op5_cmp_True_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____gt_____rop_____lt___op4_cmp_True_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____gt_____rop_____lt___op4_cmp_True_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____gt_____rop_____lt___op4_cmp_True_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____gt_____rop_____lt___op4_cmp_True_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____le_____rop_____ge___op1_cmp_True_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____le_____rop_____ge___op1_cmp_True_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____le_____rop_____ge___op1_cmp_True_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____le_____rop_____ge___op1_cmp_True_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____lt_____rop_____gt___op0_cmp_True_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____lt_____rop_____gt___op0_cmp_True_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____lt_____rop_____gt___op0_cmp_True_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____lt_____rop_____gt___op0_cmp_True_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mod_____rop_____rmod___op9_cmp_False_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mod_____rop_____rmod___op9_cmp_False_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mod_____rop_____rmod___op9_cmp_False_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mod_____rop_____rmod___op9_cmp_False_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mul_____rop_____rmul___op10_cmp_False_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mul_____rop_____rmul___op10_cmp_False_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mul_____rop_____rmul___op10_cmp_False_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____mul_____rop_____rmul___op10_cmp_False_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ne_____rop_____ne___op3_cmp_True_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ne_____rop_____ne___op3_cmp_True_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ne_____rop_____ne___op3_cmp_True_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____ne_____rop_____ne___op3_cmp_True_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____pow_____rop_____rpow___op11_cmp_False_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____pow_____rop_____rpow___op11_cmp_False_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____pow_____rop_____rpow___op11_cmp_False_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____pow_____rop_____rpow___op11_cmp_False_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____sub_____rop_____rsub___op12_cmp_False_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____sub_____rop_____rsub___op12_cmp_False_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____sub_____rop_____rsub___op12_cmp_False_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____sub_____rop_____rsub___op12_cmp_False_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____truediv_____rop_____rtruediv___op7_cmp_False_subtype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____truediv_____rop_____rtruediv___op7_cmp_False_subtype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____truediv_____rop_____rtruediv___op7_cmp_False_subtype2, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_pyscalar_subclasses___op_____truediv_____rop_____rtruediv___op7_cmp_False_subtype3, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____add_____rop_____radd___op8_cmp_False_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____add_____rop_____radd___op8_cmp_False_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____eq_____rop_____eq___op2_cmp_True_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____eq_____rop_____eq___op2_cmp_True_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____floordiv_____rop_____rfloordiv___op6_cmp_False_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____floordiv_____rop_____rfloordiv___op6_cmp_False_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____ge_____rop_____le___op5_cmp_True_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____ge_____rop_____le___op5_cmp_True_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____gt_____rop_____lt___op4_cmp_True_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____gt_____rop_____lt___op4_cmp_True_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____le_____rop_____ge___op1_cmp_True_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____le_____rop_____ge___op1_cmp_True_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____lt_____rop_____gt___op0_cmp_True_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____lt_____rop_____gt___op0_cmp_True_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____mod_____rop_____rmod___op9_cmp_False_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____mod_____rop_____rmod___op9_cmp_False_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____mul_____rop_____rmul___op10_cmp_False_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____mul_____rop_____rmul___op10_cmp_False_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____ne_____rop_____ne___op3_cmp_True_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____ne_____rop_____ne___op3_cmp_True_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____pow_____rop_____rpow___op11_cmp_False_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____pow_____rop_____rpow___op11_cmp_False_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____sub_____rop_____rsub___op12_cmp_False_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____sub_____rop_____rsub___op12_cmp_False_sctype1, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____truediv_____rop_____rtruediv___op7_cmp_False_sctype0, test/torch_np/numpy_tests/core/test_scalarmath.py::TestScalarSubclassingMisc::test_subclass_deferral___op_____truediv_____rop_____rtruediv___op7_cmp_False_sctype1 2025-08-14T23:46:36.1505813Z 2025-08-14T23:46:37.1416714Z 2025-08-14T23:46:37.1418082Z test_functional_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functional_optim_1.1_c9945ffd66c564ca_.log 2025-08-14T23:46:37.1422348Z 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-08-14T23:46:37.1425501Z 2025-08-14T23:46:41.5148388Z Running test_vulkan 1/1 ... [2025-08-14 23:46:41.511829] 2025-08-14T23:46:41.5149041Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:46:41.5157320Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_vulkan.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:46:41.514957] 2025-08-14T23:46:42.7328205Z Running functorch/test_vmap 1/2 ... [2025-08-14 23:46:42.723551] 2025-08-14T23:46:42.7328866Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:46:42.7337634Z 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-08-14 23:46:42.733271] 2025-08-14T23:46:47.1098376Z 2025-08-14T23:46:47.1099487Z test_vulkan 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_vulkan_1.1_41d8eaa3b263c6a8_.log 2025-08-14T23:46:47.1100420Z Running 1 items in this shard: test/test_vulkan.py::TestVulkanRewritePass::test_conv 2025-08-14T23:46:47.1100806Z 2025-08-14T23:47:44.8693830Z 2025-08-14T23:47:44.8695219Z test_linalg 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_linalg_1.1_d9f9851512b5b8db_.log 2025-08-14T23:47:44.9494721Z Running 1240 items in this shard: test/test_linalg.py::TestLinalgCPU::test_1_sized_with_0_strided_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_1_sized_with_0_strided_cpu_float64, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_1_k_128_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_1_k_128_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_1_k_64_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_1_k_64_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_32_k_128_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_32_k_128_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_32_k_64_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_matmul_4bit_m_32_k_64_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_256_n_128_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_256_n_32_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_256_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_256_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_64_n_128_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_64_n_32_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_64_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test__dyn_quant_pack_4bit_weight_k_64_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_32_k_32_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_32_k_32_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_32_k_64_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_32_k_64_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_64_k_32_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_64_k_32_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_64_k_64_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test__int4_mm_m_64_k_64_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_large_shape_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_48_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_48_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_48_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_48_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_64_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_64_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_64_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_32_n_64_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_48_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_48_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_48_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_48_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_64_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_64_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_64_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_32_k_64_n_64_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_48_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_48_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_48_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_48_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_64_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_64_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_64_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_32_n_64_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_48_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_48_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_48_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_48_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_64_compile_False_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_64_compile_False_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_64_compile_True_slice_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int8_mm_m_64_k_64_n_64_compile_True_slice_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_0_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_17_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_0_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_16_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_16_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_False_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_False_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_True_use_transpose_b_False_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_0_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_1_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_cpu_m_8_k_32_n_32_use_transpose_a_True_use_transpose_b_True_non_contig_type_2_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_errors_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_16_use_transpose_a_False_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_16_use_transpose_a_False_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_16_use_transpose_a_True_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_16_use_transpose_a_True_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_32_use_transpose_a_False_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_32_use_transpose_a_False_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_32_use_transpose_a_True_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_16_n_32_use_transpose_a_True_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_16_use_transpose_a_False_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_16_use_transpose_a_False_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_16_use_transpose_a_True_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_16_use_transpose_a_True_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_32_use_transpose_a_False_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_32_use_transpose_a_False_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_32_use_transpose_a_True_use_transpose_b_False_cpu, test/test_linalg.py::TestLinalgCPU::test__int_mm_k_32_n_32_use_transpose_a_True_use_transpose_b_True_cpu, test/test_linalg.py::TestLinalgCPU::test_addbmm_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addbmm_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_addbmm_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_addbmm_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addbmm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addbmm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addmm_baddbmm_overflow_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_addmm_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_addmm_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addmm_gelu_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_gelu_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_gelu_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_0_2_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_False_alpha_1_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_0_2_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_False_transpose_b_True_alpha_1_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_0_2_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_False_alpha_1_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_0_2_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_0_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_0_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_0_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_0_5_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_0_5_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_0_5_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_1_0_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_1_0_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmm_mv_transpose_a_True_transpose_b_True_alpha_1_0_beta_1_0_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_relu_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_relu_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_relu_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addmm_relu_tunableop_rocm_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmm_relu_tunableop_rocm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_relu_tunableop_rocm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addmm_sizes_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmm_sizes_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addmv_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addmv_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_addmv_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_addmv_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addmv_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmv_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addmv_rowmajor_colmajor_incx_incy_lda_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addmv_rowmajor_colmajor_incx_incy_lda_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addr_bool_cpu_bool, test/test_linalg.py::TestLinalgCPU::test_addr_float_and_complex_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_addr_float_and_complex_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_addr_float_and_complex_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_addr_float_and_complex_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_addr_float_and_complex_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_addr_float_and_complex_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_addr_integral_cpu_int16, test/test_linalg.py::TestLinalgCPU::test_addr_integral_cpu_int32, test/test_linalg.py::TestLinalgCPU::test_addr_integral_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_addr_integral_cpu_int8, test/test_linalg.py::TestLinalgCPU::test_addr_integral_cpu_uint8, test/test_linalg.py::TestLinalgCPU::test_addr_type_promotion_cpu, test/test_linalg.py::TestLinalgCPU::test_baddbmm_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_baddbmm_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_baddbmm_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_baddbmm_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_baddbmm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_baddbmm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_baddbmm_input_dtypes_compatibility_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_baddbmm_input_dtypes_compatibility_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_baddbmm_input_dtypes_compatibility_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_baddbmm_input_dtypes_compatibility_cpu_int16, test/test_linalg.py::TestLinalgCPU::test_baddbmm_input_dtypes_compatibility_cpu_int32, test/test_linalg.py::TestLinalgCPU::test_baddbmm_input_dtypes_compatibility_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_baddbmm_nan_input_with_zero_beta_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_int16, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_int32, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_int8, test/test_linalg.py::TestLinalgCPU::test_blas_alpha_beta_empty_cpu_uint8, test/test_linalg.py::TestLinalgCPU::test_blas_empty_cpu, test/test_linalg.py::TestLinalgCPU::test_blas_mv_large_input_cpu, test/test_linalg.py::TestLinalgCPU::test_blas_nan_out_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_blas_nan_out_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_blas_nan_out_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_blas_nan_out_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_blas_nan_out_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_blas_nan_out_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_blaslog_tunableop_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_bmm_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_bmm_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_bmm_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_bmm_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_bmm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_bmm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_bmm_tunableop_rocm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_broadcast_batched_matmul_cpu, test/test_linalg.py::TestLinalgCPU::test_broadcast_fused_matmul_cpu, test/test_linalg.py::TestLinalgCPU::test_call_count_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_chain_matmul_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_non_pd_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_non_pd_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_non_pd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_ex_non_pd_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_inverse_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_backward_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_broadcasting_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_broadcasting_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_broadcasting_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_broadcasting_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_many_batches_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_many_batches_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_many_batches_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_batched_many_batches_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_out_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_out_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_out_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cholesky_solve_out_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_ck_blas_library_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_1_k_128_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_1_k_128_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_1_k_64_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_1_k_64_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_32_k_128_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_32_k_128_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_32_k_64_n_11008_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_dyn_quant_matmul_4bit_m_32_k_64_n_4096_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_32_k_32_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_32_k_32_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_32_k_64_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_32_k_64_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_64_k_32_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_64_k_32_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_64_k_64_n_48_cpu, test/test_linalg.py::TestLinalgCPU::test_compile_int4_mm_m_64_k_64_n_64_cpu, test/test_linalg.py::TestLinalgCPU::test_cond_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cond_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cond_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cond_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_cond_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_cond_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cond_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cond_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_int16, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_int32, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_int8, test/test_linalg.py::TestLinalgCPU::test_corner_cases_of_cublasltmatmul_cpu_uint8, test/test_linalg.py::TestLinalgCPU::test_cross_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cross_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_cross_error_cpu, test/test_linalg.py::TestLinalgCPU::test_cross_with_and_without_dim_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_cross_with_and_without_dim_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_det_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_det_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_det_logdet_slogdet_batched_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_det_logdet_slogdet_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_disable_tuning_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_dot_invalid_args_cpu, test/test_linalg.py::TestLinalgCPU::test_dot_vs_numpy_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_dot_vs_numpy_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_dot_vs_numpy_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_dot_vs_numpy_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_dump_results_on_exit_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eig_check_magma_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eig_compare_backends_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eig_compare_backends_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eig_compare_backends_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eig_compare_backends_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eig_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eig_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eig_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eig_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eig_numpy_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eig_numpy_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eig_removed_error_cpu, test/test_linalg.py::TestLinalgCPU::test_eig_with_nan_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eig_with_nan_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eig_with_nan_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eig_with_nan_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigh_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigh_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigh_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigh_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigh_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigh_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigh_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigh_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigh_lower_uplo_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigh_lower_uplo_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigh_lower_uplo_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigh_lower_uplo_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigh_lwork_lapack_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigh_lwork_lapack_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigh_lwork_lapack_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigh_lwork_lapack_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigh_svd_illcondition_matrix_input_should_not_crash_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigh_svd_illcondition_matrix_input_should_not_crash_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigvals_compare_backends_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigvals_compare_backends_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigvals_compare_backends_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigvals_compare_backends_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigvals_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigvals_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigvals_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigvals_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigvals_numpy_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigvals_numpy_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_eigvalsh_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_einsum_corner_cases_cpu, test/test_linalg.py::TestLinalgCPU::test_einsum_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_einsum_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_einsum_error_cases_cpu, test/test_linalg.py::TestLinalgCPU::test_einsum_random_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_einsum_random_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_einsum_sublist_format_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_einsum_sublist_format_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_32_k_32_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_32_k_35_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_32_k_36_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_32_k_40_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_32_k_64_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_35_k_32_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_35_k_35_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_35_k_36_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_35_k_40_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_35_k_64_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_36_k_32_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_36_k_35_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_36_k_36_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_36_k_40_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_36_k_64_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_40_k_32_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_40_k_35_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_40_k_36_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_40_k_40_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_40_k_64_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_64_k_32_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_64_k_35_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_64_k_36_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_64_k_40_cpu, test/test_linalg.py::TestLinalgCPU::test_fp16_mv_transposed_first_argument_arm_cpu_m_64_k_64_cpu, test/test_linalg.py::TestLinalgCPU::test_gemm_bias_offline_tunableop_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_gemm_bias_tunableop_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_geqrf_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_geqrf_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_geqrf_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_geqrf_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_householder_product_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_householder_product_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_householder_product_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_householder_product_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_householder_product_errors_and_warnings_cpu, test/test_linalg.py::TestLinalgCPU::test_inner_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inner_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inv_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inv_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inv_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inv_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_inv_ex_info_device_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inv_ex_info_device_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inv_ex_info_device_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inv_ex_info_device_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_inv_ex_singular_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inv_ex_singular_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inv_ex_singular_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inv_ex_singular_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_invariance_error_spectral_decompositions_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inverse_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inverse_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inverse_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inverse_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_large_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_large_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_large_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inverse_errors_large_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_inverse_many_batches_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_inverse_many_batches_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_inverse_many_batches_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_inverse_many_batches_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_kron_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_kron_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_kron_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_kron_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_kron_empty_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_kron_empty_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_kron_empty_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_kron_empty_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_kron_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_kron_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_kron_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_kron_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lapack_empty_cpu, test/test_linalg.py::TestLinalgCPU::test_large_bmm_backward_cpu, test/test_linalg.py::TestLinalgCPU::test_large_bmm_mm_backward_cpu, test/test_linalg.py::TestLinalgCPU::test_ldl_factor_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_ldl_factor_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_ldl_factor_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_ldl_factor_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_ldl_solve_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_ldl_solve_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_ldl_solve_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_ldl_solve_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_cross_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_cross_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_cross_with_and_without_dim_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_cross_with_and_without_dim_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_batch_broadcasting_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_batch_broadcasting_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_batch_broadcasting_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_batch_broadcasting_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_input_checks_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_input_checks_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_input_checks_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_lstsq_input_checks_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_cpu_errors_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_cpu_errors_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_cpu_errors_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_cpu_errors_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_family_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_family_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_family_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_family_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_solve_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_solve_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_solve_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_lu_solve_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_analytic_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_analytic_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_analytic_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_analytic_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_batch_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_batch_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_boundary_cases_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_boundary_cases_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_boundary_cases_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_boundary_cases_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_compare_with_taylor_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_compare_with_taylor_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_compare_with_taylor_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_compare_with_taylor_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_no_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_perverse_nan_values_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_perverse_nan_values_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_perverse_nan_values_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_perverse_nan_values_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_utils_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_matrix_exp_utils_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_qr_autograd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_broadcasting_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_broadcasting_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_broadcasting_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_broadcasting_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_large_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_large_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_large_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_linalg_solve_triangular_large_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_linear_algebra_scalar_raises_cpu, test/test_linalg.py::TestLinalgCPU::test_lobpcg_basic_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lobpcg_ortho_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lobpcg_scipy_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lobpcg_torchscript_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lower_precision_accumulation_with_ref_path_cpu, test/test_linalg.py::TestLinalgCPU::test_lstsq_removed_error_cpu, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_broadcasting_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_broadcasting_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_broadcasting_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_broadcasting_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_many_batches_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_many_batches_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_many_batches_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_lu_solve_batched_many_batches_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_lu_solve_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_lu_solve_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_large_matrices_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_lu_solve_large_matrices_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_lu_solve_large_matrices_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_lu_solve_large_matrices_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_lu_unpack_check_input_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matmul_45724_cpu, test/test_linalg.py::TestLinalgCPU::test_matmul_check_entries_tunableop_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_matmul_mv_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_matmul_mv_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_matmul_mv_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matmul_offline_mgpu_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matmul_offline_tunableop_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_matmul_out_kernel_errors_with_autograd_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matmul_out_kernel_errors_with_autograd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_1d_Nd_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_1d_Nd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_1d_Nd_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_2d_Nd_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_2d_Nd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_2d_Nd_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_3d_Nd_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_3d_Nd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_3d_Nd_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_tunableop_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matmul_small_brute_force_tunableop_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_norm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matrix_norm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_power_negative_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_matrix_power_negative_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_power_non_negative_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_matrix_power_non_negative_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_atol_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_atol_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_atol_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_atol_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_atol_rtol_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_basic_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_basic_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_basic_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_basic_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_empty_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_empty_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_empty_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_empty_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_out_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_out_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_out_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_out_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_matrix_rank_removed_error_cpu, test/test_linalg.py::TestLinalgCPU::test_minimum_tuning_iteration_tunableop_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_mm_bmm_non_memory_dense_cpu, test/test_linalg.py::TestLinalgCPU::test_mm_conjtranspose_cpu, test/test_linalg.py::TestLinalgCPU::test_mm_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_mm_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_mm_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_mm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_mm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_mm_cpu_int32, test/test_linalg.py::TestLinalgCPU::test_mm_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_mm_empty_inputs_mixed_dtype_errors_cpu, test/test_linalg.py::TestLinalgCPU::test_mm_submatrix_offline_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_multi_dot_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_multi_dot_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_multi_dot_errors_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_bfloat16_and_half_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_norm_bfloat16_and_half_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_norm_complex_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_norm_complex_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_norm_complex_old_cpu, test/test_linalg.py::TestLinalgCPU::test_norm_complexhalf_cpu, test/test_linalg.py::TestLinalgCPU::test_norm_dtype_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_norm_dtype_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_norm_dtype_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_norm_dtype_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_norm_dtype_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_dtype_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_norm_errors_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_errors_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_norm_extreme_values_cpu, test/test_linalg.py::TestLinalgCPU::test_norm_fastpaths_cpu, test/test_linalg.py::TestLinalgCPU::test_norm_fro_2_equivalence_old_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_fused_type_promotion_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_norm_fused_type_promotion_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_norm_matrix_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_matrix_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_norm_matrix_degenerate_shapes_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_norm_matrix_degenerate_shapes_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_norm_matrix_degenerate_shapes_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_matrix_degenerate_shapes_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_norm_old_cpu, test/test_linalg.py::TestLinalgCPU::test_norm_old_nan_propagation_cpu, test/test_linalg.py::TestLinalgCPU::test_norm_vector_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_vector_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_norm_vector_degenerate_shapes_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_norm_vector_degenerate_shapes_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_norm_vector_degenerate_shapes_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_norm_vector_degenerate_shapes_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_nuclear_norm_axes_small_brute_force_old_cpu, test/test_linalg.py::TestLinalgCPU::test_nuclear_norm_exceptions_old_cpu, test/test_linalg.py::TestLinalgCPU::test_nuclear_norm_out_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_nuclear_norm_out_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_numeric_check_leak_tunableop_rocm_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_many_batches_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_upper_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_upper_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_upper_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_batched_upper_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_empty_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_empty_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_empty_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_old_cholesky_empty_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_ormqr_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_ormqr_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_ormqr_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_ormqr_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_ormqr_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_ormqr_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_ormqr_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_ormqr_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_bool, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_int16, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_int32, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_int64, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_int8, test/test_linalg.py::TestLinalgCPU::test_outer_cpu_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_ger_addr_legacy_tests_cpu, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bfloat16_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_bool_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex128_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_complex64_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float16_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float32_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_float64_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int16_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int32_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int64_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_int8_uint8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_bfloat16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_bool, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_complex128, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_complex64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_float16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_float32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_float64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_int16, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_int32, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_int64, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_int8, test/test_linalg.py::TestLinalgCPU::test_outer_type_promotion_cpu_uint8_uint8, test/test_linalg.py::TestLinalgCPU::test_pca_lowrank_cpu, test/test_linalg.py::TestLinalgCPU::test_permute_matmul_cpu, test/test_linalg.py::TestLinalgCPU::test_pinv_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_pinv_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_pinv_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_pinv_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_pinv_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_pinv_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_pinv_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_pinv_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_pinverse_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_pinverse_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_pinverse_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_pinverse_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_preferred_blas_library_cpu, test/test_linalg.py::TestLinalgCPU::test_preferred_linalg_library_cpu, test/test_linalg.py::TestLinalgCPU::test_qr_batched_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_qr_batched_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_qr_batched_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_qr_batched_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_qr_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_qr_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_qr_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_qr_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_qr_error_cases_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_qr_vs_numpy_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_qr_vs_numpy_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_qr_vs_numpy_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_qr_vs_numpy_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_renorm_cpu, test/test_linalg.py::TestLinalgCPU::test_renorm_ps_cpu, test/test_linalg.py::TestLinalgCPU::test_rotating_buffer_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_rowwise_scaled_gemm_numerics_tunableop_cpu_float8_e4m3fnuz, test/test_linalg.py::TestLinalgCPU::test_scaled_gemm_offline_tunableop_cpu_float8_e4m3fnuz, test/test_linalg.py::TestLinalgCPU::test_scaled_gemm_offline_tunableop_cpu_float8_e5m2fnuz, test/test_linalg.py::TestLinalgCPU::test_scaled_gemm_tunableop_cpu_float8_e4m3fnuz, test/test_linalg.py::TestLinalgCPU::test_scaled_gemm_tunableop_cpu_float8_e5m2fnuz, test/test_linalg.py::TestLinalgCPU::test_slogdet_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_slogdet_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_slogdet_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_slogdet_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_slogdet_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_slogdet_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_slogdet_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_slogdet_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_solve_batched_broadcasting_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_solve_batched_broadcasting_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_solve_batched_broadcasting_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_solve_batched_broadcasting_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_solve_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_solve_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_solve_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_solve_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_solve_removed_error_cpu, test/test_linalg.py::TestLinalgCPU::test_strided_mm_bmm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_strided_mm_bmm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_svd_lowrank_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_svd_lowrank_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_svd_memory_allocation_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_svd_memory_allocation_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_svd_memory_allocation_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_svd_memory_allocation_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_symeig_removed_error_cpu, test/test_linalg.py::TestLinalgCPU::test_tensordot_cpu, test/test_linalg.py::TestLinalgCPU::test_tensordot_out_kernel_errors_with_autograd_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_tensordot_out_kernel_errors_with_autograd_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tensorinv_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_tensorinv_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_tensorinv_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tensorinv_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_tensorinv_empty_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_tensorinv_empty_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_tensorinv_empty_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tensorinv_empty_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_tensorinv_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_tensorinv_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_tensorinv_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tensorinv_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_tensorinv_singular_input_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_tensorinv_singular_input_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_tensorinv_singular_input_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tensorinv_singular_input_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_empty_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_empty_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_empty_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_empty_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_tensorsolve_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tf32_offline_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_tf32_tunableop_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_broadcasting_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_broadcasting_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_broadcasting_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_broadcasting_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_many_batches_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_many_batches_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_many_batches_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_batched_many_batches_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_large_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_out_errors_and_warnings_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_out_errors_and_warnings_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_out_errors_and_warnings_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_triangular_solve_out_errors_and_warnings_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_validator_tunableop_rocm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_vdot_invalid_args_cpu, test/test_linalg.py::TestLinalgCPU::test_vdot_vs_numpy_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_vdot_vs_numpy_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_vector_norm_cpu_bfloat16, test/test_linalg.py::TestLinalgCPU::test_vector_norm_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_vector_norm_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_vector_norm_cpu_float16, test/test_linalg.py::TestLinalgCPU::test_vector_norm_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_vector_norm_cpu_float64, test/test_linalg.py::TestLinalgCPU::test_vector_norm_decom_unbacked_checks_cpu, test/test_linalg.py::TestLinalgCPU::test_vector_norm_dim_tuple_arg_cpu, test/test_linalg.py::TestLinalgCPU::test_vector_norm_extreme_values_cpu, test/test_linalg.py::TestLinalgCPU::test_vector_norm_reduce_over_1D_vector_cpu_complex128, test/test_linalg.py::TestLinalgCPU::test_vector_norm_reduce_over_1D_vector_cpu_complex64, test/test_linalg.py::TestLinalgCPU::test_vector_norm_reduce_over_1D_vector_cpu_float32, test/test_linalg.py::TestLinalgCPU::test_vector_norm_reduce_over_1D_vector_cpu_float64 2025-08-14T23:47:45.0239344Z 2025-08-14T23:51:52.7605115Z 2025-08-14T23:51:52.7606045Z functorch/test_vmap 1/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_1.2_4ca02acb5abba0ee_.log 2025-08-14T23:51:52.8059914Z 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-08-14T23:51:52.8492523Z 2025-08-14T23:51:53.6528223Z Running test batch 'tests to run' cost 6978.97 seconds 2025-08-14T23:51:53.6549857Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T23:51:53.6550431Z Uploading artifacts took 0.00 seconds 2025-08-14T23:51:53.6551050Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T23:51:53.6551603Z Uploading artifacts took 0.00 seconds 2025-08-14T23:51:53.6552056Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T23:51:53.6552609Z Uploading artifacts took 0.00 seconds 2025-08-14T23:51:53.6553074Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T23:51:53.6553553Z Uploading artifacts took 0.00 seconds 2025-08-14T23:51:53.6554005Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T23:51:53.6554516Z Uploading artifacts took 0.00 seconds 2025-08-14T23:51:54.3607937Z 2025-08-14T23:51:54.3608634Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if ERRORLEVEL 1 goto fail 2025-08-14T23:51:54.3609216Z 2025-08-14T23:51:54.3609762Z (base) C:\actions-runner\_work\pytorch\pytorch\test>popd 2025-08-14T23:51:54.3613738Z 2025-08-14T23:51:54.3614085Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-14T23:51:54.3635530Z + [[ 2 == 1 ]] 2025-08-14T23:51:54.3635946Z + [[ 2 == 2 ]] 2025-08-14T23:51:54.3636225Z + [[ 3 -gt 1 ]] 2025-08-14T23:51:54.3636736Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_backend.bat 2025-08-14T23:51:54.3776059Z 2025-08-14T23:51:54.3776887Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-14T23:51:54.3785265Z 2025-08-14T23:51:54.3787828Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-14T23:51:54.3790498Z 2025-08-14T23:51:54.3791033Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T23:51:54.3792453Z 2025-08-14T23:51:54.3793075Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-14T23:51:54.3803151Z 2025-08-14T23:51:54.3803860Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-08-14T23:51:54.3808185Z 2025-08-14T23:51:54.3808596Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-14T23:51:54.3811357Z 2025-08-14T23:51:54.3811613Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-14T23:51:54.3812726Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-14T23:51:54.3813702Z if errorlevel 1 exit /b 2025-08-14T23:51:54.3814010Z if not errorlevel 0 exit /b 2025-08-14T23:51:54.3814870Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-14T23:51:54.3815805Z if errorlevel 1 exit /b 2025-08-14T23:51:54.3816112Z if not errorlevel 0 exit /b 2025-08-14T23:51:54.3816379Z ) 2025-08-14T23:51:54.3816512Z 2025-08-14T23:51:54.3816944Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-14T23:51:55.0033828Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? qM_���������4���4�2k�����4>���������4���4���4���4��4^^���Ќk�����4(�k�����4''������zB�A�����zB�A 2025-08-14T23:51:55.0034843Z ����&A��_��� 2025-08-14T23:51:55.0035224Z j��`��4���_��� 2025-08-14T23:51:55.0035753Z j��4����(�_���j����@`���`�����4q����x�_��` 2025-08-14T23:51:55.0036613Z j��C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py��4�Rk�� ��4��ğ�����_��� 2025-08-14T23:51:55.0037366Z j��L��4 2025-08-14T23:51:55.0037654Z �`�_��p 2025-08-14T23:51:55.0038210Z j����П�(�_���j����j�����j���_��� j��`Qjv 2025-08-14T23:51:55.0038650Z ��36��_��� j��`Qjv 2025-08-14T23:51:55.0039023Z ��36��_��� j��`Qjv 2025-08-14T23:51:55.0039434Z ��36��36��36����_��� 2025-08-14T23:51:55.0039885Z j�����4O\JkiA? 2025-08-14T23:51:55.0040219Z 2025-08-14T23:51:55.0040450Z ix�_��` 2025-08-14T23:51:55.0041403Z j��C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py��_��� 2025-08-14T23:51:55.0042106Z j����4;$m��-+ 2025-08-14T23:51:55.0042418Z 2025-08-14T23:51:55.0042690Z } 2025-08-14T23:51:55.0043356Z �k���A]����k���Ak�������@]��� ]��0 sk�������0i�������ysB�A'����@ 2025-08-14T23:51:55.0043881Z ����&Q�t=0 2025-08-14T23:51:55.0044485Z '�������4B���4���4�����@��4=����������������@`���`���q�������4����@`���@7k�����4 2025-08-14T23:51:55.0045702Z ���K���j�����4@7k���1k����j���k��J4����k���k�����4���4���4�k��� sk���Rk�����4�pi��(��4��j���k���k��pk�����4�/����j��P��4���4�pi��pk����4�_��j����j��pk���pi��0�j���`�x�_��` 2025-08-14T23:51:55.0047263Z j��C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.pyP�i�p�i��3�_�� j���_���j����j���i�x�i���_�� j���_���j���j����i���i���_�� j���_���j��P�j����i���_�� j���_���j����j����_��� 2025-08-14T23:51:55.0048206Z j�����4O�A? 2025-08-14T23:51:55.0048584Z 2025-08-14T23:51:55.0048839Z �_��` 2025-08-14T23:51:55.0049866Z j��C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\�_��� 2025-08-14T23:51:55.0050725Z j��0��4BA?x�_��` 2025-08-14T23:51:55.0051220Z j��i�x��_�� j���_���j��� 2025-08-14T23:51:55.0051706Z j�����]���_�� j���_���j��0 2025-08-14T23:51:55.0052282Z j��i����4�_�� j��0�j���_���j�� 2025-08-14T23:51:55.0052883Z j����_�� j��i���_���j��� j��kB� 2025-08-14T23:51:55.1009610Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? ********************************************************************** 2025-08-14T23:51:55.1010421Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-08-14T23:51:55.1010822Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-14T23:51:55.1011148Z ********************************************************************** 2025-08-14T23:51:55.5118109Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-14T23:51:55.5150512Z 2025-08-14T23:51:55.5150941Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-14T23:51:55.5154378Z 2025-08-14T23:51:55.5154691Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-14T23:51:55.5157048Z 2025-08-14T23:51:55.5157455Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-14T23:51:55.5159737Z 2025-08-14T23:51:55.5160224Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T23:51:55.5162501Z 2025-08-14T23:51:55.5162705Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-14T23:51:55.5330064Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-14T23:51:55.5331218Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/35//idtoken/eb633651-a2d8-43a7-b851-b43ceeb8c5b6/6a0b7f8b-f2bc-5dc1-acb3-8beaedce5e17?api-version=2.0 2025-08-14T23:51:55.5332337Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-14T23:51:55.5332771Z ALLUSERSPROFILE=C:\ProgramData 2025-08-14T23:51:55.5333351Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T23:51:55.5333797Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-14T23:51:55.5334153Z AWS_DEFAULT_REGION=us-east-1 2025-08-14T23:51:55.5334417Z AWS_EXECUTION_ENV=EC2 2025-08-14T23:51:55.5334773Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-14T23:51:55.5335054Z CI=true 2025-08-14T23:51:55.5335304Z CommandPromptType=Native 2025-08-14T23:51:55.5335632Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-14T23:51:55.5335988Z COMPUTERNAME=EC2AMAZ-VK08H34 2025-08-14T23:51:55.5336290Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-14T23:51:55.5336686Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:51:55.5337124Z CONDA_DEFAULT_ENV=base 2025-08-14T23:51:55.5337389Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-14T23:51:55.5337860Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:51:55.5338230Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-14T23:51:55.5338498Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-14T23:51:55.5338775Z CONDA_PROMPT_MODIFIER=(base) 2025-08-14T23:51:55.5339146Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-14T23:51:55.5339596Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:51:55.5340004Z CONDA_SHLVL=1 2025-08-14T23:51:55.5340268Z CONTINUE_THROUGH_ERROR=True 2025-08-14T23:51:55.5340622Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T23:51:55.5341113Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-14T23:51:55.5341605Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-14T23:51:55.5342117Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T23:51:55.5342495Z CUDA_VERSION=cpu 2025-08-14T23:51:55.5342753Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-14T23:51:55.5343136Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-14T23:51:55.5343551Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-14T23:51:55.5344038Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-14T23:51:55.5344465Z DISTUTILS_USE_SDK=1 2025-08-14T23:51:55.5344729Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-14T23:51:55.5345041Z EC2LAUNCH_TELEMETRY=1 2025-08-14T23:51:55.5345435Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-14T23:51:55.5347637Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T23:51:55.5349790Z Framework40Version=v4.0 2025-08-14T23:51:55.5350074Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T23:51:55.5350481Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T23:51:55.5350824Z FrameworkVersion=v4.0.30319 2025-08-14T23:51:55.5351093Z FrameworkVersion64=v4.0.30319 2025-08-14T23:51:55.5351341Z GITHUB_ACTION=test 2025-08-14T23:51:55.5351559Z GITHUB_ACTIONS=true 2025-08-14T23:51:55.5351758Z GITHUB_ACTION_REF= 2025-08-14T23:51:55.5351975Z GITHUB_ACTION_REPOSITORY= 2025-08-14T23:51:55.5352216Z GITHUB_ACTOR=pytorchmergebot 2025-08-14T23:51:55.5352478Z GITHUB_ACTOR_ID=97764156 2025-08-14T23:51:55.5352734Z GITHUB_API_URL=https://api.github.com 2025-08-14T23:51:55.5353005Z GITHUB_BASE_REF= 2025-08-14T23:51:55.5353469Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:51:55.5354057Z GITHUB_EVENT_NAME=push 2025-08-14T23:51:55.5354429Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-14T23:51:55.5354893Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-14T23:51:55.5355223Z GITHUB_HEAD_REF= 2025-08-14T23:51:55.5355469Z GITHUB_JOB=test 2025-08-14T23:51:55.5355972Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:51:55.5356800Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:51:55.5357324Z GITHUB_REF=refs/heads/main 2025-08-14T23:51:55.5357570Z GITHUB_REF_NAME=main 2025-08-14T23:51:55.5357797Z GITHUB_REF_PROTECTED=true 2025-08-14T23:51:55.5358042Z GITHUB_REF_TYPE=branch 2025-08-14T23:51:55.5358280Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-14T23:51:55.5358577Z GITHUB_REPOSITORY_ID=65600975 2025-08-14T23:51:55.5358837Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-14T23:51:55.5359119Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-14T23:51:55.5359412Z GITHUB_RETENTION_DAYS=90 2025-08-14T23:51:55.5359698Z GITHUB_RUN_ATTEMPT=1 2025-08-14T23:51:55.5359923Z GITHUB_RUN_ID=16976255045 2025-08-14T23:51:55.5360146Z GITHUB_RUN_NUMBER=140204 2025-08-14T23:51:55.5360408Z GITHUB_SERVER_URL=https://github.com 2025-08-14T23:51:55.5360775Z GITHUB_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:51:55.5361368Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:51:55.5362179Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:51:55.5362788Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-14T23:51:55.5363085Z GITHUB_WORKFLOW=trunk 2025-08-14T23:51:55.5363459Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-14T23:51:55.5363972Z GITHUB_WORKFLOW_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:51:55.5364393Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:51:55.5364745Z GIT_DEFAULT_BRANCH=main 2025-08-14T23:51:55.5364977Z HOME=C:\Users\runneruser 2025-08-14T23:51:55.5366944Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T23:51:55.5369201Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T23:51:55.5369729Z INSTALL_WINDOWS_SDK=1 2025-08-14T23:51:55.5370027Z JOB_ID=48128743924 2025-08-14T23:51:55.5370402Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T23:51:55.5371619Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-14T23:51:55.5373904Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-14T23:51:55.5375375Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-14T23:51:55.5375766Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-14T23:51:55.5376185Z NO_TD=False 2025-08-14T23:51:55.5376371Z NO_TEST_TIMEOUT=False 2025-08-14T23:51:55.5376602Z NUMBER_OF_PROCESSORS=16 2025-08-14T23:51:55.5376825Z NUM_TEST_SHARDS=3 2025-08-14T23:51:55.5377037Z OLDPWD=C:/16976255045/build-results 2025-08-14T23:51:55.5377333Z OS=Windows_NT 2025-08-14T23:51:55.5384123Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T23:51:55.5391126Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-14T23:51:55.5391478Z Platform=x64 2025-08-14T23:51:55.5391684Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-14T23:51:55.5392065Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-14T23:51:55.5392460Z PROCESSOR_LEVEL=6 2025-08-14T23:51:55.5392675Z PROCESSOR_REVISION=5507 2025-08-14T23:51:55.5392901Z PROGRAMFILES=C:\Program Files 2025-08-14T23:51:55.5393198Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-14T23:51:55.5393578Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:51:55.5393894Z PROMPT=(base) $P$G 2025-08-14T23:51:55.5394327Z PR_NUMBER= 2025-08-14T23:51:55.5394825Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-14T23:51:55.5395425Z PUBLIC=C:\Users\Public 2025-08-14T23:51:55.5395799Z *** 2025-08-14T23:51:55.5396176Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T23:51:55.5396632Z PYTHON_VERSION=3.9 2025-08-14T23:51:55.5396940Z PYTORCH_FINAL_PACKAGE_DIR=C:/16976255045/build-results/ 2025-08-14T23:51:55.5397401Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\16976255045\build-results\ 2025-08-14T23:51:55.5397775Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-14T23:51:55.5398207Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-14T23:51:55.5398505Z ProgramData=C:\ProgramData 2025-08-14T23:51:55.5398818Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-14T23:51:55.5399136Z ProgramW6432=C:\Program Files 2025-08-14T23:51:55.5399451Z REENABLED_ISSUES= 2025-08-14T23:51:55.5399688Z RUNNER_ARCH=X64 2025-08-14T23:51:55.5399949Z RUNNER_ENVIRONMENT=self-hosted 2025-08-14T23:51:55.5400251Z RUNNER_NAME=i-0bbe1d599543d2365 2025-08-14T23:51:55.5400520Z RUNNER_OS=Windows 2025-08-14T23:51:55.5400803Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-14T23:51:55.5401235Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-14T23:51:55.5401693Z RUNNER_TRACKING_ID=github_60dc4745-ed86-47dd-9fa1-e17bfa10775b 2025-08-14T23:51:55.5402124Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-14T23:51:55.5402729Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T23:51:55.5403250Z SHA1=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:51:55.5403591Z SHARD_NUMBER=2 2025-08-14T23:51:55.5403828Z SHLVL=2 2025-08-14T23:51:55.5404202Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-14T23:51:55.5404594Z SYSTEMDRIVE=C: 2025-08-14T23:51:55.5404821Z SYSTEMROOT=C:\Windows 2025-08-14T23:51:55.5405115Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:51:55.5405419Z TERM=xterm-256color 2025-08-14T23:51:55.5405672Z TEST_CONFIG=default 2025-08-14T23:51:55.5405962Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-14T23:51:55.5406406Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-14T23:51:55.5406761Z TEST_SHOWLOCALS=False 2025-08-14T23:51:55.5407111Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:51:55.5407477Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:51:55.5407883Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T23:51:55.5408422Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-14T23:51:55.5408815Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-14T23:51:55.5409101Z TORCH_SERIALIZATION_DEBUG=1 2025-08-14T23:51:55.5409369Z UCRTVersion=10.0.19041.0 2025-08-14T23:51:55.5409738Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T23:51:55.5410129Z UPDATEFILE=update.finished 2025-08-14T23:51:55.5410438Z USERDOMAIN=EC2AMAZ-VK08H34 2025-08-14T23:51:55.5410727Z USERNAME=runneruser 2025-08-14T23:51:55.5411040Z USERPROFILE=C:\Users\runneruser 2025-08-14T23:51:55.5411341Z USE_CUDA=0 2025-08-14T23:51:55.5411769Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-14T23:51:55.5412456Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-14T23:51:55.5413167Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-08-14T23:51:55.5413989Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-08-14T23:51:55.5414568Z VCToolsVersion=14.38.33130 2025-08-14T23:51:55.5414842Z VC_PRODUCT=BuildTools 2025-08-14T23:51:55.5415108Z VC_VERSION= 2025-08-14T23:51:55.5415316Z VC_YEAR=2022 2025-08-14T23:51:55.5415578Z VERBOSE_ARG='SilentlyContinue' 2025-08-14T23:51:55.5415856Z VERBOSE_TEST_LOGS=False 2025-08-14T23:51:55.5416137Z VisualStudioVersion=17.0 2025-08-14T23:51:55.5416591Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-14T23:51:55.5417111Z VSCMD_ARG_app_plat=Desktop 2025-08-14T23:51:55.5417373Z VSCMD_ARG_HOST_ARCH=x64 2025-08-14T23:51:55.5417639Z VSCMD_ARG_TGT_ARCH=x64 2025-08-14T23:51:55.5417911Z VSCMD_VER=17.8.22 2025-08-14T23:51:55.5418280Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-14T23:51:55.5418735Z VS_VERSION=17.4.1 2025-08-14T23:51:55.5418961Z WINDIR=C:\Windows 2025-08-14T23:51:55.5419572Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-14T23:51:55.5420316Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-14T23:51:55.5420909Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T23:51:55.5421289Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-14T23:51:55.5421763Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-14T23:51:55.5422244Z WindowsSDKVersion=10.0.19041.0\ 2025-08-14T23:51:55.5422766Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-14T23:51:55.5423645Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-14T23:51:55.5424787Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_backend.bat 2025-08-14T23:51:55.5425352Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-14T23:51:55.5425640Z __DOTNET_ADD_64BIT=1 2025-08-14T23:51:55.5425918Z __DOTNET_PREFERRED_BITNESS=64 2025-08-14T23:51:55.5429194Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-14T23:51:55.5432327Z 2025-08-14T23:51:55.5432762Z (base) C:\actions-runner\_work\pytorch\pytorch>git submodule update --init --recursive third_party/pybind11 2025-08-14T23:51:55.9172779Z 2025-08-14T23:51:55.9173380Z (base) C:\actions-runner\_work\pytorch\pytorch>cd test\custom_backend 2025-08-14T23:51:55.9177493Z 2025-08-14T23:51:55.9178120Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>mkdir build 2025-08-14T23:51:55.9180821Z 2025-08-14T23:51:55.9181194Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>pushd build 2025-08-14T23:51:55.9185695Z 2025-08-14T23:51:55.9186242Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>echo "Executing CMake for custom_backend test..." 2025-08-14T23:51:55.9186934Z "Executing CMake for custom_backend test..." 2025-08-14T23:51:55.9188163Z 2025-08-14T23:51:55.9189050Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>cmake -DCMAKE_PREFIX_PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch -DCMAKE_BUILD_TYPE=Release -GNinja .. 2025-08-14T23:51:56.8142249Z -- The C compiler identification is MSVC 19.38.33145.0 2025-08-14T23:51:56.9891471Z -- The CXX compiler identification is MSVC 19.38.33145.0 2025-08-14T23:51:57.0289689Z -- Detecting C compiler ABI info 2025-08-14T23:51:57.7988088Z -- Detecting C compiler ABI info - done 2025-08-14T23:51:57.8009636Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-08-14T23:51:57.8028969Z -- Detecting C compile features 2025-08-14T23:51:57.8045927Z -- Detecting C compile features - done 2025-08-14T23:51:57.8147601Z -- Detecting CXX compiler ABI info 2025-08-14T23:51:58.1984397Z -- Detecting CXX compiler ABI info - done 2025-08-14T23:51:58.2006420Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-08-14T23:51:58.2010176Z -- Detecting CXX compile features 2025-08-14T23:51:58.2017338Z -- Detecting CXX compile features - done 2025-08-14T23:51:58.4879437Z -- Found Torch: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch/lib/torch.lib 2025-08-14T23:51:58.4881886Z -- Configuring done 2025-08-14T23:51:58.5020340Z -- Generating done 2025-08-14T23:51:58.5148098Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/test/custom_backend/build 2025-08-14T23:51:58.5201728Z 2025-08-14T23:51:58.5202426Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:51:58.5203077Z 2025-08-14T23:51:58.5203562Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>echo "Executing Ninja for custom_backend test..." 2025-08-14T23:51:58.5204213Z "Executing Ninja for custom_backend test..." 2025-08-14T23:51:58.5204924Z 2025-08-14T23:51:58.5205365Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>ninja -v 2025-08-14T23:52:04.3912712Z [1/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -Dcustom_backend_EXPORTS -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\custom_backend.dir\custom_backend.cpp.obj /FdCMakeFiles\custom_backend.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.cpp 2025-08-14T23:52:04.3915655Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.cpp(12): warning C4273: 'torch::custom_backend::getBackendName': inconsistent dll linkage 2025-08-14T23:52:04.3916952Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.h(89): note: see previous definition of 'getBackendName' 2025-08-14T23:52:04.3918150Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-14T23:52:04.3919469Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:04.3920945Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-14T23:52:04.3921965Z with 2025-08-14T23:52:04.3922187Z [ 2025-08-14T23:52:04.3922400Z I=unsigned __int64, 2025-08-14T23:52:04.3922699Z _Ty2=unsigned __int64 2025-08-14T23:52:04.3922966Z ] 2025-08-14T23:52:04.3923855Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-14T23:52:04.5310153Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-14T23:52:04.5311441Z with 2025-08-14T23:52:04.5311674Z [ 2025-08-14T23:52:04.5311890Z _Ty=int32_t 2025-08-14T23:52:04.5312149Z ] 2025-08-14T23:52:04.5313331Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.cpp(17): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-14T23:52:04.5314496Z with 2025-08-14T23:52:04.5314725Z [ 2025-08-14T23:52:04.5314931Z _Ty=int32_t 2025-08-14T23:52:04.5315180Z ] 2025-08-14T23:52:04.5319201Z [2/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_dll --intdir=CMakeFiles\custom_backend.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\link.exe /nologo CMakeFiles\custom_backend.dir\custom_backend.cpp.obj /out:custom_backend.dll /implib:custom_backend.lib /pdb:custom_backend.pdb /dll /version:0.0 /machine:x64 /INCREMENTAL:NO -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-14T23:52:09.4511665Z [3/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\test_custom_backend.dir\test_custom_backend.cpp.obj /FdCMakeFiles\test_custom_backend.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\test_custom_backend.cpp 2025-08-14T23:52:09.4514716Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-14T23:52:09.4516002Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:09.4517502Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-14T23:52:09.4518520Z with 2025-08-14T23:52:09.4518724Z [ 2025-08-14T23:52:09.4518916Z I=size_t, 2025-08-14T23:52:09.4519121Z _Ty2=size_t 2025-08-14T23:52:09.4519343Z ] 2025-08-14T23:52:09.4520172Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-14T23:52:09.4522011Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-14T23:52:09.4523240Z with 2025-08-14T23:52:09.4523483Z [ 2025-08-14T23:52:09.4523724Z _Ty=int32_t 2025-08-14T23:52:09.4523927Z ] 2025-08-14T23:52:09.4525045Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\test_custom_backend.cpp(40): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-14T23:52:09.4526199Z with 2025-08-14T23:52:09.4526384Z [ 2025-08-14T23:52:09.4526565Z _Ty=int32_t 2025-08-14T23:52:09.4526754Z ] 2025-08-14T23:52:09.4527524Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data 2025-08-14T23:52:09.4528830Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:09.4531035Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(236): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(const unsigned __int64 &)' being compiled 2025-08-14T23:52:09.4532192Z with 2025-08-14T23:52:09.4532370Z [ 2025-08-14T23:52:09.4532571Z _Ty=std::_Vbase 2025-08-14T23:52:09.4532787Z ] 2025-08-14T23:52:09.4533835Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-14T23:52:09.4534953Z with 2025-08-14T23:52:09.4535131Z [ 2025-08-14T23:52:09.4535329Z _Ty=std::_Vbase 2025-08-14T23:52:09.4535553Z ] 2025-08-14T23:52:09.4536662Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-14T23:52:09.4537864Z with 2025-08-14T23:52:09.4538108Z [ 2025-08-14T23:52:09.4538293Z _Ty=std::_Vbase 2025-08-14T23:52:09.4538526Z ] 2025-08-14T23:52:09.4539525Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-14T23:52:09.4540576Z with 2025-08-14T23:52:09.4540768Z [ 2025-08-14T23:52:09.4540943Z _Ty=size_t 2025-08-14T23:52:09.4541155Z ] 2025-08-14T23:52:09.4541892Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'initializing': conversion from 'size_t' to '_Objty', possible loss of data 2025-08-14T23:52:09.4542719Z with 2025-08-14T23:52:09.4542909Z [ 2025-08-14T23:52:09.4543096Z _Objty=unsigned int 2025-08-14T23:52:09.4543341Z ] 2025-08-14T23:52:09.4543994Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:09.4545694Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(783): note: see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-14T23:52:09.4546880Z with 2025-08-14T23:52:09.4547058Z [ 2025-08-14T23:52:09.4547251Z _Ty=size_t 2025-08-14T23:52:09.4547449Z ] 2025-08-14T23:52:09.4548592Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(834): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-14T23:52:09.4549879Z with 2025-08-14T23:52:09.4550079Z [ 2025-08-14T23:52:09.4550294Z _Alloc=std::allocator, 2025-08-14T23:52:09.4550594Z _Ty=unsigned int, 2025-08-14T23:52:09.4550851Z _Objty=unsigned int 2025-08-14T23:52:09.4551081Z ] 2025-08-14T23:52:09.4551823Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-14T23:52:09.4553104Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:09.4554783Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(681): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(size_t &)' being compiled 2025-08-14T23:52:09.4555845Z with 2025-08-14T23:52:09.4556021Z [ 2025-08-14T23:52:09.4556217Z _Ty=int32_t 2025-08-14T23:52:09.4556416Z ] 2025-08-14T23:52:09.4557427Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-14T23:52:09.4558506Z with 2025-08-14T23:52:09.4558684Z [ 2025-08-14T23:52:09.4558875Z _Ty=int32_t 2025-08-14T23:52:09.4559075Z ] 2025-08-14T23:52:09.4560244Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-14T23:52:09.4561371Z with 2025-08-14T23:52:09.4561544Z [ 2025-08-14T23:52:09.4561737Z _Ty=int32_t 2025-08-14T23:52:09.4561941Z ] 2025-08-14T23:52:09.4562845Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-14T23:52:09.4563796Z with 2025-08-14T23:52:09.4563984Z [ 2025-08-14T23:52:09.4564156Z _Ty=size_t 2025-08-14T23:52:09.4564373Z ] 2025-08-14T23:52:09.4565122Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'initializing': conversion from 'size_t' to '_Objty', possible loss of data 2025-08-14T23:52:09.4565927Z with 2025-08-14T23:52:09.4566114Z [ 2025-08-14T23:52:09.4566292Z _Objty=int 2025-08-14T23:52:09.4566505Z ] 2025-08-14T23:52:09.4567150Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:09.4568684Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(783): note: see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-14T23:52:09.4569727Z with 2025-08-14T23:52:09.4569907Z [ 2025-08-14T23:52:09.4570094Z _Ty=size_t 2025-08-14T23:52:09.4570295Z ] 2025-08-14T23:52:09.4571394Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(834): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-14T23:52:09.4572549Z with 2025-08-14T23:52:09.4572727Z [ 2025-08-14T23:52:09.4572935Z _Alloc=std::allocator, 2025-08-14T23:52:09.4573202Z _Ty=int, 2025-08-14T23:52:09.4573416Z _Objty=int 2025-08-14T23:52:09.4573615Z ] 2025-08-14T23:52:09.4574344Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data 2025-08-14T23:52:09.4575135Z with 2025-08-14T23:52:09.4575374Z [ 2025-08-14T23:52:09.4575542Z _Ty1=int 2025-08-14T23:52:09.4575753Z ] 2025-08-14T23:52:09.4576458Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:09.4578039Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(658): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(size_t &,int &)' being compiled 2025-08-14T23:52:09.4579121Z with 2025-08-14T23:52:09.4579293Z [ 2025-08-14T23:52:09.4579497Z _Ty=std::pair 2025-08-14T23:52:09.4579757Z ] 2025-08-14T23:52:09.4580787Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-14T23:52:09.4582216Z with 2025-08-14T23:52:09.4582394Z [ 2025-08-14T23:52:09.4582603Z _Ty=std::pair 2025-08-14T23:52:09.4582847Z ] 2025-08-14T23:52:09.4584000Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-14T23:52:09.4585165Z with 2025-08-14T23:52:09.4585338Z [ 2025-08-14T23:52:09.4585550Z _Ty=std::pair 2025-08-14T23:52:09.4585799Z ] 2025-08-14T23:52:09.4586819Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-14T23:52:09.4587897Z with 2025-08-14T23:52:09.4588076Z [ 2025-08-14T23:52:09.4588267Z _Ty=size_t 2025-08-14T23:52:09.4588469Z ] 2025-08-14T23:52:09.4589468Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: see reference to function template instantiation 'std::pair::pair<_Ty&,int&,0>(_Other1,_Other2) noexcept' being compiled 2025-08-14T23:52:09.6128009Z with 2025-08-14T23:52:09.6128267Z [ 2025-08-14T23:52:09.6128506Z _Ty=size_t, 2025-08-14T23:52:09.6128740Z _Other1=size_t &, 2025-08-14T23:52:09.6129011Z _Other2=int & 2025-08-14T23:52:09.6129227Z ] 2025-08-14T23:52:09.6129985Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data 2025-08-14T23:52:09.6130826Z with 2025-08-14T23:52:09.6131027Z [ 2025-08-14T23:52:09.6131198Z _Ty2=int 2025-08-14T23:52:09.6131405Z ] 2025-08-14T23:52:09.6135627Z [4/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_exe --intdir=CMakeFiles\test_custom_backend.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\link.exe /nologo CMakeFiles\test_custom_backend.dir\test_custom_backend.cpp.obj /out:test_custom_backend.exe /implib:test_custom_backend.lib /pdb:test_custom_backend.pdb /version:0.0 /machine:x64 /INCREMENTAL:NO /subsystem:console -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 custom_backend.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-14T23:52:09.6146282Z 2025-08-14T23:52:09.6146677Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:09.6147683Z 2025-08-14T23:52:09.6148416Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>echo "Ninja succeeded for custom_backend test." 2025-08-14T23:52:09.6149048Z "Ninja succeeded for custom_backend test." 2025-08-14T23:52:09.6149487Z 2025-08-14T23:52:09.6149744Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>popd 2025-08-14T23:52:09.6154191Z 2025-08-14T23:52:09.6154707Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>python test_custom_backend.py -v 2025-08-14T23:52:13.0113124Z 2025-08-14T23:52:13.0113592Z Running tests... 2025-08-14T23:52:13.0113977Z ---------------------------------------------------------------------- 2025-08-14T23:52:13.0114667Z Test results will be stored in test-reports\python-unittest\test_custom_backend 2025-08-14T23:52:13.0120361Z test_execute (__main__.TestCustomBackend) 2025-08-14T23:52:13.0857032Z Test execution using the custom backend. ... ok (0.078s) 2025-08-14T23:52:13.0864116Z test_save_load (__main__.TestCustomBackend) 2025-08-14T23:52:13.1137383Z Test that a lowered module can be executed correctly ... ok (0.031s) 2025-08-14T23:52:13.1138004Z 2025-08-14T23:52:13.1138338Z ---------------------------------------------------------------------- 2025-08-14T23:52:13.1138748Z Ran 2 tests in 0.109s 2025-08-14T23:52:13.1138928Z 2025-08-14T23:52:13.1139027Z OK 2025-08-14T23:52:13.1139138Z 2025-08-14T23:52:13.1139262Z Generating XML reports... 2025-08-14T23:52:13.1177443Z Generated XML report: test-reports\python-unittest\test_custom_backend\TEST-TestCustomBackend-20250814235213.xml 2025-08-14T23:52:13.6476327Z 2025-08-14T23:52:13.6477170Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:13.6477638Z 2025-08-14T23:52:13.6478399Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>python backend.py --export-module-to="build/model.pt" 2025-08-14T23:52:15.5897989Z 2025-08-14T23:52:15.5898579Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:15.5899163Z 2025-08-14T23:52:15.5899467Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>cd build 2025-08-14T23:52:15.5904299Z 2025-08-14T23:52:15.5911871Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T23:52:15.5919232Z 2025-08-14T23:52:15.5919580Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>test_custom_backend.exe model.pt 2025-08-14T23:52:16.0471043Z Testing custom_backend 2025-08-14T23:52:16.0471331Z OK 2025-08-14T23:52:16.0526746Z 2025-08-14T23:52:16.0527283Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:16.0547924Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_script_ops.bat 2025-08-14T23:52:16.0681545Z 2025-08-14T23:52:16.0682454Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-14T23:52:16.0691147Z 2025-08-14T23:52:16.0693600Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-14T23:52:16.0696056Z 2025-08-14T23:52:16.0696581Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T23:52:16.0697395Z 2025-08-14T23:52:16.0698100Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-14T23:52:16.0708220Z 2025-08-14T23:52:16.0708889Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-08-14T23:52:16.0713130Z 2025-08-14T23:52:16.0713564Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-14T23:52:16.0716170Z 2025-08-14T23:52:16.0716642Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-14T23:52:16.0717742Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-14T23:52:16.0718755Z if errorlevel 1 exit /b 2025-08-14T23:52:16.0719020Z if not errorlevel 0 exit /b 2025-08-14T23:52:16.0719845Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-14T23:52:16.0720694Z if errorlevel 1 exit /b 2025-08-14T23:52:16.0720952Z if not errorlevel 0 exit /b 2025-08-14T23:52:16.0721224Z ) 2025-08-14T23:52:16.0721330Z 2025-08-14T23:52:16.0721689Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-14T23:52:16.6904972Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? qM_��԰��7��D~P��D~�,�-��D~>�����~��D~P��D~�D~�D~��D~^^����r�-�P��D~�o�-��D~''�����J$>�V�����$>�V 2025-08-14T23:52:16.6906839Z ����&V��_����-���D~���_����-�4����(�_��@�-���@`�-�`�-��D~q����x�_����-�C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.pyh�D~~p~�-���D~��ğ�����_����-���D~ 2025-08-14T23:52:16.6907760Z �`�_����-���П�(�_��@�-���-����-��_����-���vv 2025-08-14T23:52:16.6908253Z ��4��_����-���vv 2025-08-14T23:52:16.6908689Z ��4��_����-���vv 2025-08-14T23:52:16.6909238Z ��4��4��4����_����-��D~O\JkiA? 2025-08-14T23:52:16.6909600Z 2025-08-14T23:52:16.6910791Z ix�_����-�C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py��_����-�p�D~;�-+ 2025-08-14T23:52:16.6911467Z 2025-08-14T23:52:16.6912181Z � �-��-�0`J�-�N�����-�)%�R�-���-���-�V�-�`J�-��������-�� �-�0�X�-������0�-�������*>�V'����@ 2025-08-14T23:52:16.6914877Z ����&~G/��T^'����P��D~B0�D~ �D~�������D~=��������������-�@`�-�`�-�~q����0�D~��-�@`�-��-�-� �D~U�y7|�P�-�P��D~�-�-�`,�-�P�-��m�-�J4����m�-��m�-� �D~ �D~ �D~���-���X�-�p~�-�8��D~�Ӷ-����D~P�-����-����-��ڶ-�P��D~�/�����-���D~P��D~�Ӷ-��ڶ-��D~�_���-�P�-��ڶ-��Ӷ-�Н�-��`�x�_����-�C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.pyP��-p��-�3�_��`�-��_��@�-�й�-���-x��-��_��`�-��_��@�-����-����-h��-��_��`�-��_��@�-�0��-�p��-��_��`�-��_��@�-����-���_����-�0�D~O�A? 2025-08-14T23:52:16.6916561Z 2025-08-14T23:52:16.6918168Z �_����-�C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\�_����-����D~BA?x�_����-��-,��_��`�-��_��@�-���-�����-��_��`�-��_��@�-���-��-Y�D~�_��`�-�Н�-��_��@�-� �-��~�_��`�-��-��_��@�-���-��2>� 2025-08-14T23:52:16.7893434Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? ********************************************************************** 2025-08-14T23:52:16.7894221Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-08-14T23:52:16.7894626Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-14T23:52:16.7894982Z ********************************************************************** 2025-08-14T23:52:17.1995448Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-14T23:52:17.2029082Z 2025-08-14T23:52:17.2029632Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-14T23:52:17.2033174Z 2025-08-14T23:52:17.2033441Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-14T23:52:17.2036039Z 2025-08-14T23:52:17.2036368Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-14T23:52:17.2038692Z 2025-08-14T23:52:17.2039148Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T23:52:17.2041454Z 2025-08-14T23:52:17.2041626Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-14T23:52:17.2206844Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-14T23:52:17.2207923Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/35//idtoken/eb633651-a2d8-43a7-b851-b43ceeb8c5b6/6a0b7f8b-f2bc-5dc1-acb3-8beaedce5e17?api-version=2.0 2025-08-14T23:52:17.2209058Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-14T23:52:17.2209474Z ALLUSERSPROFILE=C:\ProgramData 2025-08-14T23:52:17.2209899Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T23:52:17.2210350Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-14T23:52:17.2210691Z AWS_DEFAULT_REGION=us-east-1 2025-08-14T23:52:17.2210954Z AWS_EXECUTION_ENV=EC2 2025-08-14T23:52:17.2211240Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-14T23:52:17.2211516Z CI=true 2025-08-14T23:52:17.2211742Z CommandPromptType=Native 2025-08-14T23:52:17.2212048Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-14T23:52:17.2212436Z COMPUTERNAME=EC2AMAZ-VK08H34 2025-08-14T23:52:17.2212721Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-14T23:52:17.2213110Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:17.2213533Z CONDA_DEFAULT_ENV=base 2025-08-14T23:52:17.2213819Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-14T23:52:17.2214412Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:17.2214804Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-14T23:52:17.2215095Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-14T23:52:17.2215445Z CONDA_PROMPT_MODIFIER=(base) 2025-08-14T23:52:17.2215770Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-14T23:52:17.2216281Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:17.2216689Z CONDA_SHLVL=1 2025-08-14T23:52:17.2216929Z CONTINUE_THROUGH_ERROR=True 2025-08-14T23:52:17.2217272Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T23:52:17.2217791Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-14T23:52:17.2218377Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-14T23:52:17.2218951Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T23:52:17.2219336Z CUDA_VERSION=cpu 2025-08-14T23:52:17.2219623Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-14T23:52:17.2220117Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-14T23:52:17.2220532Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-14T23:52:17.2221022Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-14T23:52:17.2221533Z DISTUTILS_USE_SDK=1 2025-08-14T23:52:17.2221839Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-14T23:52:17.2222167Z EC2LAUNCH_TELEMETRY=1 2025-08-14T23:52:17.2222582Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-14T23:52:17.2224833Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T23:52:17.2226890Z Framework40Version=v4.0 2025-08-14T23:52:17.2227224Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T23:52:17.2227655Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T23:52:17.2228021Z FrameworkVersion=v4.0.30319 2025-08-14T23:52:17.2228322Z FrameworkVersion64=v4.0.30319 2025-08-14T23:52:17.2228589Z GITHUB_ACTION=test 2025-08-14T23:52:17.2228840Z GITHUB_ACTIONS=true 2025-08-14T23:52:17.2229064Z GITHUB_ACTION_REF= 2025-08-14T23:52:17.2229325Z GITHUB_ACTION_REPOSITORY= 2025-08-14T23:52:17.2229580Z GITHUB_ACTOR=pytorchmergebot 2025-08-14T23:52:17.2229863Z GITHUB_ACTOR_ID=97764156 2025-08-14T23:52:17.2230218Z GITHUB_API_URL=https://api.github.com 2025-08-14T23:52:17.2230547Z GITHUB_BASE_REF= 2025-08-14T23:52:17.2231023Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:52:17.2231534Z GITHUB_EVENT_NAME=push 2025-08-14T23:52:17.2231936Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-14T23:52:17.2232412Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-14T23:52:17.2232765Z GITHUB_HEAD_REF= 2025-08-14T23:52:17.2232976Z GITHUB_JOB=test 2025-08-14T23:52:17.2233481Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:52:17.2234328Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:52:17.2234891Z GITHUB_REF=refs/heads/main 2025-08-14T23:52:17.2235167Z GITHUB_REF_NAME=main 2025-08-14T23:52:17.2235408Z GITHUB_REF_PROTECTED=true 2025-08-14T23:52:17.2235681Z GITHUB_REF_TYPE=branch 2025-08-14T23:52:17.2235934Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-14T23:52:17.2236332Z GITHUB_REPOSITORY_ID=65600975 2025-08-14T23:52:17.2236623Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-14T23:52:17.2236942Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-14T23:52:17.2237233Z GITHUB_RETENTION_DAYS=90 2025-08-14T23:52:17.2237571Z GITHUB_RUN_ATTEMPT=1 2025-08-14T23:52:17.2237809Z GITHUB_RUN_ID=16976255045 2025-08-14T23:52:17.2238091Z GITHUB_RUN_NUMBER=140204 2025-08-14T23:52:17.2238395Z GITHUB_SERVER_URL=https://github.com 2025-08-14T23:52:17.2238732Z GITHUB_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:52:17.2239347Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:52:17.2240185Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_0f9193a5-70d6-492e-8e43-c2d8d1dce3cc 2025-08-14T23:52:17.2240811Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-14T23:52:17.2241110Z GITHUB_WORKFLOW=trunk 2025-08-14T23:52:17.2241532Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-14T23:52:17.2242146Z GITHUB_WORKFLOW_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:52:17.2242587Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:52:17.2242983Z GIT_DEFAULT_BRANCH=main 2025-08-14T23:52:17.2243224Z HOME=C:\Users\runneruser 2025-08-14T23:52:17.2245266Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-14T23:52:17.2247556Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T23:52:17.2248113Z INSTALL_WINDOWS_SDK=1 2025-08-14T23:52:17.2248365Z JOB_ID=48128743924 2025-08-14T23:52:17.2248756Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T23:52:17.2250101Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-14T23:52:17.2252348Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-14T23:52:17.2253871Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-14T23:52:17.2254296Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-14T23:52:17.2254693Z NO_TD=False 2025-08-14T23:52:17.2254961Z NO_TEST_TIMEOUT=False 2025-08-14T23:52:17.2255227Z NUMBER_OF_PROCESSORS=16 2025-08-14T23:52:17.2255473Z NUM_TEST_SHARDS=3 2025-08-14T23:52:17.2255723Z OLDPWD=C:/16976255045/build-results 2025-08-14T23:52:17.2255992Z OS=Windows_NT 2025-08-14T23:52:17.2262479Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T23:52:17.2269355Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-14T23:52:17.2269745Z Platform=x64 2025-08-14T23:52:17.2270065Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-14T23:52:17.2270468Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-14T23:52:17.2270918Z PROCESSOR_LEVEL=6 2025-08-14T23:52:17.2271157Z PROCESSOR_REVISION=5507 2025-08-14T23:52:17.2271441Z PROGRAMFILES=C:\Program Files 2025-08-14T23:52:17.2271770Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-14T23:52:17.2272196Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:52:17.2272546Z PROMPT=(base) $P$G 2025-08-14T23:52:17.2272793Z PR_NUMBER= 2025-08-14T23:52:17.2273299Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-14T23:52:17.2273862Z PUBLIC=C:\Users\Public 2025-08-14T23:52:17.2274255Z *** 2025-08-14T23:52:17.2274589Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T23:52:17.2275020Z PYTHON_VERSION=3.9 2025-08-14T23:52:17.2275312Z PYTORCH_FINAL_PACKAGE_DIR=C:/16976255045/build-results/ 2025-08-14T23:52:17.2275762Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\16976255045\build-results\ 2025-08-14T23:52:17.2276139Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-14T23:52:17.2276461Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-14T23:52:17.2276779Z ProgramData=C:\ProgramData 2025-08-14T23:52:17.2277059Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-14T23:52:17.2277389Z ProgramW6432=C:\Program Files 2025-08-14T23:52:17.2277649Z REENABLED_ISSUES= 2025-08-14T23:52:17.2277892Z RUNNER_ARCH=X64 2025-08-14T23:52:17.2278118Z RUNNER_ENVIRONMENT=self-hosted 2025-08-14T23:52:17.2278418Z RUNNER_NAME=i-0bbe1d599543d2365 2025-08-14T23:52:17.2278678Z RUNNER_OS=Windows 2025-08-14T23:52:17.2278949Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-14T23:52:17.2279298Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-14T23:52:17.2279736Z RUNNER_TRACKING_ID=github_60dc4745-ed86-47dd-9fa1-e17bfa10775b 2025-08-14T23:52:17.2280181Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-14T23:52:17.2280700Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T23:52:17.2281231Z SHA1=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T23:52:17.2281529Z SHARD_NUMBER=2 2025-08-14T23:52:17.2281753Z SHLVL=2 2025-08-14T23:52:17.2282024Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-14T23:52:17.2282403Z SYSTEMDRIVE=C: 2025-08-14T23:52:17.2282625Z SYSTEMROOT=C:\Windows 2025-08-14T23:52:17.2282914Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:17.2283296Z TERM=xterm-256color 2025-08-14T23:52:17.2283548Z TEST_CONFIG=default 2025-08-14T23:52:17.2283857Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-14T23:52:17.2284273Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-14T23:52:17.2284684Z TEST_SHOWLOCALS=False 2025-08-14T23:52:17.2284951Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:17.2285312Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:17.2285703Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T23:52:17.2286186Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-14T23:52:17.2286571Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-14T23:52:17.2286930Z TORCH_SERIALIZATION_DEBUG=1 2025-08-14T23:52:17.2287219Z UCRTVersion=10.0.19041.0 2025-08-14T23:52:17.2287553Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T23:52:17.2287958Z UPDATEFILE=update.finished 2025-08-14T23:52:17.2288224Z USERDOMAIN=EC2AMAZ-VK08H34 2025-08-14T23:52:17.2288506Z USERNAME=runneruser 2025-08-14T23:52:17.2288799Z USERPROFILE=C:\Users\runneruser 2025-08-14T23:52:17.2289147Z USE_CUDA=0 2025-08-14T23:52:17.2289566Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-14T23:52:17.2290239Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-14T23:52:17.2290999Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-08-14T23:52:17.2291817Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-08-14T23:52:17.2292767Z VCToolsVersion=14.38.33130 2025-08-14T23:52:17.2293226Z VC_PRODUCT=BuildTools 2025-08-14T23:52:17.2293646Z VC_VERSION= 2025-08-14T23:52:17.2293960Z VC_YEAR=2022 2025-08-14T23:52:17.2294339Z VERBOSE_ARG='SilentlyContinue' 2025-08-14T23:52:17.2294762Z VERBOSE_TEST_LOGS=False 2025-08-14T23:52:17.2295176Z VisualStudioVersion=17.0 2025-08-14T23:52:17.2295914Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-14T23:52:17.2296772Z VSCMD_ARG_app_plat=Desktop 2025-08-14T23:52:17.2297243Z VSCMD_ARG_HOST_ARCH=x64 2025-08-14T23:52:17.2297598Z VSCMD_ARG_TGT_ARCH=x64 2025-08-14T23:52:17.2297990Z VSCMD_VER=17.8.22 2025-08-14T23:52:17.2298559Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-14T23:52:17.2299265Z VS_VERSION=17.4.1 2025-08-14T23:52:17.2299592Z WINDIR=C:\Windows 2025-08-14T23:52:17.2300473Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-14T23:52:17.2301619Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-14T23:52:17.2302323Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T23:52:17.2302872Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-14T23:52:17.2303306Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-14T23:52:17.2303792Z WindowsSDKVersion=10.0.19041.0\ 2025-08-14T23:52:17.2304329Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-14T23:52:17.2305128Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-14T23:52:17.2305914Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_script_ops.bat 2025-08-14T23:52:17.2306447Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-14T23:52:17.2306749Z __DOTNET_ADD_64BIT=1 2025-08-14T23:52:17.2306993Z __DOTNET_PREFERRED_BITNESS=64 2025-08-14T23:52:17.2310444Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-14T23:52:17.2313762Z 2025-08-14T23:52:17.2314135Z (base) C:\actions-runner\_work\pytorch\pytorch>git submodule update --init --recursive third_party/pybind11 2025-08-14T23:52:17.6046332Z 2025-08-14T23:52:17.6046916Z (base) C:\actions-runner\_work\pytorch\pytorch>cd test\custom_operator 2025-08-14T23:52:17.6051133Z 2025-08-14T23:52:17.6051779Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>mkdir build 2025-08-14T23:52:17.6054372Z 2025-08-14T23:52:17.6054677Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>pushd build 2025-08-14T23:52:17.6059279Z 2025-08-14T23:52:17.6059758Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>echo "Executing CMake for custom_operator test..." 2025-08-14T23:52:17.6060440Z "Executing CMake for custom_operator test..." 2025-08-14T23:52:17.6062169Z 2025-08-14T23:52:17.6062906Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>cmake -DCMAKE_PREFIX_PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch -DCMAKE_BUILD_TYPE=Release -GNinja .. 2025-08-14T23:52:17.8137197Z -- The C compiler identification is MSVC 19.38.33145.0 2025-08-14T23:52:17.9813111Z -- The CXX compiler identification is MSVC 19.38.33145.0 2025-08-14T23:52:18.0010681Z -- Detecting C compiler ABI info 2025-08-14T23:52:18.2555900Z -- Detecting C compiler ABI info - done 2025-08-14T23:52:18.2577191Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-08-14T23:52:18.2582131Z -- Detecting C compile features 2025-08-14T23:52:18.2589345Z -- Detecting C compile features - done 2025-08-14T23:52:18.2662316Z -- Detecting CXX compiler ABI info 2025-08-14T23:52:18.5257944Z -- Detecting CXX compiler ABI info - done 2025-08-14T23:52:18.5279555Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-08-14T23:52:18.5283369Z -- Detecting CXX compile features 2025-08-14T23:52:18.5290622Z -- Detecting CXX compile features - done 2025-08-14T23:52:18.8060260Z -- Found Torch: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch/lib/torch.lib 2025-08-14T23:52:18.8063065Z -- Configuring done 2025-08-14T23:52:18.8194844Z -- Generating done 2025-08-14T23:52:18.8325253Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/test/custom_operator/build 2025-08-14T23:52:18.8380733Z 2025-08-14T23:52:18.8381590Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:18.8390027Z 2025-08-14T23:52:18.8390594Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>echo "Executing Ninja for custom_operator test..." 2025-08-14T23:52:18.8391230Z "Executing Ninja for custom_operator test..." 2025-08-14T23:52:18.8391453Z 2025-08-14T23:52:18.8391707Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>ninja -v 2025-08-14T23:52:29.8989906Z [1/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\test_custom_ops.dir\test_custom_ops.cpp.obj /FdCMakeFiles\test_custom_ops.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\test_custom_ops.cpp 2025-08-14T23:52:29.8995829Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-14T23:52:29.8998317Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:29.9001178Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-14T23:52:29.9003095Z with 2025-08-14T23:52:29.9003417Z [ 2025-08-14T23:52:29.9003710Z I=size_t, 2025-08-14T23:52:29.9004073Z _Ty2=size_t 2025-08-14T23:52:29.9004564Z ] 2025-08-14T23:52:29.9006122Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-14T23:52:29.9009557Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-14T23:52:29.9011818Z with 2025-08-14T23:52:29.9012140Z [ 2025-08-14T23:52:29.9012432Z _Ty=int32_t 2025-08-14T23:52:29.9012803Z ] 2025-08-14T23:52:29.9014846Z C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\test_custom_ops.cpp(201): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-14T23:52:29.9017059Z with 2025-08-14T23:52:29.9017404Z [ 2025-08-14T23:52:29.9017701Z _Ty=int32_t 2025-08-14T23:52:29.9018054Z ] 2025-08-14T23:52:29.9019483Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data 2025-08-14T23:52:29.9021874Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:29.9025027Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(236): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(const unsigned __int64 &)' being compiled 2025-08-14T23:52:29.9027263Z with 2025-08-14T23:52:29.9027584Z [ 2025-08-14T23:52:29.9027904Z _Ty=std::_Vbase 2025-08-14T23:52:29.9028307Z ] 2025-08-14T23:52:29.9030298Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-14T23:52:29.9032492Z with 2025-08-14T23:52:29.9032818Z [ 2025-08-14T23:52:29.9033144Z _Ty=std::_Vbase 2025-08-14T23:52:29.9033543Z ] 2025-08-14T23:52:29.9035651Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-14T23:52:29.9038018Z with 2025-08-14T23:52:29.9038339Z [ 2025-08-14T23:52:29.9039289Z _Ty=std::_Vbase 2025-08-14T23:52:29.9039710Z ] 2025-08-14T23:52:29.9041564Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-14T23:52:29.9043526Z with 2025-08-14T23:52:29.9043838Z [ 2025-08-14T23:52:29.9044148Z _Ty=size_t 2025-08-14T23:52:29.9044490Z ] 2025-08-14T23:52:29.9045856Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'initializing': conversion from 'size_t' to '_Objty', possible loss of data 2025-08-14T23:52:29.9047356Z with 2025-08-14T23:52:29.9047655Z [ 2025-08-14T23:52:29.9048129Z _Objty=unsigned int 2025-08-14T23:52:29.9048541Z ] 2025-08-14T23:52:29.9049852Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:29.9052875Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(783): note: see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-14T23:52:29.9055068Z with 2025-08-14T23:52:29.9055373Z [ 2025-08-14T23:52:29.9055663Z _Ty=size_t 2025-08-14T23:52:29.9056009Z ] 2025-08-14T23:52:29.9058093Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(834): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-14T23:52:29.9060313Z with 2025-08-14T23:52:29.9060632Z [ 2025-08-14T23:52:29.9060979Z _Alloc=std::allocator, 2025-08-14T23:52:29.9061498Z _Ty=unsigned int, 2025-08-14T23:52:29.9061903Z _Objty=unsigned int 2025-08-14T23:52:29.9062316Z ] 2025-08-14T23:52:29.9063671Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-14T23:52:29.9065933Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:29.9068786Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(681): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(size_t &)' being compiled 2025-08-14T23:52:29.9070733Z with 2025-08-14T23:52:29.9071158Z [ 2025-08-14T23:52:29.9071451Z _Ty=int32_t 2025-08-14T23:52:29.9071772Z ] 2025-08-14T23:52:29.9073594Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-14T23:52:29.9075604Z with 2025-08-14T23:52:29.9075941Z [ 2025-08-14T23:52:29.9076234Z _Ty=int32_t 2025-08-14T23:52:29.9076598Z ] 2025-08-14T23:52:29.9078586Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-14T23:52:29.9081012Z with 2025-08-14T23:52:29.9081345Z [ 2025-08-14T23:52:29.9081668Z _Ty=int32_t 2025-08-14T23:52:29.9082028Z ] 2025-08-14T23:52:29.9083694Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-14T23:52:29.9085499Z with 2025-08-14T23:52:29.9085821Z [ 2025-08-14T23:52:29.9086122Z _Ty=size_t 2025-08-14T23:52:29.9086494Z ] 2025-08-14T23:52:29.9087876Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'initializing': conversion from 'size_t' to '_Objty', possible loss of data 2025-08-14T23:52:29.9089530Z with 2025-08-14T23:52:29.9089844Z [ 2025-08-14T23:52:29.9090145Z _Objty=int 2025-08-14T23:52:29.9090475Z ] 2025-08-14T23:52:29.9091801Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:29.9094721Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(783): note: see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-14T23:52:29.9096703Z with 2025-08-14T23:52:29.9097008Z [ 2025-08-14T23:52:29.9097296Z _Ty=size_t 2025-08-14T23:52:29.9097638Z ] 2025-08-14T23:52:29.9099688Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(834): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-14T23:52:29.9101890Z with 2025-08-14T23:52:29.9102206Z [ 2025-08-14T23:52:29.9102540Z _Alloc=std::allocator, 2025-08-14T23:52:29.9102959Z _Ty=int, 2025-08-14T23:52:29.9103280Z _Objty=int 2025-08-14T23:52:29.9103603Z ] 2025-08-14T23:52:29.9104938Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data 2025-08-14T23:52:29.9106418Z with 2025-08-14T23:52:29.9106722Z [ 2025-08-14T23:52:29.9106992Z _Ty1=int 2025-08-14T23:52:29.9107328Z ] 2025-08-14T23:52:29.9108484Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:29.9111458Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(658): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(size_t &,int &)' being compiled 2025-08-14T23:52:29.9113417Z with 2025-08-14T23:52:29.9113713Z [ 2025-08-14T23:52:29.9114045Z _Ty=std::pair 2025-08-14T23:52:29.9114469Z ] 2025-08-14T23:52:29.9116269Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-14T23:52:29.9118319Z with 2025-08-14T23:52:29.9118804Z [ 2025-08-14T23:52:29.9119139Z _Ty=std::pair 2025-08-14T23:52:29.9119590Z ] 2025-08-14T23:52:29.9121727Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-14T23:52:29.9123905Z with 2025-08-14T23:52:29.9124201Z [ 2025-08-14T23:52:29.9124542Z _Ty=std::pair 2025-08-14T23:52:29.9124967Z ] 2025-08-14T23:52:29.9126788Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-14T23:52:29.9128763Z with 2025-08-14T23:52:29.9129081Z [ 2025-08-14T23:52:29.9129402Z _Ty=size_t 2025-08-14T23:52:29.9129861Z ] 2025-08-14T23:52:29.9131633Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: see reference to function template instantiation 'std::pair::pair<_Ty&,int&,0>(_Other1,_Other2) noexcept' being compiled 2025-08-14T23:52:30.7607782Z with 2025-08-14T23:52:30.7608056Z [ 2025-08-14T23:52:30.7608229Z _Ty=size_t, 2025-08-14T23:52:30.7608463Z _Other1=size_t &, 2025-08-14T23:52:30.7608697Z _Other2=int & 2025-08-14T23:52:30.7608909Z ] 2025-08-14T23:52:30.7609641Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data 2025-08-14T23:52:30.7610437Z with 2025-08-14T23:52:30.7610611Z [ 2025-08-14T23:52:30.7610796Z _Ty2=int 2025-08-14T23:52:30.7610986Z ] 2025-08-14T23:52:30.7613193Z [2/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -Dcustom_ops_EXPORTS -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\custom_ops.dir\op.cpp.obj /FdCMakeFiles\custom_ops.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\op.cpp 2025-08-14T23:52:30.7616071Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-14T23:52:30.7617336Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:30.7618837Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-14T23:52:30.7619844Z with 2025-08-14T23:52:30.7620012Z [ 2025-08-14T23:52:30.7620189Z I=size_t, 2025-08-14T23:52:30.7620388Z _Ty2=size_t 2025-08-14T23:52:30.7620588Z ] 2025-08-14T23:52:30.7621419Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-14T23:52:30.7623268Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-14T23:52:30.7624999Z with 2025-08-14T23:52:30.7625244Z [ 2025-08-14T23:52:30.7625432Z _Ty=int32_t 2025-08-14T23:52:30.7625630Z ] 2025-08-14T23:52:30.7626682Z C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\op.cpp(103): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-14T23:52:30.7627788Z with 2025-08-14T23:52:30.7627959Z [ 2025-08-14T23:52:30.7628125Z _Ty=int32_t 2025-08-14T23:52:30.7628322Z ] 2025-08-14T23:52:30.7629082Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data 2025-08-14T23:52:30.7630467Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:30.7632267Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(236): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(const unsigned __int64 &)' being compiled 2025-08-14T23:52:30.7633421Z with 2025-08-14T23:52:30.7633590Z [ 2025-08-14T23:52:30.7633787Z _Ty=std::_Vbase 2025-08-14T23:52:30.7634024Z ] 2025-08-14T23:52:30.7635051Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-14T23:52:30.7636171Z with 2025-08-14T23:52:30.7636336Z [ 2025-08-14T23:52:30.7636516Z _Ty=std::_Vbase 2025-08-14T23:52:30.7636721Z ] 2025-08-14T23:52:30.7637796Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-14T23:52:30.7638947Z with 2025-08-14T23:52:30.7639108Z [ 2025-08-14T23:52:30.7639278Z _Ty=std::_Vbase 2025-08-14T23:52:30.7639484Z ] 2025-08-14T23:52:30.7640460Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-14T23:52:30.7641507Z with 2025-08-14T23:52:30.7641684Z [ 2025-08-14T23:52:30.7641847Z _Ty=size_t 2025-08-14T23:52:30.7642048Z ] 2025-08-14T23:52:30.7642786Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'initializing': conversion from 'size_t' to '_Objty', possible loss of data 2025-08-14T23:52:30.7643576Z with 2025-08-14T23:52:30.7643747Z [ 2025-08-14T23:52:30.7643918Z _Objty=unsigned int 2025-08-14T23:52:30.7644153Z ] 2025-08-14T23:52:30.7644789Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:30.7646443Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(783): note: see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-14T23:52:30.7647986Z with 2025-08-14T23:52:30.7648209Z [ 2025-08-14T23:52:30.7648384Z _Ty=size_t 2025-08-14T23:52:30.7648579Z ] 2025-08-14T23:52:30.7649698Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(834): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-14T23:52:30.7650892Z with 2025-08-14T23:52:30.7651061Z [ 2025-08-14T23:52:30.7651353Z _Alloc=std::allocator, 2025-08-14T23:52:30.7651637Z _Ty=unsigned int, 2025-08-14T23:52:30.7651881Z _Objty=unsigned int 2025-08-14T23:52:30.7652110Z ] 2025-08-14T23:52:30.7652841Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-14T23:52:30.7654245Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:30.7655784Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(681): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(size_t &)' being compiled 2025-08-14T23:52:30.7656840Z with 2025-08-14T23:52:30.7657008Z [ 2025-08-14T23:52:30.7657198Z _Ty=int32_t 2025-08-14T23:52:30.7657393Z ] 2025-08-14T23:52:30.7658384Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-14T23:52:30.7659442Z with 2025-08-14T23:52:30.7659609Z [ 2025-08-14T23:52:30.7659779Z _Ty=int32_t 2025-08-14T23:52:30.7659965Z ] 2025-08-14T23:52:30.7661012Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-14T23:52:30.7662117Z with 2025-08-14T23:52:30.7662283Z [ 2025-08-14T23:52:30.7662454Z _Ty=int32_t 2025-08-14T23:52:30.7662647Z ] 2025-08-14T23:52:30.7663526Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-14T23:52:30.7664465Z with 2025-08-14T23:52:30.7664638Z [ 2025-08-14T23:52:30.7664818Z _Ty=size_t 2025-08-14T23:52:30.7665001Z ] 2025-08-14T23:52:30.7665739Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'initializing': conversion from 'size_t' to '_Objty', possible loss of data 2025-08-14T23:52:30.7666528Z with 2025-08-14T23:52:30.7666695Z [ 2025-08-14T23:52:30.7666858Z _Objty=int 2025-08-14T23:52:30.7667050Z ] 2025-08-14T23:52:30.7667681Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:30.7669203Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(783): note: see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-14T23:52:30.7670620Z with 2025-08-14T23:52:30.7670788Z [ 2025-08-14T23:52:30.7671058Z _Ty=size_t 2025-08-14T23:52:30.7671253Z ] 2025-08-14T23:52:30.7672333Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(834): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-14T23:52:30.7673479Z with 2025-08-14T23:52:30.7673651Z [ 2025-08-14T23:52:30.7673852Z _Alloc=std::allocator, 2025-08-14T23:52:30.7674105Z _Ty=int, 2025-08-14T23:52:30.7674299Z _Objty=int 2025-08-14T23:52:30.7674492Z ] 2025-08-14T23:52:30.7675218Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data 2025-08-14T23:52:30.7676310Z with 2025-08-14T23:52:30.7676479Z [ 2025-08-14T23:52:30.7676703Z _Ty1=int 2025-08-14T23:52:30.7676893Z ] 2025-08-14T23:52:30.7677540Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): note: the template instantiation context (the oldest one first) is 2025-08-14T23:52:30.7679111Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(658): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(size_t &,int &)' being compiled 2025-08-14T23:52:30.7680199Z with 2025-08-14T23:52:30.7680393Z [ 2025-08-14T23:52:30.7680572Z _Ty=std::pair 2025-08-14T23:52:30.7680817Z ] 2025-08-14T23:52:30.7681842Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-14T23:52:30.7682932Z with 2025-08-14T23:52:30.7683101Z [ 2025-08-14T23:52:30.7683288Z _Ty=std::pair 2025-08-14T23:52:30.7683527Z ] 2025-08-14T23:52:30.7684597Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-14T23:52:30.7685734Z with 2025-08-14T23:52:30.7685907Z [ 2025-08-14T23:52:30.7686091Z _Ty=std::pair 2025-08-14T23:52:30.7686325Z ] 2025-08-14T23:52:30.7687320Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(795): note: see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-14T23:52:30.7688376Z with 2025-08-14T23:52:30.7688543Z [ 2025-08-14T23:52:30.7688719Z _Ty=size_t 2025-08-14T23:52:30.7688908Z ] 2025-08-14T23:52:30.7689789Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(255): note: see reference to function template instantiation 'std::pair::pair<_Ty&,int&,0>(_Other1,_Other2) noexcept' being compiled 2025-08-14T23:52:30.7690730Z with 2025-08-14T23:52:30.9282635Z [ 2025-08-14T23:52:30.9283417Z _Ty=size_t, 2025-08-14T23:52:30.9283660Z _Other1=size_t &, 2025-08-14T23:52:30.9283912Z _Other2=int & 2025-08-14T23:52:30.9284115Z ] 2025-08-14T23:52:30.9284952Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\utility(250): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data 2025-08-14T23:52:30.9285754Z with 2025-08-14T23:52:30.9285924Z [ 2025-08-14T23:52:30.9286147Z _Ty2=int 2025-08-14T23:52:30.9286357Z ] 2025-08-14T23:52:30.9290163Z [3/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_dll --intdir=CMakeFiles\custom_ops.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\link.exe /nologo CMakeFiles\custom_ops.dir\op.cpp.obj /out:custom_ops.dll /implib:custom_ops.lib /pdb:custom_ops.pdb /dll /version:0.0 /machine:x64 /INCREMENTAL:NO -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-14T23:52:31.0561654Z [4/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_exe --intdir=CMakeFiles\test_custom_ops.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1438~1.331\bin\Hostx64\x64\link.exe /nologo CMakeFiles\test_custom_ops.dir\test_custom_ops.cpp.obj /out:test_custom_ops.exe /implib:test_custom_ops.lib /pdb:test_custom_ops.pdb /version:0.0 /machine:x64 /INCREMENTAL:NO /subsystem:console -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 custom_ops.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-14T23:52:31.0577519Z 2025-08-14T23:52:31.0578223Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:31.0578722Z 2025-08-14T23:52:31.0579161Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>echo "Ninja succeeded for custom_operator test." 2025-08-14T23:52:31.0579830Z "Ninja succeeded for custom_operator test." 2025-08-14T23:52:31.0580805Z 2025-08-14T23:52:31.0581293Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>popd 2025-08-14T23:52:31.0585344Z 2025-08-14T23:52:31.0585705Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>python test_custom_ops.py -v 2025-08-14T23:52:34.5108199Z 2025-08-14T23:52:34.5108647Z Running tests... 2025-08-14T23:52:34.5109045Z ---------------------------------------------------------------------- 2025-08-14T23:52:34.5109575Z Test results will be stored in test-reports\python-unittest\test_custom_ops 2025-08-14T23:52:34.8441131Z test_abstract_impl_pystub_faketensor (__main__.TestCustomOperators) ... C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\my_custom_ops.py:13: FutureWarning: `create_unbacked_symint` is deprecated, please use `new_dynamic_size` instead 2025-08-14T23:52:34.8442457Z nnz = ctx.create_unbacked_symint() 2025-08-14T23:52:34.8545686Z ok (0.344s) 2025-08-14T23:52:34.8601326Z test_abstract_impl_pystub_meta (__main__.TestCustomOperators) ... ok (0.016s) 2025-08-14T23:52:34.8627457Z test_calling_custom_op (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-14T23:52:34.9249928Z test_calling_custom_op_inside_script_module (__main__.TestCustomOperators) ... ok (0.062s) 2025-08-14T23:52:34.9259272Z test_calling_custom_op_string (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-14T23:52:34.9290125Z test_calling_custom_op_with_autograd (__main__.TestCustomOperators) ... C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py:841: UserWarning: Using backward() with create_graph=True will create a reference cycle between the parameter and its gradient which can cause a memory leak. We recommend using autograd.grad when creating the graph to avoid this. If you have to use this function, make sure to reset the .grad fields of your parameters to None after use to break the cycle and avoid the leak. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\torch\csrc\autograd\engine.cpp:1296.) 2025-08-14T23:52:34.9292961Z return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass 2025-08-14T23:52:34.9303603Z ok (0.000s) 2025-08-14T23:52:34.9315465Z test_calling_custom_op_with_autograd_in_nograd_mode (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-14T23:52:34.9321905Z test_custom_library_is_loaded (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-14T23:52:34.9328919Z test_dynamo_pystub_suggestion (__main__.TestCustomOperators) ... skip: torch.compile not supported on windows (0.000s) 2025-08-14T23:52:34.9339769Z test_op_with_incorrect_abstract_impl_pystub (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-14T23:52:34.9350884Z test_op_with_no_abstract_impl_pystub (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-14T23:52:34.9457698Z test_saving_and_loading_script_module_with_custom_op (__main__.TestCustomOperators) ... ok (0.016s) 2025-08-14T23:52:34.9458227Z 2025-08-14T23:52:34.9458637Z ---------------------------------------------------------------------- 2025-08-14T23:52:34.9459052Z Ran 12 tests in 0.438s 2025-08-14T23:52:34.9459234Z 2025-08-14T23:52:34.9459331Z OK (skipped=1) 2025-08-14T23:52:34.9459464Z 2025-08-14T23:52:34.9459594Z Generating XML reports... 2025-08-14T23:52:34.9508193Z Generated XML report: test-reports\python-unittest\test_custom_ops\TEST-TestCustomOperators-20250814235234.xml 2025-08-14T23:52:35.5454691Z 2025-08-14T23:52:35.5455418Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:35.5455874Z 2025-08-14T23:52:35.5456699Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>python model.py --export-script-module="build/model.pt" 2025-08-14T23:52:37.4300478Z 2025-08-14T23:52:37.4301326Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:37.4302020Z 2025-08-14T23:52:37.4302304Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>cd build 2025-08-14T23:52:37.4307218Z 2025-08-14T23:52:37.4314670Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-14T23:52:37.4322053Z 2025-08-14T23:52:37.4322451Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>test_custom_ops.exe model.pt 2025-08-14T23:52:37.6983313Z [W814 23:52:37.000000000 engine.cpp:1296] Warning: Using backward() with create_graph=True will create a reference cycle between the parameter and its gradient which can cause a memory leak. We recommend using autograd.grad when creating the graph to avoid this. If you have to use this function, make sure to reset the .grad fields of your parameters to None after use to break the cycle and avoid the leak. (function operator ()) 2025-08-14T23:52:37.8934184Z ok 2025-08-14T23:52:37.8993801Z 2025-08-14T23:52:37.8994389Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>if ERRORLEVEL 1 exit /b 1 2025-08-14T23:52:37.9014097Z + assert_git_not_dirty 2025-08-14T23:52:37.9014426Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-08-14T23:52:37.9014782Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-08-14T23:52:37.9127864Z ++ git status --porcelain 2025-08-14T23:52:37.9182247Z ++ grep -v '?? third_party' 2025-08-14T23:52:41.5779841Z ++ true 2025-08-14T23:52:41.5783664Z + git_status= 2025-08-14T23:52:41.5783921Z + [[ -n '' ]] 2025-08-14T23:52:41.5784289Z + echo 'TEST PASSED' 2025-08-14T23:52:41.5784573Z TEST PASSED 2025-08-14T23:52:41.5923088Z ##[group]Run cat test/**/*_toprint.log || true 2025-08-14T23:52:41.5923471Z cat test/**/*_toprint.log || true 2025-08-14T23:52:41.5942175Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T23:52:41.5942603Z env: 2025-08-14T23:52:41.5942795Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:41.5943176Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:41.5943690Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:41.5944154Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:41.5944545Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:41.5944821Z ##[endgroup] 2025-08-14T23:52:41.6698633Z cat: 'test/**/*_toprint.log': No such file or directory 2025-08-14T23:52:41.6797304Z ##[group]Run kill "$MONITOR_SCRIPT_PID" 2025-08-14T23:52:41.6797631Z kill "$MONITOR_SCRIPT_PID" 2025-08-14T23:52:41.6818479Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T23:52:41.6818904Z env: 2025-08-14T23:52:41.6819091Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:41.6819463Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:41.6819971Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:41.6820537Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:41.6820935Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:41.6821237Z MONITOR_SCRIPT_PID: 608 2025-08-14T23:52:41.6821463Z ##[endgroup] 2025-08-14T23:52:41.7182255Z Prepare all required actions 2025-08-14T23:52:41.7182733Z Getting action download info 2025-08-14T23:52:41.8354470Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-08-14T23:52:42.0283495Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-08-14T23:52:42.3844349Z ##[group]Run ./.github/actions/upload-test-artifacts 2025-08-14T23:52:42.3844674Z with: 2025-08-14T23:52:42.3845034Z file-suffix: test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924 2025-08-14T23:52:42.3845468Z s3-bucket: gha-artifacts 2025-08-14T23:52:42.3845693Z env: 2025-08-14T23:52:42.3845881Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:42.3846257Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:42.3846856Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:42.3847358Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:42.3847758Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:42.3848048Z ##[endgroup] 2025-08-14T23:52:42.3949602Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-14T23:52:42.3950026Z # -ir => recursive include all files in pattern 2025-08-14T23:52:42.3950473Z 7z a "test-jsons-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.json' 2025-08-14T23:52:42.3965923Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:52:42.3966373Z env: 2025-08-14T23:52:42.3966550Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:42.3966919Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:42.3967432Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:42.3967915Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:42.3968324Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:42.3968764Z FILE_SUFFIX: test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924 2025-08-14T23:52:42.3969184Z ##[endgroup] 2025-08-14T23:52:42.7831295Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:52:42.7900497Z Finished 2025-08-14T23:52:42.8858795Z 2025-08-14T23:52:42.8859288Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-14T23:52:42.8859602Z 2025-08-14T23:52:42.8859684Z Scanning the drive: 2025-08-14T23:52:42.8859899Z 1 file, 20688 bytes (21 KiB) 2025-08-14T23:52:42.8860057Z 2025-08-14T23:52:42.8860395Z Creating archive: test-jsons-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:42.8860864Z 2025-08-14T23:52:42.8860993Z Add new data to archive: 1 file, 20688 bytes (21 KiB) 2025-08-14T23:52:42.8861233Z 2025-08-14T23:52:42.8861237Z 2025-08-14T23:52:42.8861318Z Files read from disk: 1 2025-08-14T23:52:42.8861555Z Archive size: 3832 bytes (4 KiB) 2025-08-14T23:52:42.8861805Z Everything is Ok 2025-08-14T23:52:42.9113500Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-14T23:52:42.9113923Z # -ir => recursive include all files in pattern 2025-08-14T23:52:42.9114473Z 7z a "test-reports-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.xml' -ir'!test\test-reports\*.csv' 2025-08-14T23:52:42.9129623Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:52:42.9130076Z env: 2025-08-14T23:52:42.9130263Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:42.9130628Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:42.9131224Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:42.9131701Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:42.9132097Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:42.9133826Z FILE_SUFFIX: test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924 2025-08-14T23:52:42.9134278Z ##[endgroup] 2025-08-14T23:52:43.2757255Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:52:43.2827251Z Finished 2025-08-14T23:52:43.5005147Z 2025-08-14T23:52:43.5005661Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-14T23:52:43.5005964Z 2025-08-14T23:52:43.5006045Z Scanning the drive: 2025-08-14T23:52:43.5006267Z 158 files, 17599524 bytes (17 MiB) 2025-08-14T23:52:43.5006435Z 2025-08-14T23:52:43.5006787Z Creating archive: test-reports-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:43.5007260Z 2025-08-14T23:52:43.5007405Z Add new data to archive: 158 files, 17599524 bytes (17 MiB) 2025-08-14T23:52:43.5007768Z 2025-08-14T23:52:43.5007786Z 2025-08-14T23:52:43.5007882Z Files read from disk: 158 2025-08-14T23:52:43.5008123Z Archive size: 854903 bytes (835 KiB) 2025-08-14T23:52:43.5008405Z Everything is Ok 2025-08-14T23:52:43.5275590Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-14T23:52:43.5276025Z # -ir => recursive include all files in pattern 2025-08-14T23:52:43.5276486Z 7z a "logs-$Env:FILE_SUFFIX.zip" 'usage_log.txt' -ir'!test\test-reports\*.log' 2025-08-14T23:52:43.5291669Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:52:43.5292112Z env: 2025-08-14T23:52:43.5292303Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:43.5292681Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:43.5293198Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:43.5293674Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:43.5294063Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:43.5294511Z FILE_SUFFIX: test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924 2025-08-14T23:52:43.5294933Z ##[endgroup] 2025-08-14T23:52:43.8823583Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:52:43.8892754Z Finished 2025-08-14T23:52:44.1652070Z 2025-08-14T23:52:44.1652430Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-14T23:52:44.1652726Z 2025-08-14T23:52:44.1652808Z Scanning the drive: 2025-08-14T23:52:44.1653039Z 305 files, 22121220 bytes (22 MiB) 2025-08-14T23:52:44.1653214Z 2025-08-14T23:52:44.1653521Z Creating archive: logs-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:44.1653961Z 2025-08-14T23:52:44.1654103Z Add new data to archive: 305 files, 22121220 bytes (22 MiB) 2025-08-14T23:52:44.1654372Z 2025-08-14T23:52:44.1654377Z 2025-08-14T23:52:44.1654464Z Files read from disk: 305 2025-08-14T23:52:44.1654700Z Archive size: 1445630 bytes (1412 KiB) 2025-08-14T23:52:44.1654975Z Everything is Ok 2025-08-14T23:52:44.1950889Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-14T23:52:44.1951199Z with: 2025-08-14T23:52:44.1951377Z s3-bucket: gha-artifacts 2025-08-14T23:52:44.1951660Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-14T23:52:44.1952063Z retention-days: 14 2025-08-14T23:52:44.1952272Z if-no-files-found: warn 2025-08-14T23:52:44.1952514Z path: test-jsons-*.zip 2025-08-14T23:52:44.1952728Z name: artifact 2025-08-14T23:52:44.1952929Z region: us-east-1 2025-08-14T23:52:44.1953110Z env: 2025-08-14T23:52:44.1953283Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:44.1953644Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:44.1954160Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:44.1954732Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:44.1955129Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:44.1955421Z ##[endgroup] 2025-08-14T23:52:44.5692458Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-14T23:52:44.5692928Z With the provided path, there will be 1 file uploaded 2025-08-14T23:52:44.5693333Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-14T23:52:44.5705021Z Starting upload of test-jsons-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:44.7363911Z Finished upload of test-jsons-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:44.7619577Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-14T23:52:44.7619882Z with: 2025-08-14T23:52:44.7620079Z s3-bucket: gha-artifacts 2025-08-14T23:52:44.7620363Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-14T23:52:44.7620674Z retention-days: 14 2025-08-14T23:52:44.7620894Z if-no-files-found: error 2025-08-14T23:52:44.7621209Z path: test-reports-*.zip 2025-08-14T23:52:44.7621433Z name: artifact 2025-08-14T23:52:44.7621620Z region: us-east-1 2025-08-14T23:52:44.7621818Z env: 2025-08-14T23:52:44.7622018Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:44.7622379Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:44.7622902Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:44.7623364Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:44.7623763Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:44.7624037Z ##[endgroup] 2025-08-14T23:52:45.1348201Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-14T23:52:45.1348652Z With the provided path, there will be 1 file uploaded 2025-08-14T23:52:45.1349067Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-14T23:52:45.1361547Z Starting upload of test-reports-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:45.3561749Z Finished upload of test-reports-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:45.3806408Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-14T23:52:45.3806723Z with: 2025-08-14T23:52:45.3806917Z s3-bucket: gha-artifacts 2025-08-14T23:52:45.3807209Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-14T23:52:45.3807531Z retention-days: 14 2025-08-14T23:52:45.3807752Z if-no-files-found: ignore 2025-08-14T23:52:45.3808058Z path: logs-*.zip 2025-08-14T23:52:45.3808259Z name: artifact 2025-08-14T23:52:45.3808457Z region: us-east-1 2025-08-14T23:52:45.3808647Z env: 2025-08-14T23:52:45.3808829Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:45.3809195Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:45.3809718Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:45.3810212Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:45.3810607Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:45.3810900Z ##[endgroup] 2025-08-14T23:52:45.7564919Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-14T23:52:45.7565352Z With the provided path, there will be 1 file uploaded 2025-08-14T23:52:45.7565768Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-14T23:52:45.7578440Z Starting upload of logs-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:46.0286799Z Finished upload of logs-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:52:46.0535181Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-14T23:52:46.0535491Z with: 2025-08-14T23:52:46.0535676Z s3-bucket: gha-artifacts 2025-08-14T23:52:46.0535964Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-14T23:52:46.0536358Z retention-days: 14 2025-08-14T23:52:46.0536585Z if-no-files-found: ignore 2025-08-14T23:52:46.0536832Z path: debug-*.zip 2025-08-14T23:52:46.0537026Z name: artifact 2025-08-14T23:52:46.0537223Z region: us-east-1 2025-08-14T23:52:46.0537402Z env: 2025-08-14T23:52:46.0537693Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:46.0538069Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:46.0538595Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:46.0539054Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:46.0539452Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:46.0539734Z ##[endgroup] 2025-08-14T23:52:46.4197457Z No files were found with the provided path: debug-*.zip. No artifacts will be uploaded. 2025-08-14T23:52:46.4444384Z Prepare all required actions 2025-08-14T23:52:46.4444815Z Getting action download info 2025-08-14T23:52:46.5602704Z ##[group]Run ./.github/actions/upload-utilization-stats 2025-08-14T23:52:46.5603047Z with: 2025-08-14T23:52:46.5603310Z job_id: 48128743924 2025-08-14T23:52:46.5603706Z job_name: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T23:52:46.5604151Z workflow_name: trunk 2025-08-14T23:52:46.5604368Z workflow_run_id: 16976255045 2025-08-14T23:52:46.5604602Z workflow_attempt: 1 2025-08-14T23:52:46.5604792Z env: 2025-08-14T23:52:46.5604971Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:46.5605333Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:46.5605854Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:46.5606312Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:46.5606735Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:46.5607012Z ##[endgroup] 2025-08-14T23:52:46.5675851Z ##[group]Run echo "workflow_id: 16976255045" 2025-08-14T23:52:46.5676180Z echo "workflow_id: 16976255045" 2025-08-14T23:52:46.5676463Z echo "workflow_attempt: 1" 2025-08-14T23:52:46.5676743Z echo "workflow_Name: trunk" 2025-08-14T23:52:46.5677007Z echo "job_id: 48128743924" 2025-08-14T23:52:46.5677478Z echo "job_name: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral)" 2025-08-14T23:52:46.5677961Z echo "artifact_prefix: " 2025-08-14T23:52:46.5678237Z python3 --version 2025-08-14T23:52:46.5696764Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T23:52:46.5697187Z env: 2025-08-14T23:52:46.5697368Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:46.5697741Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:46.5698264Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:46.5698730Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:46.5699125Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:46.5699403Z ##[endgroup] 2025-08-14T23:52:46.5887176Z workflow_id: 16976255045 2025-08-14T23:52:46.5887457Z workflow_attempt: 1 2025-08-14T23:52:46.5887664Z workflow_Name: trunk 2025-08-14T23:52:46.5887859Z job_id: 48128743924 2025-08-14T23:52:46.5888250Z job_name: win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T23:52:46.5888689Z artifact_prefix: 2025-08-14T23:52:46.6024254Z Python 3.9.19 2025-08-14T23:52:46.6136977Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-14T23:52:46.6137252Z with: 2025-08-14T23:52:46.6137415Z shell: bash 2025-08-14T23:52:46.6137603Z timeout_minutes: 5 2025-08-14T23:52:46.6137811Z max_attempts: 5 2025-08-14T23:52:46.6138009Z retry_wait_seconds: 30 2025-08-14T23:52:46.6138510Z command: set -eu python3 -m pip install python-dateutil==2.8.2 boto3==1.35.42 pandas==2.1.3 dataclasses_json==0.6.7 2025-08-14T23:52:46.6139124Z polling_interval_seconds: 1 2025-08-14T23:52:46.6139366Z warning_on_retry: true 2025-08-14T23:52:46.6139600Z continue_on_error: false 2025-08-14T23:52:46.6139818Z env: 2025-08-14T23:52:46.6139984Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:52:46.6140349Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:52:46.6140854Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:52:46.6141319Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:52:46.6141699Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:52:46.6141981Z ##[endgroup] 2025-08-14T23:52:47.4283901Z Collecting python-dateutil==2.8.2 2025-08-14T23:52:47.6116158Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB) 2025-08-14T23:52:48.2857991Z Collecting boto3==1.35.42 2025-08-14T23:52:48.2914306Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-14T23:52:48.4780953Z Collecting pandas==2.1.3 2025-08-14T23:52:48.4843910Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl.metadata (18 kB) 2025-08-14T23:52:48.4923632Z Requirement already satisfied: dataclasses_json==0.6.7 in c:\jenkins\miniconda3\lib\site-packages (0.6.7) 2025-08-14T23:52:48.4945541Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil==2.8.2) (1.17.0) 2025-08-14T23:52:49.1268047Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-08-14T23:52:49.1313159Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-14T23:52:49.1397409Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.42) (1.0.1) 2025-08-14T23:52:49.1651692Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-08-14T23:52:49.1694769Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-14T23:52:49.5298144Z Collecting numpy<2,>=1.22.4 (from pandas==2.1.3) 2025-08-14T23:52:49.5357595Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl.metadata (61 kB) 2025-08-14T23:52:49.5790309Z ---------------------------------------- 61.0/61.0 kB 1.6 MB/s eta 0:00:00 2025-08-14T23:52:49.6444110Z Collecting pytz>=2020.1 (from pandas==2.1.3) 2025-08-14T23:52:49.6486685Z Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-08-14T23:52:49.6760751Z Collecting tzdata>=2022.1 (from pandas==2.1.3) 2025-08-14T23:52:49.6804190Z Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-08-14T23:52:49.6910446Z Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\jenkins\miniconda3\lib\site-packages (from dataclasses_json==0.6.7) (3.26.1) 2025-08-14T23:52:49.6917277Z Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\jenkins\miniconda3\lib\site-packages (from dataclasses_json==0.6.7) (0.9.0) 2025-08-14T23:52:49.7012667Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.26.19) 2025-08-14T23:52:49.7137541Z Requirement already satisfied: packaging>=17.0 in c:\jenkins\miniconda3\lib\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses_json==0.6.7) (23.2) 2025-08-14T23:52:49.9698839Z Requirement already satisfied: mypy-extensions>=0.3.0 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (1.1.0) 2025-08-14T23:52:49.9704669Z Requirement already satisfied: typing-extensions>=3.7.4 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (4.12.2) 2025-08-14T23:52:50.0020867Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) 2025-08-14T23:52:50.0263718Z --------------------------------------- 247.7/247.7 kB 14.8 MB/s eta 0:00:00 2025-08-14T23:52:50.0305496Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-14T23:52:50.0398336Z ---------------------------------------- 139.2/139.2 kB ? eta 0:00:00 2025-08-14T23:52:50.0477791Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl (10.8 MB) 2025-08-14T23:52:50.1816734Z ---------------------------------------- 10.8/10.8 MB 81.8 MB/s eta 0:00:00 2025-08-14T23:52:50.1864223Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-14T23:52:50.2787303Z ---------------------------------------- 13.3/13.3 MB 131.0 MB/s eta 0:00:00 2025-08-14T23:52:50.2865147Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl (15.8 MB) 2025-08-14T23:52:50.4006741Z ---------------------------------------- 15.8/15.8 MB 131.1 MB/s eta 0:00:00 2025-08-14T23:52:50.4050439Z Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-08-14T23:52:50.4162787Z --------------------------------------- 509.2/509.2 kB 33.3 MB/s eta 0:00:00 2025-08-14T23:52:50.4202790Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-14T23:52:50.4285940Z ---------------------------------------- 83.2/83.2 kB 4.6 MB/s eta 0:00:00 2025-08-14T23:52:50.4325826Z Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-08-14T23:52:50.4437866Z --------------------------------------- 347.8/347.8 kB 21.1 MB/s eta 0:00:00 2025-08-14T23:52:51.6734634Z Installing collected packages: pytz, tzdata, python-dateutil, numpy, pandas, botocore, s3transfer, boto3 2025-08-14T23:52:52.3199585Z Attempting uninstall: python-dateutil 2025-08-14T23:52:52.3212220Z Found existing installation: python-dateutil 2.9.0.post0 2025-08-14T23:52:52.3298208Z Uninstalling python-dateutil-2.9.0.post0: 2025-08-14T23:52:52.3323378Z Successfully uninstalled python-dateutil-2.9.0.post0 2025-08-14T23:52:52.4110259Z Attempting uninstall: numpy 2025-08-14T23:52:52.4120035Z Found existing installation: numpy 1.22.3 2025-08-14T23:52:52.5530866Z Uninstalling numpy-1.22.3: 2025-08-14T23:52:52.5764443Z Successfully uninstalled numpy-1.22.3 2025-08-14T23:52:55.2464586Z WARNING: The script f2py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T23:52:55.2465458Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T23:53:01.4021671Z Attempting uninstall: botocore 2025-08-14T23:53:01.4029493Z Found existing installation: botocore 1.37.10 2025-08-14T23:53:01.5978607Z Uninstalling botocore-1.37.10: 2025-08-14T23:53:01.6772272Z Successfully uninstalled botocore-1.37.10 2025-08-14T23:53:04.3238399Z Attempting uninstall: s3transfer 2025-08-14T23:53:04.3250257Z Found existing installation: s3transfer 0.11.2 2025-08-14T23:53:04.3325222Z Uninstalling s3transfer-0.11.2: 2025-08-14T23:53:04.3348578Z Successfully uninstalled s3transfer-0.11.2 2025-08-14T23:53:04.4076018Z Attempting uninstall: boto3 2025-08-14T23:53:04.4084076Z Found existing installation: boto3 1.37.10 2025-08-14T23:53:04.4251011Z Uninstalling boto3-1.37.10: 2025-08-14T23:53:04.4304457Z Successfully uninstalled boto3-1.37.10 2025-08-14T23:53:04.6032587Z ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. 2025-08-14T23:53:04.6033622Z scipy 1.6.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.26.4 which is incompatible. 2025-08-14T23:53:04.6034445Z Successfully installed boto3-1.35.42 botocore-1.35.99 numpy-1.26.4 pandas-2.1.3 python-dateutil-2.8.2 pytz-2025.2 s3transfer-0.10.4 tzdata-2025.2 2025-08-14T23:53:05.7906528Z Command completed after 1 attempt(s). 2025-08-14T23:53:05.8074859Z ##[group]Run python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-14T23:53:05.8075506Z python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-14T23:53:05.8075969Z  --workflow-run-id "16976255045" \ 2025-08-14T23:53:05.8076281Z  --workflow-name "trunk" \ 2025-08-14T23:53:05.8076582Z  --workflow-run-attempt "1" \ 2025-08-14T23:53:05.8076856Z  --job-id "48128743924" \ 2025-08-14T23:53:05.8077405Z  --job-name "win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral)" \ 2025-08-14T23:53:05.8077889Z  --local-path "" \ 2025-08-14T23:53:05.8078155Z  --artifact-prefix "" 2025-08-14T23:53:05.8096853Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T23:53:05.8097285Z env: 2025-08-14T23:53:05.8097461Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:05.8097832Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:05.8098337Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:05.8098802Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:05.8099194Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:05.8099617Z ##[endgroup] 2025-08-14T23:53:09.0399352Z repo: pytorch/pytorch 2025-08-14T23:53:09.0399712Z Search for test log in s3 bucket: ossci-utilization 2025-08-14T23:53:09.0400266Z Downloading logs-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:53:09.0401189Z extracting usage_log.txt from zip file logs-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip 2025-08-14T23:53:09.0401847Z Failed to parse JSON line: Expecting value: line 1 column 1 (char 0) 2025-08-14T23:53:09.0402255Z Converted Log Model: UtilizationMetadata: 2025-08-14T23:53:09.0403511Z UtilizationMetadata(level='metadata', workflow_id='16976255045', job_id='48128743924', workflow_name='trunk', job_name='win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral)', usage_collect_interval=1.0, data_model_version=1.5, start_at=1755208419, gpu_count=0, cpu_count=16, gpu_type=None, error=None) 2025-08-14T23:53:09.0404847Z [Db Segments] detected pytest cmd: 2, generated segments: 2 2025-08-14T23:53:09.0405201Z [db model] Peek db timeseries 2025-08-14T23:53:09.0405431Z :{ 2025-08-14T23:53:09.0405617Z "created_at": 1755215588, 2025-08-14T23:53:09.0405860Z "type": "utilization", 2025-08-14T23:53:09.0406080Z "tags": [ 2025-08-14T23:53:09.0406259Z "record" 2025-08-14T23:53:09.0406447Z ], 2025-08-14T23:53:09.0406623Z "time_stamp": 1755208419, 2025-08-14T23:53:09.0406864Z "repo": "pytorch/pytorch", 2025-08-14T23:53:09.0407108Z "workflow_id": 16976255045, 2025-08-14T23:53:09.0407346Z "run_attempt": 1, 2025-08-14T23:53:09.0407559Z "job_id": 48128743924, 2025-08-14T23:53:09.0407774Z "workflow_name": "trunk", 2025-08-14T23:53:09.0408196Z "job_name": "win-vs2022-cpu-py3 / test (default, 2, 3, lf.windows.4xlarge.nonephemeral)", 2025-08-14T23:53:09.0408627Z "json_data": "{}" 2025-08-14T23:53:09.0408823Z } 2025-08-14T23:53:09.0409268Z Writing 1 documents to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/16976255045/1/48128743924/metadata 2025-08-14T23:53:09.0410133Z Done! Finish writing document to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/16976255045/1/48128743924/metadata 2025-08-14T23:53:09.0411033Z Writing 1415 documents to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/16976255045/1/48128743924/time_series 2025-08-14T23:53:09.0411931Z Done! Finish writing document to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/16976255045/1/48128743924/time_series 2025-08-14T23:53:09.1606603Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-08-14T23:53:09.1606997Z python3 .github/scripts/parse_ref.py 2025-08-14T23:53:09.1625376Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T23:53:09.1625806Z env: 2025-08-14T23:53:09.1625986Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:09.1626355Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:09.1626862Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:09.1627329Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:09.1627797Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:09.1628100Z ##[endgroup] 2025-08-14T23:53:09.2226230Z Setting output branch=main 2025-08-14T23:53:09.2370809Z ##[group]Run # This step removes PyTorch installed by the test to give a clean slate 2025-08-14T23:53:09.2371423Z # This step removes PyTorch installed by the test to give a clean slate 2025-08-14T23:53:09.2371827Z # to the next job 2025-08-14T23:53:09.2372107Z python3 -mpip uninstall -y torch 2025-08-14T23:53:09.2389809Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T23:53:09.2390227Z env: 2025-08-14T23:53:09.2390406Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:09.2390776Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:09.2391284Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:09.2391761Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:09.2392156Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:09.2392520Z ##[endgroup] 2025-08-14T23:53:09.7447098Z Found existing installation: torch 2.9.0a0+git1fc683c 2025-08-14T23:53:10.7712165Z Uninstalling torch-2.9.0a0+git1fc683c: 2025-08-14T23:53:11.0121213Z Successfully uninstalled torch-2.9.0a0+git1fc683c 2025-08-14T23:53:12.7551181Z Prepare all required actions 2025-08-14T23:53:12.7551579Z Getting action download info 2025-08-14T23:53:12.8991319Z ##[group]Run ./.github/actions/teardown-win 2025-08-14T23:53:12.8991633Z with: 2025-08-14T23:53:12.8991825Z env: 2025-08-14T23:53:12.8992003Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:12.8992386Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:12.8992904Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:12.8993383Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:12.8993877Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:12.8994187Z ##[endgroup] 2025-08-14T23:53:12.9064580Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-14T23:53:12.9064988Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-14T23:53:12.9081206Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:53:12.9081663Z env: 2025-08-14T23:53:12.9081865Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:12.9082239Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:12.9082772Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:12.9083254Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:12.9083646Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:12.9083960Z ##[endgroup] 2025-08-14T23:53:13.2803488Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:53:13.2850674Z Finished 2025-08-14T23:53:13.4183769Z Holding runner until all ssh sessions have logged out 2025-08-14T23:53:13.4428471Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-08-14T23:53:13.4429188Z .github\scripts\kill_active_ssh_sessions.ps1 2025-08-14T23:53:13.4445690Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:53:13.4446262Z env: 2025-08-14T23:53:13.4446611Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:13.4447281Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:13.4447862Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:13.4448343Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:13.4448732Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:13.4449013Z ##[endgroup] 2025-08-14T23:53:13.8096631Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:53:13.8147754Z Finished 2025-08-14T23:53:13.8542204Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-14T23:53:13.8542602Z env: 2025-08-14T23:53:13.8542781Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:13.8543160Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:13.8543693Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:13.8544155Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:13.8544549Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:13.8544828Z ##[endgroup] 2025-08-14T23:53:13.8611432Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T23:53:13.8612198Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T23:53:13.8612858Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-14T23:53:13.8613335Z # handle tool 2025-08-14T23:53:13.8613762Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-14T23:53:13.8614173Z Foreach ($process In $processes) { 2025-08-14T23:53:13.8614468Z  Try { 2025-08-14T23:53:13.8616174Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-14T23:53:13.8616901Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-14T23:53:13.8617289Z  } 2025-08-14T23:53:13.8617480Z  Catch { 2025-08-14T23:53:13.8617789Z  Write-Output "No leftover $process process, continuing" 2025-08-14T23:53:13.8618150Z  Write-Output $_ 2025-08-14T23:53:13.8618392Z  } 2025-08-14T23:53:13.8618567Z } 2025-08-14T23:53:13.8618746Z  2025-08-14T23:53:13.8619309Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-14T23:53:13.8619912Z # for hung processes 2025-08-14T23:53:13.8620214Z Foreach ($process In $processes) { 2025-08-14T23:53:13.8620544Z  Try { 2025-08-14T23:53:13.8620974Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-14T23:53:13.8621452Z  } 2025-08-14T23:53:13.8621672Z  Catch { 2025-08-14T23:53:13.8621880Z  Write-Output $_ 2025-08-14T23:53:13.8622145Z  } 2025-08-14T23:53:13.8622316Z } 2025-08-14T23:53:13.8622527Z  2025-08-14T23:53:13.8622690Z Try { 2025-08-14T23:53:13.8622955Z  # Print all the processes for debugging 2025-08-14T23:53:13.8623457Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-14T23:53:13.8623900Z } 2025-08-14T23:53:13.8624087Z Catch { 2025-08-14T23:53:13.8624470Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-14T23:53:13.8624947Z  Write-Output $_ 2025-08-14T23:53:13.8625165Z } 2025-08-14T23:53:13.8641331Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:53:13.8641791Z env: 2025-08-14T23:53:13.8641984Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:13.8642408Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:13.8642971Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:13.8643456Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:13.8643845Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:13.8644145Z ##[endgroup] 2025-08-14T23:53:14.2272115Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:53:14.2326998Z Finished 2025-08-14T23:53:14.2446641Z No leftover python process, continuing 2025-08-14T23:53:14.2882360Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-14T23:53:14.2883095Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:9 char:5 2025-08-14T23:53:14.2883674Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T23:53:14.2884078Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.2884615Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-14T23:53:14.2885505Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T23:53:14.2886104Z 2025-08-14T23:53:14.2897168Z No leftover ninja process, continuing 2025-08-14T23:53:14.2907187Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-14T23:53:14.2907899Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:9 char:5 2025-08-14T23:53:14.2908618Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T23:53:14.2909029Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.2910202Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-14T23:53:14.2911033Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T23:53:14.2911632Z 2025-08-14T23:53:14.2921531Z No leftover cl process, continuing 2025-08-14T23:53:14.2931090Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-14T23:53:14.2931783Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:9 char:5 2025-08-14T23:53:14.2932339Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T23:53:14.2932754Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.2933214Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-14T23:53:14.2934064Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T23:53:14.2934648Z 2025-08-14T23:53:14.2942455Z No leftover nvcc process, continuing 2025-08-14T23:53:14.2952037Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-14T23:53:14.2952701Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:9 char:5 2025-08-14T23:53:14.2953265Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T23:53:14.2953721Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.2954288Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-14T23:53:14.2955121Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T23:53:14.2955719Z 2025-08-14T23:53:14.2963611Z No leftover cmd process, continuing 2025-08-14T23:53:14.2973238Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-08-14T23:53:14.2973919Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:9 char:5 2025-08-14T23:53:14.2974455Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T23:53:14.2974865Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.2975330Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-08-14T23:53:14.2976157Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T23:53:14.2976782Z 2025-08-14T23:53:14.2984500Z No leftover sccache process, continuing 2025-08-14T23:53:14.2994001Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-14T23:53:14.2994753Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:9 char:5 2025-08-14T23:53:14.2995293Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T23:53:14.2995699Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.2996178Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-14T23:53:14.2997034Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T23:53:14.2997630Z 2025-08-14T23:53:14.3005141Z No leftover git process, continuing 2025-08-14T23:53:14.3014639Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-14T23:53:14.3015285Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:9 char:5 2025-08-14T23:53:14.3015831Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T23:53:14.3016311Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.3016782Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-14T23:53:14.3017775Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T23:53:14.3018365Z 2025-08-14T23:53:14.3427246Z You cannot call a method on a null-valued expression. 2025-08-14T23:53:14.3427900Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:21 char:5 2025-08-14T23:53:14.3428470Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T23:53:14.3428899Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.3429305Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-14T23:53:14.3429713Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-14T23:53:14.3430007Z 2025-08-14T23:53:14.3565135Z You cannot call a method on a null-valued expression. 2025-08-14T23:53:14.3565660Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:21 char:5 2025-08-14T23:53:14.3566240Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T23:53:14.3566682Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.3567095Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-14T23:53:14.3567491Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-14T23:53:14.3567792Z 2025-08-14T23:53:14.3702148Z You cannot call a method on a null-valued expression. 2025-08-14T23:53:14.3702657Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:21 char:5 2025-08-14T23:53:14.3703236Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T23:53:14.3703670Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.3704096Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-14T23:53:14.3704495Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-14T23:53:14.3704800Z 2025-08-14T23:53:14.3841061Z You cannot call a method on a null-valued expression. 2025-08-14T23:53:14.3841564Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:21 char:5 2025-08-14T23:53:14.3842129Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T23:53:14.3842555Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.3842957Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-14T23:53:14.3843349Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-14T23:53:14.3843648Z 2025-08-14T23:53:14.3985338Z You cannot call a method on a null-valued expression. 2025-08-14T23:53:14.3985964Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:21 char:5 2025-08-14T23:53:14.3986607Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T23:53:14.3987033Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.3987458Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-14T23:53:14.3987879Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-14T23:53:14.3988171Z 2025-08-14T23:53:14.4125248Z You cannot call a method on a null-valued expression. 2025-08-14T23:53:14.4125767Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:21 char:5 2025-08-14T23:53:14.4126322Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T23:53:14.4126769Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.4127185Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-14T23:53:14.4127611Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-14T23:53:14.4128024Z 2025-08-14T23:53:14.4262482Z You cannot call a method on a null-valued expression. 2025-08-14T23:53:14.4262996Z At C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1:21 char:5 2025-08-14T23:53:14.4263744Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T23:53:14.4264187Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T23:53:14.4264592Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-14T23:53:14.4265008Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-14T23:53:14.4265368Z 2025-08-14T23:53:14.5381303Z Caption CommandLine ProcessId 2025-08-14T23:53:14.5381812Z 2025-08-14T23:53:14.5382155Z System Idle Process 0 2025-08-14T23:53:14.5382570Z 2025-08-14T23:53:14.5383288Z System 4 2025-08-14T23:53:14.5384832Z 2025-08-14T23:53:14.5385140Z Registry 168 2025-08-14T23:53:14.5385520Z 2025-08-14T23:53:14.5385800Z smss.exe 408 2025-08-14T23:53:14.5386301Z 2025-08-14T23:53:14.5386591Z csrss.exe 524 2025-08-14T23:53:14.5386961Z 2025-08-14T23:53:14.5387747Z csrss.exe 600 2025-08-14T23:53:14.5389064Z 2025-08-14T23:53:14.5389827Z wininit.exe 652 2025-08-14T23:53:14.5390230Z 2025-08-14T23:53:14.5390566Z winlogon.exe winlogon.exe 672 2025-08-14T23:53:14.5391008Z 2025-08-14T23:53:14.5391308Z services.exe 744 2025-08-14T23:53:14.5391691Z 2025-08-14T23:53:14.5392156Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-14T23:53:14.5392635Z 2025-08-14T23:53:14.5393562Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-08-14T23:53:14.5394146Z 2025-08-14T23:53:14.5394601Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-08-14T23:53:14.5395212Z 2025-08-14T23:53:14.5395585Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-14T23:53:14.5396045Z 2025-08-14T23:53:14.5396783Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-08-14T23:53:14.5397293Z 2025-08-14T23:53:14.5397722Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-08-14T23:53:14.5398233Z 2025-08-14T23:53:14.5399466Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-08-14T23:53:14.5400063Z 2025-08-14T23:53:14.5401025Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 460 2025-08-14T23:53:14.5401611Z 2025-08-14T23:53:14.5402196Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-08-14T23:53:14.5402871Z 2025-08-14T23:53:14.5403169Z dwm.exe "dwm.exe" 1136 2025-08-14T23:53:14.5403661Z 2025-08-14T23:53:14.5404236Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1232 2025-08-14T23:53:14.5404922Z 2025-08-14T23:53:14.5405382Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1292 2025-08-14T23:53:14.5405954Z 2025-08-14T23:53:14.5406551Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1356 2025-08-14T23:53:14.5407102Z 2025-08-14T23:53:14.5407654Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1372 2025-08-14T23:53:14.5408313Z 2025-08-14T23:53:14.5408796Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1428 2025-08-14T23:53:14.5409385Z 2025-08-14T23:53:14.5411125Z 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 1452 2025-08-14T23:53:14.5412970Z 2025-08-14T23:53:14.5413436Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1480 2025-08-14T23:53:14.5413999Z 2025-08-14T23:53:14.5414481Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1548 2025-08-14T23:53:14.5415109Z 2025-08-14T23:53:14.5415771Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1628 2025-08-14T23:53:14.5416461Z 2025-08-14T23:53:14.5416935Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1712 2025-08-14T23:53:14.5417532Z 2025-08-14T23:53:14.5418053Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1720 2025-08-14T23:53:14.5418596Z 2025-08-14T23:53:14.5419099Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1728 2025-08-14T23:53:14.5419696Z 2025-08-14T23:53:14.5420149Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1828 2025-08-14T23:53:14.5420691Z 2025-08-14T23:53:14.5421229Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1872 2025-08-14T23:53:14.5421858Z 2025-08-14T23:53:14.5422352Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1880 2025-08-14T23:53:14.5422955Z 2025-08-14T23:53:14.5423453Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1952 2025-08-14T23:53:14.5424093Z 2025-08-14T23:53:14.5424587Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2016 2025-08-14T23:53:14.5425185Z 2025-08-14T23:53:14.5425711Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1100 2025-08-14T23:53:14.5426921Z 2025-08-14T23:53:14.5427557Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1700 2025-08-14T23:53:14.5428290Z 2025-08-14T23:53:14.5428841Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2124 2025-08-14T23:53:14.5429485Z 2025-08-14T23:53:14.5430062Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2192 2025-08-14T23:53:14.5430743Z 2025-08-14T23:53:14.5431215Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2368 2025-08-14T23:53:14.5431785Z 2025-08-14T23:53:14.5432263Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2408 2025-08-14T23:53:14.5432825Z 2025-08-14T23:53:14.5433356Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2452 2025-08-14T23:53:14.5434014Z 2025-08-14T23:53:14.5434414Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2636 2025-08-14T23:53:14.5434900Z 2025-08-14T23:53:14.5435470Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2724 2025-08-14T23:53:14.5436088Z 2025-08-14T23:53:14.5436646Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2740 2025-08-14T23:53:14.5437313Z 2025-08-14T23:53:14.5437876Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2748 2025-08-14T23:53:14.5438536Z 2025-08-14T23:53:14.5438988Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2756 2025-08-14T23:53:14.5439561Z 2025-08-14T23:53:14.5440036Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2764 2025-08-14T23:53:14.5440614Z 2025-08-14T23:53:14.5441102Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2772 2025-08-14T23:53:14.5441740Z 2025-08-14T23:53:14.5442221Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2780 2025-08-14T23:53:14.5442812Z 2025-08-14T23:53:14.5443285Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2796 2025-08-14T23:53:14.5443902Z 2025-08-14T23:53:14.5444587Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3008 2025-08-14T23:53:14.5445293Z 2025-08-14T23:53:14.5445773Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3032 2025-08-14T23:53:14.5446347Z 2025-08-14T23:53:14.5446738Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3064 2025-08-14T23:53:14.5447216Z 2025-08-14T23:53:14.5447857Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 2224 2025-08-14T23:53:14.5448588Z 2025-08-14T23:53:14.5449061Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3080 2025-08-14T23:53:14.5449612Z 2025-08-14T23:53:14.5450210Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3536 2025-08-14T23:53:14.5450931Z 2025-08-14T23:53:14.5451494Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3148 2025-08-14T23:53:14.5452157Z 2025-08-14T23:53:14.5452641Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 1704 2025-08-14T23:53:14.5453255Z 2025-08-14T23:53:14.5454963Z 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 664 2025-08-14T23:53:14.5456709Z 2025-08-14T23:53:14.5457404Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 912 2025-08-14T23:53:14.5458209Z 2025-08-14T23:53:14.5458558Z vds.exe C:\Windows\System32\vds.exe 1636 2025-08-14T23:53:14.5459010Z 2025-08-14T23:53:14.5459520Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3572 2025-08-14T23:53:14.5460137Z 2025-08-14T23:53:14.5460515Z msdtc.exe C:\Windows\System32\msdtc.exe 4416 2025-08-14T23:53:14.5460979Z 2025-08-14T23:53:14.5461535Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4564 2025-08-14T23:53:14.5462217Z 2025-08-14T23:53:14.5462670Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4108 2025-08-14T23:53:14.5463224Z 2025-08-14T23:53:14.5463850Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2868 2025-08-14T23:53:14.5464528Z 2025-08-14T23:53:14.5465013Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2136 2025-08-14T23:53:14.5465577Z 2025-08-14T23:53:14.5466097Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3944 2025-08-14T23:53:14.5466702Z 2025-08-14T23:53:14.5467225Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 2732 2025-08-14T23:53:14.5467847Z 2025-08-14T23:53:14.5468365Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 4928 2025-08-14T23:53:14.5468969Z 2025-08-14T23:53:14.5469662Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3248 2025-08-14T23:53:14.5470493Z 2025-08-14T23:53:14.5472020Z 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 2828 2025-08-14T23:53:14.5473746Z 2025-08-14T23:53:14.5474141Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1444 2025-08-14T23:53:14.5474649Z 2025-08-14T23:53:14.5475312Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1388 2025-08-14T23:53:14.5476033Z 2025-08-14T23:53:14.5476433Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4764 2025-08-14T23:53:14.5476934Z 2025-08-14T23:53:14.5477405Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 3384 2025-08-14T23:53:14.5477969Z 2025-08-14T23:53:14.5478454Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 2040 2025-08-14T23:53:14.5479031Z 2025-08-14T23:53:14.5479525Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 1792 2025-08-14T23:53:14.5480097Z 2025-08-14T23:53:14.5480497Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4544 2025-08-14T23:53:14.5481021Z 2025-08-14T23:53:14.5481557Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2144 2104 2480 2025-08-14T23:53:14.5482162Z 2025-08-14T23:53:14.5482567Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3600 2025-08-14T23:53:14.5483088Z 2025-08-14T23:53:14.5483706Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 2392 2025-08-14T23:53:14.5484358Z 2025-08-14T23:53:14.5485054Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\VCTIP.EXE" 5072 2025-08-14T23:53:14.5485819Z 2025-08-14T23:53:14.5486207Z mspdbsrv.exe mspdbsrv.exe -start -spawn 4816 2025-08-14T23:53:14.5486691Z 2025-08-14T23:53:14.5487102Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3532 2025-08-14T23:53:14.5487616Z 2025-08-14T23:53:14.5488400Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\0fb6ebaa-4023-4e88-987e-5edb426e35f7.ps1'" 3864 2025-08-14T23:53:14.5489279Z 2025-08-14T23:53:14.5489849Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 1588 2025-08-14T23:53:14.5490600Z 2025-08-14T23:53:14.5490612Z 2025-08-14T23:53:14.5490620Z 2025-08-14T23:53:14.5745351Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-14T23:53:14.5745638Z with: 2025-08-14T23:53:14.5745805Z shell: bash 2025-08-14T23:53:14.5745998Z timeout_minutes: 5 2025-08-14T23:53:14.5746195Z max_attempts: 3 2025-08-14T23:53:14.5746398Z retry_wait_seconds: 90 2025-08-14T23:53:14.5747383Z command: set +e set -x if [ -n "${EXTRA_DELETE_DIR}" ]; then # It's ok to fail to clean up the extra directory on Windows as it only contains # the build artifacts and doesn't take up much space, i.e. /c/5053411580/build-results rm -rf "${EXTRA_DELETE_DIR}" || true fi rm -rf ./* 2025-08-14T23:53:14.5748397Z polling_interval_seconds: 1 2025-08-14T23:53:14.5748643Z warning_on_retry: true 2025-08-14T23:53:14.5748927Z continue_on_error: false 2025-08-14T23:53:14.5749160Z env: 2025-08-14T23:53:14.5749338Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:14.5749704Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:14.5750311Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:14.5750778Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:14.5751169Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:14.5751452Z EXTRA_DELETE_DIR: 2025-08-14T23:53:14.5751662Z ##[endgroup] 2025-08-14T23:53:15.4379825Z + '[' -n '' ']' 2025-08-14T23:53:15.4407502Z + rm -rf ./AGENTS.md ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./codex_setup.sh ./defs.bzl ./docker.Makefile ./docs ./functorch ./logs-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements-build.txt ./requirements.txt ./scripts ./setup.py ./test ./test-jsons-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip ./test-reports-test-default-2-3-lf.windows.4xlarge.nonephemeral_48128743924.zip ./third_party ./tools ./torch ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./usage_log.txt ./version.txt 2025-08-14T23:53:40.5219036Z Command completed after 1 attempt(s). 2025-08-14T23:53:40.5364696Z ##[group]Run handle C:\actions-runner\_work\ 2025-08-14T23:53:40.5365051Z handle C:\actions-runner\_work\ 2025-08-14T23:53:40.5380331Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:53:40.5380814Z env: 2025-08-14T23:53:40.5381021Z GIT_DEFAULT_BRANCH: main 2025-08-14T23:53:40.5381408Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T23:53:40.5381925Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T23:53:40.5382442Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T23:53:40.5382831Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T23:53:40.5383133Z ##[endgroup] 2025-08-14T23:53:40.9039231Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:53:40.9095457Z Finished 2025-08-14T23:53:40.9588884Z 2025-08-14T23:53:40.9589327Z Nthandle v5.0 - Handle viewer 2025-08-14T23:53:40.9589674Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-14T23:53:40.9590010Z Sysinternals - www.sysinternals.com 2025-08-14T23:53:40.9590203Z 2025-08-14T23:53:40.9895305Z powershell.exe pid: 5664 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:53:40.9896084Z handle.exe pid: 3672 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:53:40.9896660Z handle.exe pid: 1016 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:53:40.9897240Z handle64.exe pid: 4296 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:53:41.0275525Z Post job cleanup. 2025-08-14T23:53:41.0672416Z Post job cleanup. 2025-08-14T23:53:41.3302384Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-14T23:53:41.3507436Z git version 2.49.0.windows.1 2025-08-14T23:53:41.3565707Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\cf98c2e7-81cb-459f-8acc-83aefed0d210\.gitconfig' 2025-08-14T23:53:41.3585001Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\cf98c2e7-81cb-459f-8acc-83aefed0d210' before making global git config changes 2025-08-14T23:53:41.3585851Z Adding repository directory to the temporary git global config as a safe directory 2025-08-14T23:53:41.3598017Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-14T23:53:41.3847385Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-14T23:53:41.4102256Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-08-14T23:53:41.8108318Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-14T23:53:41.8310749Z http.https://github.com/.extraheader 2025-08-14T23:53:41.8354518Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-08-14T23:53:41.8603824Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-08-14T23:53:42.2593787Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-14T23:53:42.2627691Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-08-14T23:53:42.2642950Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T23:53:42.2643425Z ##[endgroup] 2025-08-14T23:53:42.6509161Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T23:53:42.6576753Z Finished 2025-08-14T23:53:44.1431707Z Cleaning up orphan processes 2025-08-14T23:53:44.1824205Z Terminate orphan process: pid (5072) (vctip) 2025-08-14T23:53:44.2075371Z Terminate orphan process: pid (4816) (mspdbsrv)